@charset "UTF-8";
/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

BaseLayout CSS

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

Variables CSS

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
/* Variables
-------------------------------------------- */
/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

SVG CSS

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
/**
 * SVG画像をアイコンに使いたい的ないろいろ
 *
 *  [Html] SVG塗りつぶしの色をBackground-Imageとして扱うときに変更する
 * https://code.i-harness.com/ja/q/cbfa3c
 */
/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

Common CSS

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
/* Common
-------------------------------------------- */
.na-maxw {
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  margin-left: auto;
  margin-right: auto;
  position: relative; }
  @media (max-width: 768px) {
    .na-maxw {
      padding-left: 20px;
      padding-right: 20px; } }
  @media (max-width: 640px) {
    .na-maxw {
      padding-left: 10px;
      padding-right: 10px; } }
  .na-maxw.no-pad {
    padding-left: 0;
    padding-right: 0; }
    .na-maxw.no-pad.wide {
      max-width: 1300px; }
    .na-maxw.no-pad.large {
      max-width: 1200px; }
    .na-maxw.no-pad.medium {
      max-width: 1000px; }
    .na-maxw.no-pad.narrow {
      max-width: 900px; }
    .na-maxw.no-pad.thin {
      max-width: 700px; }
      @media (max-width: 768px) {
        .na-maxw.no-pad.thin {
          max-width: none; } }
  .na-maxw.full {
    max-width: 1620px; }
  .na-maxw.wide {
    max-width: 1380px; }
  .na-maxw.large {
    max-width: 1320px; }
  .na-maxw.medium {
    max-width: 1120px; }
  .na-maxw.narrow {
    max-width: 1020px; }
  .na-maxw.thin {
    max-width: 820px; }
    @media (max-width: 768px) {
      .na-maxw.thin {
        max-width: none; } }

.na-icon_arrow.black {
  fill: #000; }
.na-icon_arrow.white {
  fill: #FFF; }

.tb_disp, .sp_disp {
  display: none !important; }

@media (max-width: 1024px) {
  .pc_disp {
    display: block !important; }

  .tb_disp {
    display: none !important; } }
@media (max-width: 768px) {
  .pc_disp.tb {
    display: none !important; }

  .tb_disp {
    display: block !important; } }
@media (max-width: 640px) {
  .pc_disp {
    display: none !important; }

  .sp_disp {
    display: block !important; } }
.na-logo-img {
  display: block;
  padding: 21.739% 0 0;
  background: url("../img/common/logo.svg") no-repeat center center/contain; }

.row {
  display: flex;
  flex-wrap: wrap; }

.na-common-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center; }
  .na-common-btn .btn_item {
    padding: 0 30px;
    margin: 0 10px;
    font-weight: bold;
    line-height: 36px;
    background: #FFF;
    border: #CCC 1px solid;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1); }
    .na-common-btn .btn_item span {
      color: #666;
      transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1); }
    .na-common-btn .btn_item:hover {
      background: #000;
      border-color: #000; }
      .na-common-btn .btn_item:hover span {
        color: #FFF; }

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

Animation CSS

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

Variables CSS

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
/* Variables
-------------------------------------------- */
/* Loading
-------------------------------------------- */
.loading {
  position: fixed;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  background: #FFF url(../img/common/loading.gif) no-repeat center center/50px auto; }
  .preload .loading {
    opacity: 1;
    pointer-events: auto; }
  .sending .loading {
    opacity: 1;
    pointer-events: auto;
    background-color: rgba(255, 255, 255, 0.5); }

/* アニメーション用
-------------------------------------------- */
/* ------------------------------------
【オプション】
data-na-offset="画面下からのpx数で指定"
data-na-delay="ミリ秒で指定"
------------------------------------ */
.na-slide-cover {
  position: relative; }

.na-slide-cover::before,
.na-slide-cover::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 50%;
  z-index: 3;
  background: #FFF;
  transition: width 0.5s cubic-bezier(0.77, 0, 0.175, 1); }

.na-slide-cover::after {
  top: 49.5%;
  height: 50.5%;
  transition: width 0.5s 0.2s cubic-bezier(0.77, 0, 0.175, 1); }

.na-slide-cover.up::before,
.na-slide-cover.up::after,
.na-slide-cover.down::before,
.na-slide-cover.down::after {
  top: 0;
  left: 0;
  right: auto;
  width: 50%;
  height: 100%;
  transition: height 0.5s cubic-bezier(0.77, 0, 0.175, 1); }

.na-slide-cover.up::after,
.na-slide-cover.down::after {
  top: 0;
  left: 0;
  right: auto;
  width: 50%;
  height: 100%;
  transition: height 0.5s 0.2s cubic-bezier(0.77, 0, 0.175, 1); }

.na-slide-cover.up::after,
.na-slide-cover.down::after {
  left: 50%; }

.na-slide-cover.down::before,
.na-slide-cover.down::after {
  top: auto;
  bottom: 0; }

.na-slide-cover.gray::before,
.na-slide-cover.gray::after {
  background: #F5F5F5; }

.na-slide-cover.dark::before,
.na-slide-cover.dark::after {
  background: #333; }

.na-slide-cover.single::before {
  height: 100%; }

.na-slide-cover.single::after {
  display: none; }

.na-slide-cover.na-anim-init::before,
.na-slide-cover.na-anim-init::after {
  width: 0; }

.na-slide-cover.up.na-anim-init::before,
.na-slide-cover.up.na-anim-init::after,
.na-slide-cover.down.na-anim-init::before,
.na-slide-cover.down.na-anim-init::after {
  width: 50%;
  height: 0; }

.na-fade-in {
  opacity: 0;
  transition: opacity .8s; }

.na-fade-in.na-anim-init {
  opacity: 1; }

.na-lift-up {
  opacity: 0;
  transform: translateY(50px);
  transition: transform .6s ease-in-out, opacity .8s ease-in-out; }

.na-lift-up.na-anim-init {
  opacity: 1;
  transform: translateY(0); }

.na-lift-down {
  opacity: 0;
  transform: translateY(-50px);
  transition: transform .6s ease-in-out, opacity .8s ease-in-out; }

.na-lift-down.na-anim-init {
  opacity: 1;
  transform: translateY(0); }

.na-scale-in {
  opacity: 0;
  transform: scale(0);
  transition: transform 0.6s cubic-bezier(0.5, 0, 0.3, 1.2), opacity 0.6s ease-in-out; }

.na-scale-in.na-anim-init {
  opacity: 1;
  transform: scale(1); }

.na-txt-cover {
  display: inline-block;
  position: relative;
  color: transparent;
  transition: color 0s .3s; }

.na-txt-cover.na-anim-init {
  color: #BBB; }

.na-txt-cover.white.na-anim-init {
  color: #FFF; }

.na-txt-cover.black.na-anim-init {
  color: #000; }

.na-txt-cover::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #BBB;
  transform: scaleX(0);
  transform-origin: left top; }

.na-txt-cover.white::before {
  background: #FFF; }

.na-txt-cover.black::before {
  background: #000; }

.na-txt-cover.na-anim-init::before {
  animation: txt_cover cubic-bezier(0.77, 0, 0.175, 1) 0.6s forwards; }

@keyframes txt_cover {
  0% {
    transform: scaleX(0);
    transform-origin: left top; }
  49% {
    transform: scaleX(1);
    transform-origin: left top; }
  51% {
    transform: scaleX(1);
    transform-origin: right top; }
  100% {
    transform: scaleX(0);
    transform-origin: right top; } }
/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

Reset CSS

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
:root {
  font-size: 10px; }

html {
  width: 100%;
  color: #000;
  background: #FFF; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, "Helvetica Neue", HelveticaNeue, "Segoe UI", sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: justify;
  letter-spacing: .05em;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: none;
  width: 100%;
  background: #FFF; }

.preload {
  height: 100%; }
  .preload body {
    height: 100%;
    overflow: hidden; }

.serif {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 300;
  letter-spacing: .05em;
  line-height: 1.1; }
  .serif.roman {
    font-weight: 400; }
  .serif.bold {
    font-weight: 700; }

.mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; }

body > img,
body > noscript > img,
body > iframe {
  display: none; }

body, div, dl, dt, dd, ul, ol, li, h1, h2,
h3, h4, h5, h6, pre, code, form, fieldset,
legend, input, textarea, p, blockquote, th, td,
figure, address, label {
  margin: 0;
  padding: 0;
  word-break: break-word;
  -webkit-overflow-scrolling: touch; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

table br {
  display: none !important; }

table th br,
table td br {
  display: inline !important; }

fieldset,
img {
  border: 0; }

*,
::before,
::after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch; }

/*
	TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
address, caption, cite, code, dfn, em, th, var, i {
  font-style: normal;
  font-weight: normal; }

ul {
  list-style: none; }

caption,
th {
  text-align: left; }

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal; }

q:before,
q:after {
  content: ''; }

abbr,
acronym {
  border: 0;
  font-variant: normal; }

/* to preserve line-height and selector appearance */
sup {
  vertical-align: text-top; }

sub {
  vertical-align: text-bottom; }

input[type=tel],
input[type=text],
input[type=file],
input[type=email],
input[type=reset],
input[type=image],
input[type=button],
input[type=submit],
input[type=number],
input[type=password],
textarea, select {
  font-family: -apple-system, BlinkMacSystemFont, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", HelveticaNeue, "Segoe UI", sans-serif;
  font-size: 1.3rem;
  font-weight: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none; }

input {
  font-family: -apple-system, BlinkMacSystemFont, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", HelveticaNeue, "Segoe UI", sans-serif;
  font-size: 1.3rem;
  font-weight: inherit;
  border: none;
  border-radius: 0;
  outline: none; }

select {
  outline: none;
  color: #000;
  text-overflow: '';
  font-size: inherit;
  text-indent: .01rem;
  vertical-align: middle;
  background: #FFF;
  padding: 10px;
  padding-right: 31px !important;
  border: #DDD 1px solid;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211%22%20height%3D%226%22%3E%3Cpath%20fill%3D%22%23000%22%20d%3D%22M0%2C0V1H1V0ZM1%2C1V2H2V1ZM2%2C2V3H3V2ZM3%2C3V4H4V3ZM4%2C4V5H5V4Zm6-4V1h1V0ZM9%2C2h1V1H9ZM8%2C3H9V2H8ZM7%2C4H8V3H7ZM6%2C5H7V4H6ZM5%2C6H6V5H5Z%22%2F%3E%3C%2Fsvg%3E") no-repeat center right 10px; }
  select option {
    color: #000; }
  select::-ms-expand {
    display: none; }
  select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

::-ms-expand {
  display: none; }

textarea {
  resize: vertical; }

/*because legend doesn't inherit in IE */
legend {
  color: #333; }

img, svg {
  display: block;
  vertical-align: bottom;
  width: 100%;
  height: auto; }

/* clearfix */
.clearfix {
  min-height: 1px; }

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  font-size: 0;
  visibility: hidden; }

a, .btn, .fade_btn {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
  -webkit-text-decoration-skip: objects;
  /* Remove gaps in links underline in iOS 8+ and Safari 8+ */
  text-decoration: none;
  color: #000;
  opacity: 1;
  cursor: pointer;
  transition: all .3s; }

a:active,
a:hover,
.btn:active,
.btn:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */ }

.fade_btn:hover {
  opacity: .7 !important; }

a, area, button, [role="button"], input:not([type="range"]), label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation; }

/* JqvaScriptで動的に付与 */
.current {
  cursor: default;
  text-decoration: none !important; }

#fb-root {
  display: none; }

/*
------------------------------------------------------------------------------------------------------------------ Tablet */
@media screen and (max-width: 768px) {
  .fade_btn:hover {
    opacity: 1; } }
/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

commoin-sub-head CSS

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
.common-sub-head__transparent-bothends {
  position: relative;
  max-width: 600px;
  margin: 0 auto 30px;
  padding: 0 0 5px;
  color: #000;
  font-size: 2rem;
  text-align: center;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: .3rem; }
  @media (max-width: 768px) {
    .common-sub-head__transparent-bothends {
      font-size: 2.6vw; } }
  @media (max-width: 640px) {
    .common-sub-head__transparent-bothends {
      font-size: 4vw; } }
  .common-sub-head__transparent-bothends::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    margin: 0 auto;
    text-align: center;
    background-image: -webkit-linear-gradient(left, transparent, #000 25%, #000 75%, transparent);
    background-image: linear-gradient(to right, transparent, #000 25%, #000 75%, transparent);
    background-position: center;
    background-repeat: no-repeat; }
.common-sub-head__en-font {
  font-size: 4.4rem;
  font-family: 'Baskervville', serif; }
  @media (max-width: 768px) {
    .common-sub-head__en-font {
      font-size: 5.7vw; } }
  @media (max-width: 640px) {
    .common-sub-head__en-font {
      font-size: 9vw; } }
.common-sub-head__txt {
  text-align: center; }
  @media (max-width: 768px) {
    .common-sub-head__txt {
      text-align: left;
      font-size: 　1 0.6rem; } }

.seika-sub-head-mt {
  margin-top: 100px; }
  @media (max-width: 1200px) {
    .seika-sub-head-mt {
      margin-top: 8vw; } }

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

common-box-list CSS

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
.common-box-list__box {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1380px; }
.common-box-list__item {
  width: 24.242%;
  background: #ECE9E2;
  position: relative; }
  @media (max-width: 640px) {
    .common-box-list__item {
      width: 49%; }
      .common-box-list__item:nth-child(-n+2) {
        margin-bottom: 2%; } }
  .common-box-list__item--test {
    width: 24.242%;
    padding-bottom: 20px;
    background: #ECE9E2;
    position: relative; }
    @media (max-width: 1200px) {
      .common-box-list__item--test {
        padding-bottom: 0; } }
    @media screen and (max-width: 900px) {
      .common-box-list__item--test {
        padding-bottom: 15vw; } }
    @media (max-width: 640px) {
      .common-box-list__item--test {
        width: 49%;
        padding-bottom: 0; }
        .common-box-list__item--test:nth-child(-n+2) {
          margin-bottom: 2%; } }
.common-box-list__links {
  display: block;
  padding-bottom: 160px; }
  @media (max-width: 1200px) {
    .common-box-list__links {
      padding-bottom: 13.5vw; } }
  @media screen and (max-width: 900px) {
    .common-box-list__links {
      padding-bottom: 15vw; } }
  @media (max-width: 640px) {
    .common-box-list__links {
      padding-bottom: 25vw; } }
.common-box-list__txt-en {
  display: block;
  position: absolute;
  bottom: 65px;
  left: 10px;
  font-family: 'Baskervville', serif;
  font-weight: 100;
  font-style: normal;
  color: #000;
  font-size: 4rem;
  line-height: 1; }
  @media (max-width: 1200px) {
    .common-box-list__txt-en {
      font-size: 3.3vw;
      bottom: 6vw; } }
  @media screen and (max-width: 900px) {
    .common-box-list__txt-en {
      bottom: 6vw; } }
  @media (max-width: 640px) {
    .common-box-list__txt-en {
      font-size: 6vw;
      bottom: 11vw; } }
  .common-box-list__txt-en--test {
    width: 100%;
    display: flex;
    /*position: absolute;
    bottom: 65px;
    left: 50%;*/
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    padding: 20px 0 40px;
    font-family: 'Baskervville', serif;
    font-weight: 100;
    font-style: normal;
    color: #000;
    font-size: 3rem;
    line-height: 1.3;
    text-align: center; }
    @media (max-width: 1200px) {
      .common-box-list__txt-en--test {
        font-size: 3.3vw;
        bottom: 6vw; } }
    @media screen and (max-width: 900px) {
      .common-box-list__txt-en--test {
        bottom: 6vw; } }
    @media (max-width: 640px) {
      .common-box-list__txt-en--test {
        font-size: 6vw;
        bottom: 11vw; } }
  .common-box-list__txt-en--ex {
    width: 100%;
    display: block;
    position: absolute;
    bottom: 65px;
    left: 10px;
    font-family: 'Baskervville', serif;
    font-weight: 100;
    font-style: normal;
    color: #000;
    font-size: 4rem;
    line-height: 1; }
    @media (max-width: 1200px) {
      .common-box-list__txt-en--ex {
        font-size: 3.3vw;
        bottom: 6vw; } }
    @media screen and (max-width: 900px) {
      .common-box-list__txt-en--ex {
        bottom: 5.1vw; } }
    @media (max-width: 640px) {
      .common-box-list__txt-en--ex {
        font-size: 5.5vw;
        bottom: 7vw; } }
    .common-box-list__txt-en--ex--test {
      display: flex;
      justify-content: center;
      align-content: center;
      flex-wrap: wrap;
      padding: 20px 0;
      font-family: 'Baskervville', serif;
      font-weight: 100;
      font-style: normal;
      color: #000;
      font-size: 3rem;
      line-height: 1;
      text-align: center; }
      @media (max-width: 1200px) {
        .common-box-list__txt-en--ex--test {
          font-size: 3.3vw;
          bottom: 6vw; } }
      @media screen and (max-width: 900px) {
        .common-box-list__txt-en--ex--test {
          bottom: 5.1vw; } }
      @media (max-width: 640px) {
        .common-box-list__txt-en--ex--test {
          font-size: 5.5vw;
          bottom: 7vw; } }
.common-box-list__txt-jp {
  display: block;
  font-size: 1.4rem;
  padding: 20px 0 0;
  font-family: -apple-system, BlinkMacSystemFont, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, "Helvetica Neue", HelveticaNeue, "Segoe UI", sans-serif; }
  @media (max-width: 1200px) {
    .common-box-list__txt-jp {
      font-size: 1.1vw; } }
  @media screen and (max-width: 900px) {
    .common-box-list__txt-jp {
      font-size: 2vw;
      padding: 10px 0 0; } }
  @media (max-width: 640px) {
    .common-box-list__txt-jp {
      font-size: 2.5vw; } }
  @media screen and (max-width: 900px) {
    .common-box-list__txt-jp:last-child {
      line-height: 1.5; } }
  .common-box-list__txt-jp--test {
    display: block;
    width: 100%;
    font-size: 1.4rem;
    padding: 20px 0 0;
    font-family: -apple-system, BlinkMacSystemFont, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, "Helvetica Neue", HelveticaNeue, "Segoe UI", sans-serif;
    text-align: center; }
    @media (max-width: 1200px) {
      .common-box-list__txt-jp--test {
        font-size: 1.1vw; } }
    @media screen and (max-width: 900px) {
      .common-box-list__txt-jp--test {
        font-size: 2vw;
        padding: 10px 0 0; } }
    @media (max-width: 640px) {
      .common-box-list__txt-jp--test {
        font-size: 2.5vw; } }
    @media screen and (max-width: 900px) {
      .common-box-list__txt-jp--test:last-child {
        line-height: 1.5; } }
.common-box-list__brsp {
  display: none; }
  @media screen and (max-width: 900px) {
    .common-box-list__brsp {
      display: block; } }
.common-box-list__arrow {
  position: absolute;
  bottom: 10px;
  right: 20px;
  width: 40px;
  height: 13px;
  margin: -6px 0 0;
  background: url(../img/common/icon_arrow_right.svg) no-repeat center right 0px/50px auto; }
  @media screen and (max-width: 414px) {
    .common-box-list__arrow {
      bottom: 5px;
      right: 10px; } }

.seika-box-list-mt {
  margin-top: 100px; }
  @media (max-width: 1200px) {
    .seika-box-list-mt {
      margin-top: 8vw; } }

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

common-box-list CSS

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
.seika-show-room__inner {
  max-width: 1380px;
  margin: 100px auto 0; }
  @media (max-width: 1200px) {
    .seika-show-room__inner {
      margin-top: 8vw; } }
.seika-show-room__links {
  position: relative;
  display: block;
  padding-bottom: 4.1%; }
  @media (max-width: 640px) {
    .seika-show-room__links {
      position: static; } }
.seika-show-room__img {
  width: 66.666%;
  position: relative;
  margin: 0 0 0 auto;
  z-index: 2;
  /*background: url("../img/seika/room_img.jpg") no-repeat center center / cover;*/ }
  @media (max-width: 640px) {
    .seika-show-room__img {
      width: 100%; } }
.seika-show-room__box-bg {
  width: 66.666%;
  height: auto;
  padding-top: 43%;
  background: #ECE9E2;
  position: absolute;
  top: 10%;
  z-index: 1; }
  @media (max-width: 640px) {
    .seika-show-room__box-bg {
      position: static;
      display: none; } }
.seika-show-room__box {
  position: absolute;
  top: 50%;
  left: 3%;
  z-index: 3;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }
  @media (max-width: 640px) {
    .seika-show-room__box {
      width: 100%;
      padding: 20px;
      background: #ECE9E2;
      position: relative;
      left: 0;
      top: 0;
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none; } }
.seika-show-room__ttl {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #000;
  font-size: 3.4rem;
  position: relative;
  z-index: 2;
  font-style: italic;
  letter-spacing: 0.3rem; }
  @media (max-width: 1200px) {
    .seika-show-room__ttl {
      font-size: 2.8vw; } }
  @media (max-width: 640px) {
    .seika-show-room__ttl {
      font-size: 6vw; } }
.seika-show-room__sub-ttl {
  width: 102%;
  position: absolute;
  top: -13px;
  left: 9vw;
  font-family: 'Pinyon Script', cursive;
  color: #FFF;
  font-size: 7.5rem;
  z-index: 1; }
  @media (max-width: 1200px) {
    .seika-show-room__sub-ttl {
      font-size: 6.3vw;
      left: 10vw; } }
  @media (max-width: 640px) {
    .seika-show-room__sub-ttl {
      width: auto;
      font-size: 12vw;
      top: 5vw;
      left: 30vw; } }
.seika-show-room__sub-txt {
  width: 40%;
  margin-top: 30px;
  font-size: 1.2rem; }
  @media (max-width: 1200px) {
    .seika-show-room__sub-txt {
      width: 25vw; } }
  @media (max-width: 640px) {
    .seika-show-room__sub-txt {
      width: 100%; } }
.seika-show-room__more-btn {
  width: 240px;
  margin-top: 29px;
  border: #000 solid 1px;
  padding: 10px 0 10px 10px;
  position: relative; }
  @media screen and (max-width: 900px) {
    .seika-show-room__more-btn {
      width: 25vw; } }
  @media (max-width: 640px) {
    .seika-show-room__more-btn {
      width: 100%; } }
  .seika-show-room__more-btn::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 45px;
    height: 8px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    transform: skew(45deg); }

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

common-box-list CSS

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
.seika-goolgemap__inner {
  max-width: 1380px;
  margin: 100px auto 50px;
  height: 0;
  overflow: hidden;
  padding-bottom: 30.434%;
  position: relative; }
  @media (max-width: 1200px) {
    .seika-goolgemap__inner {
      margin-top: 8vw; } }
  @media (max-width: 640px) {
    .seika-goolgemap__inner {
      padding-bottom: 100%; } }
.seika-goolgemap__iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%; }

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

slider CSS

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
.seika-slider__inner {
  margin: 0 -20px;
  /*@media (max-width: 940px) {
      margin-top: 60px;
  }*/ }
.seika-slider__ttl {
  position: absolute;
  top: 59%;
  left: 0;
  padding: 0 0 0 50px;
  z-index: 2;
  line-height: 1.2;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 4rem;
  color: #FFF;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  /*@include pc-wide {
      margin-top: 8vw;
  }
  @include sp {
      padding-bottom: 100%;
  }*/ }
  .seika-slider__ttl::after {
    content: "";
    width: calc(100% - 50px);
    height: 100%;
    position: absolute;
    left: 0;
    top: 30px;
    z-index: 1;
    background: rgba(255, 255, 255, 0.5); }
  .seika-slider__ttl--def {
    width: 46vw;
    position: absolute;
    top: 55%;
    left: 0;
    padding: 0 3vw;
    z-index: 2;
    line-height: 1.2;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 2.5rem;
    /*font-size: 4rem;*/
    color: #FFF;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
    @media (max-width: 1200px) {
      .seika-slider__ttl--def {
        padding: 0 2vw; } }
    @media (max-width: 1024px) {
      .seika-slider__ttl--def {
        width: 50vw; } }
    @media (max-width: 640px) {
      .seika-slider__ttl--def {
        top: 70%;
        width: 70vw; } }
    @media (max-width: 414px) {
      .seika-slider__ttl--def {
        width: 90vw;
        left: 10px;
        top: 60%; } }
    .seika-slider__ttl--def::after {
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 1.3vw;
      /*top: 30px;*/
      z-index: 1;
      background: rgba(255, 255, 255, 0.5); }
      @media (max-width: 640px) {
        .seika-slider__ttl--def::after {
          top: 2.3vw; } }
      @media (max-width: 414px) {
        .seika-slider__ttl--def::after {
          top: 3.5vw; } }
.seika-slider__ttl-txt {
  position: relative;
  z-index: 2;
  font-size: 2vw; }
  @media (max-width: 1024px) {
    .seika-slider__ttl-txt {
      font-size: 2.4vw; } }
  @media (max-width: 640px) {
    .seika-slider__ttl-txt {
      font-size: 3.3vw; } }
  @media (max-width: 414px) {
    .seika-slider__ttl-txt {
      font-size: 5vw;
      line-height: 1.6; } }
.seika-slider__txt {
  /*position: absolute;
  top: 65%;
  left: 50px;
  z-index: 1;*/
  margin-top: 10px;
  font-size: 1.2vw;
  /*font-size: 1.7rem;*/
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  padding: 10px 0;
  /*padding: 10px 15px;*/
  display: table;
  color: #000;
  text-shadow: none;
  line-height: 1.6; }
  @media (max-width: 1024px) {
    .seika-slider__txt {
      font-size: 1.4vw; } }
  @media (max-width: 640px) {
    .seika-slider__txt {
      font-size: 2vw; } }
  @media (max-width: 414px) {
    .seika-slider__txt {
      font-size: 2.5vw;
      width: 80%; } }

/* Wrapper
-------------------------------------------- */
body .check {
  display: none; }

body .sub_nav_cover {
  display: none; }

#wrapper {
  width: 100%;
  position: relative;
  background: #FFF; }

img {
  width: 100%;
  height: auto; }

.hide header {
  top: -120px; }
  @media (max-width: 768px) {
    .hide header {
      top: -60px; } }

/* Header
----------------------------------------------- */
header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  z-index: 100;
  transition: top 0.5s cubic-bezier(0.77, 0, 0.175, 1), transform 1s 0.5s cubic-bezier(0.77, 0, 0.175, 1); }
  @media (max-width: 768px) {
    header {
      height: 60px; } }

header .logo {
  width: 220px;
  margin: 0 auto; }

header .nav {
  position: absolute;
  top: 17px;
  right: 0;
  padding: 0 14px 0 0; }

header .nav li {
  margin: 0;
  border-top: #cecac0 1px solid; }

header .nav li:first-child {
  background: #cecac0;
  padding: 15px 20px;
  color: #FFF; }

header .nav li a {
  display: block;
  padding: 15px 20px;
  color: #000; }

header .nav li:last-child {
  margin: 0; }

header .nav li:last-child a {
  box-sizing: border-box;
  margin: 0;
  padding: 15px 20px;
  border: none;
  background: #FFF; }

#header .nav li.nav_top {
  background: #FFF;
  padding: 0;
  color: #000; }

header .nav_trigger {
  display: block; }

header .nav {
  width: 250px;
  height: 100%;
  position: fixed;
  right: -250px;
  z-index: 250;
  background: #FFF;
  overflow: auto;
  float: none;
  margin: 0;
  padding: 0;
  top: 0; }

/* Header */
header .g_nav_trigger {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 45px;
  height: 40px;
  padding: 10px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }

header .g_nav_trigger span {
  display: block;
  width: 25px;
  height: 2px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #000; }

header .g_nav_trigger span:before,
header .g_nav_trigger span:after {
  content: "";
  background: #000;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 7px;
  left: 0; }

header .g_nav_trigger span:after {
  top: 14px; }

/* SP Header */
header .nav_close_trigger {
  display: block;
  width: 33px;
  height: 33px;
  padding: 10px;
  margin: 10px 0 10px 20px;
  background: #cecac0;
  position: relative; }

header .nav_close_trigger span {
  display: block;
  width: 15px;
  height: 3px;
  position: absolute;
  top: 14px;
  left: 9px;
  background: #FFF;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

header .nav_close_trigger span:before {
  content: "";
  background: #FFF;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg); }

/* contWrap Fade */
body .check:checked + .sub_nav_cover {
  display: block;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6); }

/* footer
----------------------------------------------- */
.footer__inner {
  padding: 0 0 30px;
  text-align: center; }
.footer__logo {
  width: 180px;
  height: auto;
  margin: 0 auto 10px; }
.footer__tel-link {
  display: block;
  font-size: 5.2rem;
  font-family: bickham-script-pro-3, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 0.5;
  margin-bottom: 5px; }
.footer__time {
  display: block;
  font-size: 1rem; }
.footer__sub-navi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
  font-size: 1.2rem; }
  @media screen and (max-width: 414px) {
    .footer__sub-navi {
      margin-top: 8vw; } }
.footer__sub-navi-item {
  padding: 0 15px;
  margin-bottom: 5px; }
.footer__copyright {
  margin-top: 5px;
  font-size: 1.2rem; }
  @media (max-width: 640px) {
    .footer__copyright {
      font-size: .7rem; } }

main {
  padding-left: 20px;
  padding-right: 20px; }
  @media screen and (max-width: 414px) {
    main {
      padding-left: 10px;
      padding-right: 10px; } }

br.sp {
  display: block; }

/*
------------------------------------------------------------------------------------------------------------------ Tablet */
@media screen and (max-width: 940px) {
  header {
    z-index: 200;
    /*background: #FFF;*/ }

  header .nav {
    width: 250px;
    height: 100%;
    position: fixed;
    right: -250px;
    z-index: 250;
    overflow: auto;
    float: none;
    margin: 0;
    padding: 0; }

  header .nav li {
    float: none;
    margin: 0; }

  header .nav li a {
    padding: 15px 20px; }

  header .nav li:last-child a {
    box-sizing: border-box;
    border: none;
    padding: 15px 20px; } }
/*
------------------------------------------------------------------------------------------------------------------ TabletPortrait */
@media screen and (max-width: 640px) {
  /* Header
  ----------------------------------------------- */
  header .logo {
    width: 120px;
    float: left;
    margin-left: 20px; } }
/*
------------------------------------------------------------------------------------------------------------------ SmartPhone */
