@charset "UTF-8";
/* Scss Document */
/*********************

疑似クラス

*********************/
/*********************

effect

*********************/
.effect_scale {
  overflow: hidden; }
  .effect_scale a {
    display: block; }
  .effect_scale:hover img {
    transition: transform 0.3s linear;
    transform: scale(1.1); }
  .effect_scale img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    transition-duration: 0.3s; }

a:hover .effect_scale img {
  transition: transform 0.3s linear;
  transform: scale(1.1); }

/*********************

ボタン系effect

*********************/
.effect_border:hover {
  color: #897a5a;
  background: none;
  border: 1px solid #897a5a;
  opacity: 1; }

.effect_bg_left {
  position: relative;
  display: block;
  z-index: 1; }
  .effect_bg_left::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #897a5a;
    width: 0%;
    height: 100%;
    transition: all 0.3s;
    z-index: -1; }
  .effect_bg_left:hover {
    color: #FFF;
    text-decoration: none;
    background: none;
    opacity: 1; }
    .effect_bg_left:hover::after {
      width: 100%; }

.effect_slash {
  position: relative;
  display: block;
  z-index: 1; }
  .effect_slash::after {
    content: "";
    position: absolute;
    top: 0;
    left: -20%;
    background: #897a5a;
    width: 0%;
    height: 100%;
    transition: all 0.3s;
    z-index: -1;
    transform: skew(45deg); }
  .effect_slash:hover {
    color: #FFF;
    text-decoration: none;
    background: none;
    opacity: 1; }
    .effect_slash:hover::after {
      width: 140%; }

.effect_border_around {
  position: relative;
  z-index: 1;
  overflow: hidden; }
  .effect_border_around::before, .effect_border_around::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 0;
    height: 0;
    transition: border-width 0s , 0.6s; }
  .effect_border_around::before {
    top: 0;
    left: 0;
    border-top: 0 solid #897a5a;
    border-left: 0 solid #897a5a; }
  .effect_border_around::after {
    bottom: 0px;
    right: 0px;
    border-bottom: 0 solid #897a5a;
    border-right: 0 solid #897a5a; }
  .effect_border_around:hover {
    color: #897a5a;
    background: none;
    opacity: 1; }
    .effect_border_around:hover::before, .effect_border_around:hover::after {
      width: 100%;
      height: 100%;
      border-color: #897a5a;
      border-width: 2px;
      transition: 0.6s,border-width 0s; }

.effect_border_around_bg {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all .3s ease-out .4s;
  -webkit-transition: all 0.3s ease-out 0.4s; }
  .effect_border_around_bg::before, .effect_border_around_bg::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 0;
    height: 0;
    transition: 0.3s ease-out 0.8s,background-color 0.3s ease-out; }
  .effect_border_around_bg::before {
    top: 0;
    left: 0;
    border-top: 0px solid #897a5a;
    border-left: 0px solid #897a5a; }
  .effect_border_around_bg::after {
    bottom: 0;
    right: 0;
    border-bottom: 0px solid #897a5a;
    border-right: 0px solid #897a5a; }
  .effect_border_around_bg:hover {
    color: #FFF;
    background-color: none;
    opacity: 1; }
    .effect_border_around_bg:hover::before, .effect_border_around_bg:hover::after {
      width: 100%;
      height: 100%;
      border-color: #897a5a;
      border-width: 2px;
      background: #897a5a;
      transition: 0.3s ease-out,background-color 0.3s ease-out 0.8s,border-width 0s; }

.effect_drop {
  z-index: 1;
  color: #FFF;
  transition: all .6s linear;
  -webkit-transition: all .6s linear; }
  .effect_drop::after {
    z-index: -1;
    content: '';
    position: absolute;
    transition: top .5s ease-in .5s, width .5s ease-out, height .5s ease-out;
    -webkit-transition: top .5s ease-in .5s, width .5s ease-out, height .5s ease-out;
    left: 50%;
    top: -50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #001351; }
  .effect_drop:hover {
    background: #897a5a;
    border: 1px solid #001351;
    color: #FFF;
    opacity: 1; }
    .effect_drop:hover::after {
      transition: top .5s ease-in, width .5s ease-out .5s, height .5s ease-out .5s;
      -webkit-transition: top .5s ease-in, width .5s ease-out .5s, height .5s ease-out .5s;
      top: 50%;
      width: 200%;
      height: 200%; }

.effect_draw {
  transition: color 0.25s;
  border: 1px solid #897a5a; }
  .effect_draw::before, .effect_draw::after {
    border: 2px solid transparent;
    width: 0;
    height: 0;
    content: '';
    position: absolute; }
  .effect_draw::before {
    top: 0;
    left: 0;
    transition: border-color 0s ease-out 1s,  height 0.25s ease-out 0.75s, width 0.25s ease-out 1s; }
  .effect_draw::after {
    bottom: 0;
    right: 0;
    transition: border-color 0s ease-out .7s, height 0.25s ease-out 0.25s,  width 0.25s ease-out 0.5s; }
  .effect_draw:hover {
    color: #897a5a;
    background: none;
    opacity: 1; }
    .effect_draw:hover::before, .effect_draw:hover::after {
      width: 100%;
      height: 100%; }
    .effect_draw:hover::before {
      border-top-color: #897a5a;
      border-right-color: #897a5a;
      transition: width 0.25s ease-out,  height 0.25s ease-out 0.25s; }
    .effect_draw:hover::after {
      border-bottom-color: #897a5a;
      border-left-color: #897a5a;
      transition: border-color 0s ease-out 0.5s,  width 0.25s ease-out 0.5s,  height 0.25s ease-out 0.75s; }

/******************************************


アニメーション


******************************************/
[data-effect="fade_up"] {
  transform: translate(0, 25%);
  opacity: 0; }

[data-effect="fade_toRight"] {
  opacity: 0;
  transform: translate(-25%, 0); }

[data-effect="fade_toLeft"] {
  opacity: 0;
  transform: translate(25%, 0); }

.active[data-effect="fade_up"],
.active [data-effect="fade_up"],
.on[data-effect="fade_up"],
.on [data-effect="fade_up"] {
  animation: effect-fadeUp 1.5s ease 0s 1 forwards; }
.active[data-effect="fade_toRight"],
.active [data-effect="fade_toRight"],
.on[data-effect="fade_toRight"],
.on [data-effect="fade_toRight"] {
  animation: effect-toRight 1s ease 0s 1 forwards; }
.active[data-effect="fade_toLeft"],
.active [data-effect="fade_toLeft"],
.on[data-effect="fade_toLeft"],
.on [data-effect="fade_toLeft"] {
  animation: effect-toLeft 1s ease 0s 1 forwards; }
@media screen and (min-width: 769px) {
  .active [data-order="second"], .active[data-order="second"],
  .on [data-order="second"],
  .on[data-order="second"] {
    animation-delay: 0.2s; }
  .active [data-order="third"], .active[data-order="third"],
  .on [data-order="third"],
  .on[data-order="third"] {
    animation-delay: 0.4s; }
  .active [data-order="fourth"], .active[data-order="fourth"],
  .on [data-order="fourth"],
  .on[data-order="fourth"] {
    animation-delay: 0.6s; }
  .active [data-order="two_auto"]:nth-child(2n), .active[data-order="two_auto"]:nth-child(2n),
  .on [data-order="two_auto"]:nth-child(2n),
  .on[data-order="two_auto"]:nth-child(2n) {
    animation-delay: 0.2s; }
  .active [data-order="three_auto"]:nth-child(3n - 1), .active[data-order="three_auto"]:nth-child(3n - 1),
  .on [data-order="three_auto"]:nth-child(3n - 1),
  .on[data-order="three_auto"]:nth-child(3n - 1) {
    animation-delay: 0.2s; }
  .active [data-order="three_auto"]:nth-child(3n), .active[data-order="three_auto"]:nth-child(3n),
  .on [data-order="three_auto"]:nth-child(3n),
  .on[data-order="three_auto"]:nth-child(3n) {
    animation-delay: 0.4s; }
  .active [data-order="four_auto"]:nth-child(4n - 2), .active[data-order="four_auto"]:nth-child(4n - 2),
  .on [data-order="four_auto"]:nth-child(4n - 2),
  .on[data-order="four_auto"]:nth-child(4n - 2) {
    animation-delay: 0.2s; }
  .active [data-order="four_auto"]:nth-child(4n - 1), .active[data-order="four_auto"]:nth-child(4n - 1),
  .on [data-order="four_auto"]:nth-child(4n - 1),
  .on[data-order="four_auto"]:nth-child(4n - 1) {
    animation-delay: 0.4s; }
  .active [data-order="four_auto"]:nth-child(4n), .active[data-order="four_auto"]:nth-child(4n),
  .on [data-order="four_auto"]:nth-child(4n),
  .on[data-order="four_auto"]:nth-child(4n) {
    animation-delay: 0.6s; }
  .active [data-order="five_auto"]:nth-child(5n - 3), .active[data-order="five_auto"]:nth-child(5n - 3),
  .on [data-order="five_auto"]:nth-child(5n - 3),
  .on[data-order="five_auto"]:nth-child(5n - 3) {
    animation-delay: 0.2s; }
  .active [data-order="five_auto"]:nth-child(5n - 2), .active[data-order="five_auto"]:nth-child(5n - 2),
  .on [data-order="five_auto"]:nth-child(5n - 2),
  .on[data-order="five_auto"]:nth-child(5n - 2) {
    animation-delay: 0.4s; }
  .active [data-order="five_auto"]:nth-child(5n - 1), .active[data-order="five_auto"]:nth-child(5n - 1),
  .on [data-order="five_auto"]:nth-child(5n - 1),
  .on[data-order="five_auto"]:nth-child(5n - 1) {
    animation-delay: 0.6s; }
  .active [data-order="five_auto"]:nth-child(5n), .active[data-order="five_auto"]:nth-child(5n),
  .on [data-order="five_auto"]:nth-child(5n),
  .on[data-order="five_auto"]:nth-child(5n) {
    animation-delay: 0.8s; } }

@keyframes effect-toLeft {
  from {
    opacity: 0;
    transform: translate(25%, 0); }
  to {
    opacity: 1;
    transform: translate(0, 0); } }
@keyframes effect-toRight {
  from {
    opacity: 0;
    transform: translate(-25%, 0); }
  to {
    opacity: 1;
    transform: translate(0, 0); } }
@keyframes effect-fadeUp {
  from {
    opacity: 0;
    transform: translate(0, 25%); }
  to {
    opacity: 1;
    transform: translate(0, 0); } }
@keyframes effect-scaleOut {
  from {
    opacity: 1;
    transform: scale3d(1, 1, 1); }
  to {
    opacity: 0.2;
    transform: scale3d(0.8, 0.8, 0.8); } }
@keyframes effect-scale {
  from {
    opacity: 0.2;
    transform: scale3d(0.8, 0.8, 0.8); }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1); } }
@keyframes zoomIn {
  from {
    background-size: 135% 135%; }
  to {
    background-size: 105% 105%; } }
@keyframes zoomIn02 {
  from {
    background-size: auto 135%; }
  to {
    background-size: auto 105%; } }
@keyframes clear {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes circle01 {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
/******************************************


基本系


******************************************/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

/******************************************


レイアウト系


******************************************/
.outline, .news_outline {
  max-width: 100%;
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  margin-left: auto;
  margin-right: auto; }
  @media screen and (min-width: 769px) {
    .outline, .news_outline {
      padding-left: 10px;
      padding-right: 10px; } }
  @media screen and (min-width: 1201px) {
    .outline, .news_outline {
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 0;
      padding-right: 0; } }
  @media screen and (min-width: 981px) {
    .outline.w_narrow, .w_narrow.news_outline {
      max-width: 980px; } }
  @media screen and (min-width: 1201px) {
    .outline.w_wide, .w_wide.news_outline {
      max-width: 1980px;
      padding-left: 5%;
      padding-right: 5%; } }
  @media screen and (min-width: 769px) {
    .outline.w_over, .w_over.news_outline {
      max-width: 100%; } }

.l_center {
  margin-left: auto;
  margin-right: auto; }

.l_left {
  margin-left: 0;
  margin-right: auto; }

.l_right {
  margin-left: auto;
  margin-right: 0; }

.l_sp_v {
  padding-top: 40px;
  padding-bottom: 40px; }
  @media screen and (min-width: 769px) {
    .l_sp_v {
      padding-top: 80px;
      padding-bottom: 80px; } }

.l_sp_b {
  padding-bottom: 40px; }
  @media screen and (min-width: 769px) {
    .l_sp_b {
      padding-bottom: 80px; } }

.l_sp_t {
  padding-top: 40px; }
  @media screen and (min-width: 769px) {
    .l_sp_t {
      padding-top: 80px; } }

.l_sidebar {
  display: -webkit-flex;
  /* Safari */
  display: flex;
  -webkit-flex-direction: row;
  /* Safari */
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
  -webkit-align-items: stretch;
  /* Safari */
  align-items: stretch;
  -webkit-align-content: stretch;
  /* Safari */
  align-content: stretch;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto; }
  .l_sidebar > .content_area,
  .l_sidebar > article {
    width: 100%; }
    @media screen and (min-width: 769px) {
      .l_sidebar > .content_area,
      .l_sidebar > article {
        width: calc(100% - (300px + 20px)); } }
  .l_sidebar > .sidebar {
    width: 100%;
    padding: 0 5%; }
    @media screen and (min-width: 769px) {
      .l_sidebar > .sidebar {
        width: 300px;
        padding: 0; } }

@media screen and (min-width: 415px) {
  .sp_only {
    display: none !important; } }
@media screen and (min-width: 769px) {
  .sp_display {
    display: none !important; } }
@media screen and (max-width: 768px) {
  .pc_display {
    display: none !important; } }
/******************************************


装飾


******************************************/
.overlay {
  position: relative;
  overflow: hidden; }
  .overlay img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0; }
  .overlay:after {
    display: block;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(135, 135, 135, 0) 47%, rgba(0, 0, 0, 0.7) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(135, 135, 135, 0) 47%, rgba(0, 0, 0, 0.7) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(135, 135, 135, 0) 47%, rgba(0, 0, 0, 0.7) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#b3000000',GradientType=0 );
    content: "";
    position: absolute;
    z-index: 1; }

/*----------
  Clear
----------*/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden; }

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden; }

.clearfix {
  display: inline-block; }

* html .clearfix {
  height: 1%; }

.clearfix {
  display: block; }

.clear {
  clear: both; }

/******************************************


装飾


******************************************/
.fw_bold {
  font-weight: bold; }

.fw_normal {
  font-weight: normal; }

.text_center {
  text-align: center; }

.text_right {
  text-align: right; }

.text_left {
  text-align: left; }

.message.caution {
  color: #B22019; }
.message.info {
  color: #001351; }
.message.border {
  padding: 0.2em;
  border: solid 2px #EEE; }

.marker {
  background: linear-gradient(transparent 65%, #897a5a 0%);
  display: inline;
  font-weight: bold; }
  .marker.thick {
    background: linear-gradient(transparent 60%, #897a5a 0%);
    display: inline; }
  .marker.thin {
    background: linear-gradient(transparent 80%, #897a5a 0%);
    display: inline; }
  .marker.gradation {
    background: linear-gradient(transparent 0, #897a5a 60%); }

/********************************************************************************リスト系 *****/
.notlist {
  list-style: none;
  padding-left: 0; }

dl.table_date {
  /* お知らせのような横並び  */ }
  dl.table_date dt {
    float: left; }
  dl.table_date dd {
    margin-left: 80px; }

/********************************************************************************リスト系 END */
/******************************************


タイトル


******************************************/
/******************************************


共通部分


******************************************/
#overlay {
  display: none;
  cursor: pointer; }

.nav_wrap {
  position: fixed;
  max-width: 300px;
  height: 100%;
  height: 100vh;
  display: none;
  overflow: hidden;
  z-index: 800;
  right: -300px;
  top: 0;
  transition: all 0.3s ease;
  -ms-transition: all 0.3s ease; }
  .nav_wrap.center {
    padding: 30px 0;
    width: 100%;
    opacity: 0;
    right: 0;
    max-width: 100%;
    margin: 20px 0;
    justify-content: center;
    align-content: center;
    align-items: center; }
    .nav_wrap.center .globalnav {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      align-content: flex-start;
      background: none;
      max-width: 650px;
      padding: 15px;
      width: 100%;
      height: auto;
      font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", serif; }
      .nav_wrap.center .globalnav > a {
        display: inline-block;
        width: 100%;
        margin: 10px 0 20px;
        text-align: center;
        border-bottom: 1px solid #707070;
        color: #FFF;
        box-sizing: border-box;
        justify-content: center; }
        .nav_wrap.center .globalnav > a:hover {
          opacity: 0.8; }
        @media screen and (min-width: 769px) {
          .nav_wrap.center .globalnav > a {
            width: 46%; } }
        .nav_wrap.center .globalnav > a.logo {
          width: 100%;
          border-left: none;
          border-right: none;
          border-bottom: none;
          background: none;
          margin: 0 0 50px; }
      .nav_wrap.center .globalnav > div {
        width: 100%;
        clear: both; }
        .nav_wrap.center .globalnav > div .btn {
          width: 100%;
          font-size: 20px;
          line-height: 1.2;
          padding: 15px;
          margin: 15px 0; }
          @media screen and (min-width: 769px) {
            .nav_wrap.center .globalnav > div .btn {
              width: 46%;
              margin: 10px 0; } }
          .nav_wrap.center .globalnav > div .btn span {
            font-size: 15px;
            display: block; }
  .nav_wrap.scroll {
    overflow-y: scroll; }

.nav_btn {
  color: #FFF;
  position: fixed;
  right: 10px;
  bottom: 10px;
  margin-left: 15px;
  width: 60px;
  height: 60px;
  z-index: 999;
  background: #140E0C;
  border-radius: 100%; }
  .nav_btn::before {
    display: block;
    content: 'Menu';
    font-size: 11px;
    margin-top: 30px;
    font-weight: bold;
    text-align: center; }
  .nav_btn span {
    position: absolute;
    height: 2px;
    /*線の太さ*/
    width: 27px;
    /*長さ*/
    background: #FFF;
    display: block;
    content: '';
    cursor: pointer;
    left: 50%;
    margin-left: -13.5px;
    top: 25px;
    z-index: 999; }
    .nav_btn span::before, .nav_btn span::after {
      position: absolute;
      height: 2px;
      /*線の太さ*/
      width: 27px;
      /*長さ*/
      background: inherit;
      display: block;
      content: '';
      cursor: pointer;
      right: 0; }
    .nav_btn span::before {
      top: -6px;
      opacity: 1;
      transition: 0.5s; }
    .nav_btn span::after {
      top: 6px;
      -webkit-transform: translateY(0) rotate(0deg);
      transform: translateY(0) rotate(0deg);
      z-index: 999;
      transition: 0.5s; }

.globalnav {
  width: 80vw;
  min-height: 100%;
  background: #FFF;
  max-width: 100%;
  margin: auto; }
  _:-ms-fullscreen, :root .globalnav {
    margin: 0; }
  .globalnav > a {
    color: #FFF;
    width: 100%;
    display: flex;
    text-align: center;
    position: relative;
    align-items: center;
    height: auto;
    padding: 15px;
    border-bottom: 1px solid #EEE; }
    .globalnav > a:hover {
      color: #897a5a;
      text-decoration: none; }
    .globalnav > a.logo {
      border-bottom: none;
      margin-bottom: 15px;
      padding: 20px; }
      .globalnav > a.logo::after {
        display: none; }
  .globalnav > div {
    padding: 30px 0; }
    @media screen and (min-width: 769px) {
      .globalnav > div {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: flex-start;
        align-content: flex-start; } }
    .globalnav > div a {
      display: block;
      width: 96%;
      margin: 10px 0; }
      @media screen and (min-width: 769px) {
        .globalnav > div a {
          width: 46%;
          padding: 15px; } }

body {
  height: auto;
  touch-action: auto; }
  body.open_menu {
    overflow: hidden;
    height: 100vh;
    touch-action: none; }

.open_menu .nav_wrap {
  opacity: 1; }
  @media screen and (min-width: 769px) {
    .open_menu .nav_wrap {
      display: flex !important; } }
  .open_menu .nav_wrap .globalnav {
    right: 0;
    padding: 0 30px;
    max-width: 350px; }
    @media screen and (min-width: 415px) {
      .open_menu .nav_wrap .globalnav {
        padding: 0;
        max-width: 650px; } }
.open_menu #overlay {
  display: block;
  content: "";
  background-image: url(../images/menu_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #202020;
  width: 100%;
  height: 100vh;
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10; }
.open_menu .nav_btn {
  border-radius: 0;
  background: #707070; }
  .open_menu .nav_btn::before {
    content: 'Close';
    color: #FFF; }
  .open_menu .nav_btn > span {
    z-index: 999;
    height: 0; }
    .open_menu .nav_btn > span::before, .open_menu .nav_btn > span::after {
      z-index: 999;
      transition: 0.5s; }
    .open_menu .nav_btn > span::before {
      -webkit-transform: translateY(3px) rotate(-45deg);
      transform: translateY(3px) rotate(-45deg); }
    .open_menu .nav_btn > span::after {
      top: -9px;
      -webkit-transform: translateY(5px) rotate(45deg);
      transform: translateY(5px) rotate(45deg); }

.btn {
  border: solid 1px #897a5a;
  color: #FFF;
  text-align: center;
  background: #897a5a;
  border-radius: 4px; }
  .btn:hover {
    color: #897a5a;
    background: none; }

* {
  box-sizing: border-box;
  outline: none; }

html {
  font-size: 62.5%; }

body {
  font-family: -apple-system, "Hiragino Kaku Gothic ProN", "Noto Sans Japanese", sans-serif;
  font-size: 1.6rem;
  line-height: 2.2;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: justify;
  text-justify: inter-ideograph;
  word-wrap: break-word;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt"; }

body,
header li a,
#media li h3,
#media li .link-ttl {
  color: #140E0C; }

a {
  text-decoration: none;
  display: block; }

a,
.custom-select:before {
  color: #897A5A; }

div.wpcf7-mail-sent-ok {
  color: #897A5A !important; }

a,
.btn,
#mv .layer .icon {
  transition: all 0.2s ease; }

img {
  display: block;
  max-width: 100%;
  height: auto !important;
  margin-left: auto;
  margin-right: auto; }

::-moz-selection {
  background: #f0f0f0;
  color: #111111; }

::selection {
  background: #f0f0f0;
  color: #111111; }

:placeholder-shown {
  color: #BDBEC1; }

::-webkit-input-placeholder {
  color: #BDBEC1; }

:-moz-placeholder {
  color: #BDBEC1;
  opacity: 1; }

::-moz-placeholder {
  color: #BDBEC1;
  opacity: 1; }

:-ms-input-placeholder {
  color: #BDBEC1; }

select::-ms-expand {
  display: none; }

/* TEXT */
h1,
h2,
h3,
h4,
h5 {
  font-weight: normal; }

.ff-en,
.ff-en-itl {
  font-family: 'Crimson Text', serif; }

.ff-en-itl {
  font-style: italic; }

.ff-min,
.btn {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", serif;
  transform: rotate(0.03deg) !important; }

.cl-gold,
.btn:hover {
  color: #897A5A; }

.cl-red,
.wpcf7-not-valid-tip,
div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
  color: #BE272D !important; }

.cl-gray {
  color: #B0B0B0; }

.txt-center {
  text-align: center; }

/* GENERAL STYLE */
.inner {
  padding-left: 5%;
  padding-right: 5%;
  width: 100%;
  max-width: 1980px;
  margin-left: auto;
  margin-right: auto; }

.sec-pd {
  padding-top: 120px;
  padding-bottom: 120px; }

.sec-pdt {
  padding-top: 120px; }

.sec-pdb {
  padding-bottom: 120px; }

.flex {
  display: flex; }

.flex-reverse {
  flex-direction: row-reverse; }

.flex-wrap {
  flex-wrap: wrap; }

.flex-clm {
  flex-direction: column; }

.flex-right {
  justify-content: flex-end; }

.flex-center {
  justify-content: center; }

.flex-space-between {
  justify-content: space-between; }

.flex-align-top {
  align-items: flex-start; }

.flex-align-center {
  align-items: center;
  height: 100%; }

.flex-align-bottom {
  align-items: flex-end; }

.flex-auto-width {
  flex: 1; }

.inline-block {
  display: inline-block !important; }

.bg-black {
  background: #282828; }

.bg-brown {
  background: #f9f6f3; }

#mv .layer .icon,
.btn {
  background: #897A5A; }

.btn {
  border: solid 1px #897A5A !important;
  color: #fff;
  text-align: center; }

.btn:hover {
  background: none; }

.is-fixed {
  position: fixed;
  z-index: 9;
  width: 100%;
  margin: 0 !important;
  top: 0;
  left: 0;
  border-width: 0 0 1px !important;
  padding: 18px 5px !important;
  border-radius: 0 !important; }

.is-fixed:hover {
  background: #fff; }

/* VIDEO */
.video {
  position: relative;
  height: 0;
  padding: 0 0 56.25%;
  overflow: hidden; }

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%; }

header {
  padding: 35px 0; }

#link-wrp {
  margin-left: 30px;
  top: 0; }

/*#link-wrp ul{
    display: flex;
}
#link-wrp ul li{
    margin-left: 10px;
}*/
#logo-wrp a,
#media li,
#contact li {
  border: solid 1px #f3f0f0; }

#logo-wrp a {
  border-width: 0 1px 0 0;
  padding-right: 25px;
  margin-right: 25px; }

#logo-wrp a img {
  margin-left: 0; }

#logo-wrp p {
  font-size: 1.4rem;
  line-height: 1.8; }

header .btn,
header li a {
  line-height: 1.0; }

header .btn {
  padding: 15px 20px;
  font-size: 1.6rem;
  margin-left: 50px; }

header li a {
  font-size: 1.5rem; }

header li a .fal {
  margin-right: 6px; }

#mv {
  background: url(../images/mv-bg.jpg) no-repeat center center;
  background-size: cover; }

#mv .layer {
  height: 70vh;
  min-height: 400px;
  max-height: 700px;
  background: rgba(0, 0, 0, 0.4); }

#mv .layer .icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  text-align: center;
  opacity: 0.8; }

#mv .layer:hover .icon {
  opacity: 1; }

#mv .layer .icon .fas {
  font-size: 2.2rem;
  line-height: 100px;
  color: #fff; }

#movie-modal {
  display: none;
  width: 90%;
  margin: 0;
  padding: 0;
  background-color: #000000;
  position: fixed;
  z-index: 9; }

#movie-modal iframe {
  display: block; }

#movie-modal-bg {
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8; }

#summary-sec h1 {
  font-size: 3.5rem;
  line-height: 1.8;
  letter-spacing: 0.05em; }

#summary-sec .sub-ttl {
  font-size: 1.8rem;
  margin: 20px 0 40px; }

#summary-sec .read,
.enews-sec form {
  max-width: 980px;
  margin: 0 auto; }

#summary-sec .read {
  line-height: 2.6;
  font-size: 1.7rem; }

#summary-sec h2,
#summary-sec h2 + p {
  line-height: 1.0; }

#summary-sec h2 {
  font-size: 2.8rem; }

#summary-sec h2 + p {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-top: 15px; }

#summary-sec .btn,
#reason-sec .btn,
#sponsor .btn,
#contact .btn,
#fine-art-sec .btn,
.enews-sec .btn {
  margin: 70px auto 0;
  padding: 18px 15px 18px;
  line-height: 1.4;
  font-size: 2.0rem;
  max-width: 555px; }

#summary-sec .rest-counter {
  line-height: 1.0; }

#summary-sec .rest-counter span:first-child {
  font-size: 6.5rem; }

#summary-sec .rest-counter span:last-child {
  font-size: 2.8rem;
  margin-left: 5px; }

#summary-sec .barchart {
  max-width: 555px;
  background: #E1E1E1;
  margin: 40px auto 20px;
  border-radius: 13px; }

#summary-sec .rest-box.fade-in-y .barchart div {
  height: 26px;
  border-radius: 13px 0 0 13px;
  width: 25%;
  background: -webkit-linear-gradient(45deg, #877a5a 0%, #5f533f 100%);
  background: linear-gradient(45deg, #877a5a 0%, #5f533f 100%);
  -webkit-animation: barchart 3.5s 1 ease;
  animation: barchart 3.5s 1 ease; }

@-webkit-keyframes barchart {
  0% {
    width: 0; } }
@keyframes barchart {
  0% {
    width: 0; } }
.profile-cont,
#fine-art-sec .cont-wrp {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto; }

.profile-photo {
  width: 35%;
  max-width: 335px;
  margin-right: 7%; }

.profile-photo img {
  border-radius: 10px; }

.profile-cont h2 {
  font-size: 3.2rem;
  line-height: 1.0;
  margin-bottom: 30px;
  margin-top: 5px; }

.profile-cont h3 {
  font-size: 2.6rem;
  line-height: 1.8;
  margin-bottom: 25px; }

.profile-cont h2 span {
  font-size: 1.4rem;
  margin-left: 25px;
  letter-spacing: 0.1em;
  vertical-align: middle; }

.ttl-box {
  text-align: center;
  line-height: 1.0;
  margin-bottom: 55px; }

.ttl-box h2 {
  font-size: 3.3rem;
  margin-bottom: 15px;
  letter-spacing: 0.15em;
  line-height: 1.6; }

#team-sec .ttl-box h2,
#team-sec .member-list li .position,
#team-sec .member-list li h3,
#sponsor .ttl-box h2,
.enews-sec h2 {
  color: #fff; }

.ttl-box p {
  font-size: 1.5rem;
  letter-spacing: 0.1em; }

@media screen and (min-width: 769px) {
  #team-sec {
    background: url(../images/members-bg.jpg) no-repeat fixed;
    background-size: cover; } }
#team-sec > div {
  background: rgba(40, 40, 40, 0.9); }

#team-sec .member-list {
  margin-left: auto;
  margin-right: auto; }

#team-sec .member-list li {
  width: 30%; }

#team-sec .member-list li h3 {
  font-size: 2.4rem; }

#team-sec .member-list li .position,
#team-sec .member-list li h3,
#team-sec .member-list li .name-en {
  text-align: center; }

#team-sec .member-list li .position,
#team-sec .member-list li h3,
#team-sec .member-list li .name-en,
#team-sec .member-list li .comment-box h4,
#reason-sec .ttl {
  line-height: 1.0; }

#team-sec .member-list li .position {
  margin-top: 25px;
  margin-bottom: 20px; }

#team-sec .member-list li .name-en {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-top: 15px;
  margin-bottom: 30px; }

#team-sec .member-list li .position span {
  margin-left: 10px;
  margin-right: 10px; }

#team-sec .member-list li img {
  border-radius: 50%;
  max-width: 220px; }

#team-sec .member-list li .comment-box {
  margin-top: 25px; }

#team-sec .member-list li .comment-box h4 {
  margin-bottom: 10px; }

#team-sec .member-list li .comment-box h4 span {
  margin-left: 8px;
  font-size: 1.8rem; }

#reason-sec .cont-wrp,
#contact ul {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto; }

#reason-sec .cont-wrp {
  background: url(../images/map.svg) center 0 no-repeat;
  background-size: 80% auto; }

#reason-sec h2 {
  font-size: 2.2rem;
  margin-top: 25px;
  margin-bottom: 15px; }

#reason-sec h3 {
  font-size: 5.4rem;
  letter-spacing: 0.05em; }

#reason-sec h3 span {
  font-size: 3.2rem; }

#reason-sec .cont {
  margin-top: 40px;
  flex-direction: row-reverse; }

#reason-sec .cont img {
  width: 470px;
  margin-left: 5%; }

#roth-sec .copy {
  text-align: center;
  line-height: 1.0; }

#roth-sec .copy,
#roth-sec .copy span.cl-gold {
  font-size: 4.0rem; }

#roth-sec .copy:not(:last-child) {
  margin-bottom: 30px; }

#roth-sec .copy span {
  font-size: 2.8rem; }

#roth-sec .profile-cont {
  margin-top: 60px; }

#roth-sec .sub-read {
  margin-top: 30px;
  border: solid 1px #897A5A;
  border-width: 1px 0 0;
  padding: 30px 0;
  font-size: 1.5rem; }

#roth-sec .sub-read:last-child {
  margin-top: 0;
  padding-bottom: 0; }

#media ul {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto; }

#media li {
  width: 50%;
  border-width: 1px 0;
  margin-bottom: -1px; }

#media li a {
  padding: 20px 25px;
  height: 100%; }

#media li a:hover {
  background: rgba(237, 235, 232, 0.37); }

#media li a .date {
  font-size: 1.4rem;
  line-height: 1.0;
  margin-bottom: 10px; }

#media li h3 {
  font-size: 1.7rem;
  line-height: 1.6; }

#media li div {
  font-size: 1.5rem;
  line-height: 1.0;
  margin-top: 20px; }

#media li div p {
  margin-bottom: 10px; }

#sponsor .cont {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto; }

#sponsor .cont ul {
  margin-top: 60px; }

#sponsor .cont li {
  width: 130px;
  margin: 0 15px; }

#contact li {
  padding: 25px 5%;
  border-width: 1px 0;
  margin-bottom: -1px; }

#contact li .label-block {
  width: 200px;
  text-align: right;
  margin-right: 20px;
  line-height: 1.0; }

#contact li .label-block p {
  margin-top: 7px;
  font-size: 1.6rem; }

#not-found h1 {
  font-size: 6.0rem; }

.enews-sec input[type="email"] {
  font-size: 2.3rem;
  max-width: 555px;
  margin-left: auto;
  margin-right: auto; }

.enews-sec .btn {
  margin-top: 35px; }

footer {
  text-align: center; }

footer p {
  margin: 30px 0 30px;
  font-size: 1.5rem;
  line-height: 1.8; }

footer .sns {
  display: flex;
  justify-content: center;
  margin-bottom: 25px; }

footer .sns li a {
  line-height: 1;
  padding: 10px 15px;
  font-size: 2.0rem;
  transition: all 0.2s ease; }

footer .sns li a:hover {
  transform: scale(1.2); }

/*footer .fb-logo {
    width: 40px;
    margin: 0 auto 30px;
}*/
footer small {
  font-size: 1.0rem; }

.fade-in-ybox,
.fade-in-xbox {
  transition: 1.5s;
  opacity: 0; }

.fade-in-ybox {
  transform: translate(0, 15px); }

.fade-in-xbox {
  transform: translate(-45px, 0); }

.fade-in-y,
.fade-in-x {
  opacity: 1;
  transform: translate(0, 0); }

/* FORM */
input,
textarea,
select,
button {
  display: block;
  width: 100%;
  background: #F5F4F2;
  border: solid 1px #fff;
  cursor: pointer; }

input:hover,
input:focus,
textarea:hover,
textarea:focus,
.custom-select-trigger:hover,
.custom-select-trigger:focus,
select:hover,
select:focus {
  border-color: #EAE7E3; }

input,
textarea,
select,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border-width: 1px;
  padding: 20px;
  font-size: 2.0rem; }

input,
textarea,
select,
button,
.btn,
#fine-art-sec .photobook {
  border-radius: 4px; }

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset; }

.custom-select {
  position: relative; }

.custom-select:before {
  z-index: 1;
  position: absolute;
  right: 20px;
  top: 50%;
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  font-weight: 300;
  font-size: 2.2rem;
  margin-top: -1.1rem;
  pointer-events: none;
  line-height: 1.0; }

textarea {
  height: 250px; }

.wpcf7-not-valid-tip {
  font-size: 1.6rem;
  margin-top: 10px;
  line-height: 1.0; }

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing,
div.wpcf7-mail-sent-ok {
  text-align: center; }

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
  border-color: #BE272D !important; }

div.wpcf7-mail-sent-ok {
  border-color: #897A5A !important; }

div.wpcf7-response-output,
div.wpcf7-mail-sent-ok {
  padding: 20px 15px !important;
  margin: 25px auto 0 !important;
  max-width: 600px;
  font-size: 1.8rem;
  line-height: 1.6; }

div.wpcf7 .ajax-loader {
  display: block !important;
  margin: 20px auto !important; }

.wpcf7-submit {
  letter-spacing: 0.1em !important; }

.sp-display {
  display: none; }

#fine-art-sec h2 {
  text-align: left;
  line-height: 1.6; }

#fine-art-sec h2,
#fine-art-sec h2 + p {
  letter-spacing: 0; }

#fine-art-sec .read {
  margin-top: 30px; }

#fine-art-sec h3 {
  font-size: 2.2rem;
  line-height: 1.8;
  margin-bottom: 10px; }

#fine-art-sec .photobook {
  padding: 100px;
  margin-top: 80px;
  background: #fff; }

#fine-art-sec .photobook .sp-display {
  display: none; }

#fine-art-sec .photobook .pict {
  width: 30%;
  max-width: 280px;
  margin-right: 50px; }

#fine-art-sec .photobook .read {
  margin-top: 30px; }

#fine-art-sec .photobook .spec {
  margin-top: 30px;
  font-size: 1.3rem; }

.en-link {
  border-bottom: solid 1px #f3f0f0;
  display: flex;
  flex-direction: row-reverse; }

.en-link a {
  text-align: right;
  font-size: 1.4rem;
  padding: 10px;
  line-height: 1; }

.en-link a .fal {
  margin-right: 5px; }

@media screen and (max-width: 1024px) {
  header .btn {
    margin-left: 30px; }

  #team-sec .member-list li img {
    width: 70%; }

  #mv .layer {
    height: 40vh;
    min-height: 400px; }

  #fine-art-sec .photobook {
    padding: 60px;
    margin-top: 60px; } }
@media screen and (max-width: 970px) {
  #logo-wrp {
    flex-direction: column;
    align-items: flex-start; }

  #logo-wrp a {
    width: 360px;
    border: none; }

  #logo-wrp p {
    margin-top: 15px; }

  #logo-wrp p br {
    display: none; }

  header li a {
    font-size: 1.4rem; }

  .sec-pd {
    padding-top: 60px;
    padding-bottom: 60px; }

  #summary-sec h1 {
    font-size: 3.6rem; }

  #summary-sec .sub-ttl {
    margin-bottom: 30px; }

  #summary-sec .btn,
  #reason-sec .btn,
  #sponsor .btn,
  #contact .btn,
  .enews-sec .btn {
    margin-top: 40px; } }
@media screen and (max-width: 834px) {
  #team-sec .member-list,
  #reason-sec .cont {
    flex-direction: column; }

  #team-sec .member-list li {
    width: 100%; }

  #team-sec .member-list li:not(:last-child) {
    margin-bottom: 50px; }

  #reason-sec .cont img {
    width: 65%;
    margin: 0 auto 20px; }

  #fine-art-sec .btn {
    margin-top: 30px; } }
@media screen and (max-width: 768px) {
  #summary-sec h1,
  #roth-sec .copy,
  #roth-sec .copy span.cl-gold {
    font-size: 3.3rem; }

  #logo-wrp a {
    width: 100%;
    margin-right: 0;
    padding-right: 0; }

  /*#link-wrp,*/
  .profile-cont {
    flex-direction: column; }

  #link-wrp {
    align-items: flex-end;
    width: 180px; }

  /*#link-wrp ul {
      margin-bottom: 20px;
  }*/
  .profile-photo {
    margin: 0 auto 25px;
    min-width: 200px; }

  .profile-cont .label,
  .profile-cont h2 {
    text-align: center; }

  .profile-cont h2 span {
    display: block;
    margin-left: 0;
    margin-top: 10px; }

  .profile-cont h3 br {
    display: none; }

  .ttl-box h2 {
    font-size: 2.8rem; }

  .enews-sec .ttl-box h2 {
    font-size: 2.3rem;
    letter-spacing: 0; }

  #team-sec {
    background: url(../images/members-bg-sp.jpg) no-repeat center bottom;
    background-size: cover; }

  #reason-sec .cont-wrp {
    background-size: 100% auto; }

  #reason-sec h2 {
    font-size: 2.0rem; }

  #reason-sec h3 {
    font-size: 4.0rem; }

  #reason-sec .ttl {
    text-align: center; }

  #reason-sec h3 {
    justify-content: center; }

  #contact li {
    padding-left: 10px;
    padding-right: 10px; }

  #contact li .label-block {
    width: 180px; }

  #not-found h1 {
    font-size: 4.5rem; } }
@media screen and (max-width: 665px) {
  #summary-sec h1 br {
    display: none; } }
@media screen and (max-width: 560px) {
  .inner {
    padding-left: 7%;
    padding-right: 7%; }

  .ttl-box {
    margin-bottom: 30px; }

  .sp-display {
    display: block; }

  header {
    padding-bottom: 0;
    padding-top: 25px; }

  header > .inner {
    padding-left: 0;
    padding-right: 0; }

  header > .inner,
  #media ul,
  #contact li {
    flex-direction: column; }

  #logo-wrp {
    padding-left: 7%;
    padding-right: 7%;
    width: 100%;
    margin-bottom: 20px; }

  #logo-wrp a {
    max-width: 280px; }

  #logo-wrp p {
    font-size: 1.4rem; }

  #logo-wrp p br {
    display: block; }

  #link-wrp,
  header .btn,
  #media li,
  #contact li .label-block {
    width: 100%; }

  #link-wrp {
    margin-left: 0; }

  /*#link-wrp ul {
      display: none;
  }*/
  header .btn {
    margin-left: 0;
    font-size: 1.6rem;
    padding: 20px 5px;
    border-radius: 0 !important;
    top: 0; }

  #mv .layer {
    min-height: 0; }

  #mv .layer .icon {
    width: 80px;
    height: 80px; }

  #mv .layer .icon .fas {
    font-size: 2.0rem;
    line-height: 80px; }

  #summary-sec h1,
  #summary-sec h2,
  .profile-cont h2,
  #roth-sec .copy,
  #roth-sec .copy span.cl-gold {
    font-size: 2.4rem; }

  #summary-sec .sub-ttl,
  #summary-sec .btn,
  #reason-sec .btn,
  #sponsor .btn,
  #contact .btn,
  .enews-sec .btn,
  #summary-sec .read {
    font-size: 1.6rem; }

  #summary-sec .read {
    line-height: 2.2; }

  #summary-sec .btn,
  #reason-sec .btn,
  #sponsor .btn,
  #contact .btn,
  .enews-sec .btn {
    padding-left: 5px;
    padding-right: 5px; }

  .profile-cont h3 {
    font-size: 2.0rem; }

  #reason-sec .ttl {
    padding-top: 25px; }

  #reason-sec .ttl .ff-en-itl {
    font-size: 1.4rem; }

  #reason-sec h3 {
    font-size: 3.4rem; }

  #reason-sec h3 span {
    font-size: 2.4rem; }

  #reason-sec h2 {
    font-size: 1.8rem; }

  #reason-sec .cont {
    margin-top: 30px; }

  #reason-sec .cont img {
    width: 100%; }

  #roth-sec .copy {
    flex-wrap: wrap; }

  #roth-sec .copy span {
    font-size: 2.0rem; }

  #roth-sec .copy:not(:last-child) {
    margin-bottom: 10px; }

  #roth-sec .copy:last-child {
    line-height: 42px; }

  #roth-sec .profile-cont {
    margin-top: 25px; }

  #media li a {
    padding-left: 3%;
    padding-right: 3%; }

  #sponsor .cont li {
    width: 100px; }

  #contact li {
    padding-left: 0;
    padding-right: 0; }

  #contact li .label-block {
    text-align: left;
    margin-right: 0;
    display: flex;
    margin-bottom: 15px;
    align-items: center; }

  #contact li .label-block p {
    margin: 0 0 0 15px;
    font-size: 1.6rem; }

  #contact li .input-block {
    width: 100%; }

  #logo {
    width: 80%;
    margin-left: auto;
    margin-right: auto; }

  #movie-modal {
    width: 100%; }

  #summary-sec .rest-box.fade-in-y .barchart div {
    height: 20px; }

  input,
  textarea,
  select {
    padding: 15px;
    font-size: 1.8rem; }

  .ttl-box h2 {
    font-size: 2.4rem;
    margin-bottom: 5px; }

  #fine-art-sec h2 {
    font-size: 2.0rem;
    margin-top: 30px; }

  #fine-art-sec .read {
    margin-top: 20px; }

  #fine-art-sec .photobook .pc-display {
    display: none; }

  #fine-art-sec .photobook .sp-display {
    display: block; }

  #fine-art-sec .photobook {
    margin-top: 40px;
    padding: 25px; }

  #fine-art-sec h3 {
    font-size: 1.8rem; }

  #fine-art-sec .photobook img {
    max-width: 180px;
    margin-top: 20px; }

  #fine-art-sec .photobook .read {
    margin-top: 10px; }

  #team-sec .member-list li img {
    max-width: 200px; }

  .enews-sec .ttl-box h2 {
    margin-bottom: 10px; } }
@media screen and (max-width: 320px) {
  #reason-sec h3 {
    font-size: 3.0rem; }

  #reason-sec h3 span {
    font-size: 2.4rem; } }
/* HIGH PRIORITY */
.mgt0 {
  margin-top: 0 !important; }

.mgt5 {
  margin-top: 5px !important; }

.mgt10 {
  margin-top: 10px !important; }

.mgt15 {
  margin-top: 15px !important; }

.mgt20 {
  margin-top: 20px !important; }

.mgt25 {
  margin-top: 25px !important; }

.mgt30 {
  margin-top: 30px !important; }

.mgt40 {
  margin-top: 40px !important; }

.mgt50 {
  margin-top: 50px !important; }

.mgb0 {
  margin-bottom: 0 !important; }

.mgb5 {
  margin-bottom: 5px !important; }

.mgb10 {
  margin-bottom: 10px !important; }

.mgb15 {
  margin-bottom: 15px !important; }

.mgb20 {
  margin-bottom: 20px !important; }

.mgb25 {
  margin-bottom: 25px !important; }

.mgb30 {
  margin-bottom: 30px !important; }

.mgb40 {
  margin-bottom: 40px !important; }

.mgb50 {
  margin-bottom: 50px !important; }

.mgl0 {
  margin-left: 0 !important; }

.w100 {
  width: 100% !important; }

.w80 {
  width: 80% !important; }

.w60 {
  width: 60% !important; }

.w40 {
  width: 40% !important; }

.mailmagazine {
  width: 90%;
  margin: 0 auto 80px;
  max-width: 800px;
  text-align: center; }

#s2email {
  margin-bottom: 20px;
  border: 1px solid #bbb; }

.mailmagazine input:hover {
  opacity: 0.7; }

.mailmagazine input[name^="subscribe"] {
  background: #897A5A;
  color: #FFF; }

.mailmagazine input[name^="unsubscribe"] {
  background: #999;
  color: #FFF; }

.mailmagazine label {
  display: none; }

.breadcrumbs_area {
  background: #F4F4F4; }

.breadcrumbs {
  padding: 5px 0;
  margin: 0 auto 35px;
  max-width: 100%;
  overflow-x: scroll;
  white-space: nowrap;
  font-size: 14px; }
  @media screen and (min-width: 769px) {
    .breadcrumbs {
      overflow-x: auto;
      max-width: 1980px;
      padding-left: 5%;
      padding-right: 5%; } }
  .breadcrumbs > * {
    display: inline-block;
    color: #140E0C; }
    .breadcrumbs > *:first-child {
      display: inline-block; }
  .breadcrumbs a:after {
    content: ">";
    display: inline-block;
    margin: 0 5px; }

.pager {
  padding: 0;
  display: flex;
  justify-content: space-between;
  display: -webkit-flex;
  max-width: 1200px;
  margin: 60px auto 0;
  flex-wrap: nowrap;
  width: 100%; }
  @media screen and (max-width: 768px) {
    .pager {
      flex-wrap: wrap; } }
  .pager span,
  .pager a {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    padding: 10px;
    max-width: 33.33333%;
    min-width: 200px;
    position: relative;
    border: 1px solid #897a5a;
    background: #FFF;
    color: #140E0C;
    font-size: 14px; }
    @media screen and (max-width: 768px) {
      .pager span,
      .pager a {
        max-width: 100%;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        align-content: flex-start;
        margin: 10px 0; } }
    @media screen and (max-width: 768px) {
      .pager span#archive,
      .pager a#archive {
        display: none; } }
    .pager span#archive p,
    .pager a#archive p {
      justify-content: center;
      text-align: center; }
      .pager span#archive p:before, .pager span#archive p:after,
      .pager a#archive p:before,
      .pager a#archive p:after {
        display: none; }
    @media screen and (max-width: 768px) {
      .pager span:last-child,
      .pager a:last-child {
        flex-direction: column-reverse; } }
    .pager span:last-child p,
    .pager a:last-child p {
      justify-content: flex-end; }
      .pager span:last-child p:before,
      .pager a:last-child p:before {
        display: none; }
      .pager span:last-child p:after,
      .pager a:last-child p:after {
        margin-left: 15px;
        content: ">"; }
    .pager span p,
    .pager a p {
      display: flex;
      display: -webkit-flex;
      align-items: center;
      -webkit-align-items: center;
      width: 100%; }
      .pager span p:before,
      .pager a p:before {
        display: inline-block;
        margin-right: 15px;
        content: "<"; }

.sub {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", serif; }
  .sub header {
    border-bottom: 1px solid #EEE; }

.new_post_area {
  background: #F4F4F4;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Sawarabi Mincho", serif; }
  .new_post_area .outline, .new_post_area .news_outline {
    padding-left: 0;
    padding-right: 0; }

.bnr_area {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center; }

.new_post {
  display: flex;
  font-size: 14px; }
  .new_post > p {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    background: #202020;
    color: #FFF;
    padding: 5px 12px;
    width: 100px; }
    @media screen and (min-width: 769px) {
      .new_post > p {
        width: 80px; } }
  .new_post .new_post_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    width: 100%;
    padding: 10px; }
    @media screen and (min-width: 769px) {
      .new_post .new_post_content {
        padding: 0 10px;
        flex-wrap: nowrap; } }

.cat_area {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  white-space: nowrap;
  width: 100%;
  font-size: 14px; }
  @media screen and (min-width: 769px) {
    .cat_area {
      width: auto;
      margin-right: 10px; } }
  _:-ms-fullscreen, :root .cat_area {
    min-width: 200px; }
  .cat_area time {
    display: inline-block;
    color: #202020;
    margin-right: 20px;
    white-space: nowrap; }
  .cat_area .cat {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    background: #897a5a;
    font-size: 12px;
    padding: 5px 8px;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
    color: #FFF;
    margin-right: 10px; }
    .cat_area .cat:hover {
      opacity: .7; }
  .cat_area + a {
    display: block;
    width: 100%;
    color: #140E0C;
    padding: 10px 0 20px; }
    @media screen and (min-width: 769px) {
      .cat_area + a {
        padding: 0; } }

.single h1 {
  margin: 70px auto 20px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-size: 24px; }
  @media screen and (min-width: 769px) {
    .single h1 {
      font-size: 35px; } }
.single .detail_content {
  background: #f9f6f3; }

.related_articles {
  background: #f9f6f3; }
  .related_articles h2 {
    margin-bottom: 20px; }
  .related_articles .archive_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    @media screen and (max-width: 768px) {
      .related_articles .archive_list {
        flex-wrap: wrap; } }
    .related_articles .archive_list > * {
      width: calc(100% / 2 - 3%);
      margin: 0 0 20px; }
      @media screen and (min-width: 415px) and (max-width: 768px) {
        .related_articles .archive_list > * {
          width: calc(100% / 2 - 3%);
          margin: 0 0 20px; } }
      @media screen and (max-width: 414px) {
        .related_articles .archive_list > * {
          width: 100%;
          margin: 0 0 20px; } }
    .related_articles .archive_list > div {
      display: block;
      padding: 0; }
      .related_articles .archive_list > div > a {
        padding: 10px 0 20px; }

.sns_area {
  margin: 60px auto 0;
  background: #FFF;
  max-width: 600px;
  width: 100%;
  padding: 15px; }
  .sns_area > p {
    font-size: 18px;
    margin-bottom: 5px;
    text-align: center;
    font-weight: bold; }
  .sns_area > div {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center; }
    .sns_area > div .fb-like {
      display: flex;
      justify-content: center;
      align-content: center;
      align-items: center;
      margin: 10px 25px; }
      .sns_area > div .fb-like span {
        vertical-align: middle !important; }
    .sns_area > div > a {
      margin: 10px 25px;
      font-size: 35px; }

#fine-art-sec .cv_area {
  padding: 40px 15px;
  background: #FFF; }
  @media screen and (min-width: 769px) {
    #fine-art-sec .cv_area {
      padding: 50px; } }
  #fine-art-sec .cv_area div h2 {
    text-align: center;
    margin-top: 0; }
    @media screen and (min-width: 769px) {
      #fine-art-sec .cv_area div h2 {
        text-align: left;
        display: flex;
        flex-direction: column-reverse; }
        #fine-art-sec .cv_area div h2 span {
          margin: 20px 0; } }
  #fine-art-sec .cv_area .btn {
    display: none; }

.cv_area {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap; }
  @media screen and (min-width: 769px) {
    .cv_area {
      flex-wrap: nowrap; } }
  .cv_area figure {
    width: 340px;
    font-size: 10px;
    margin: auto; }
    @media screen and (min-width: 769px) {
      .cv_area figure {
        width: 225px; } }
    .cv_area figure img {
      display: block;
      width: auto;
      height: auto;
      margin: auto; }
    .cv_area figure figcaption {
      text-align: left;
      font-family: -apple-system, "Hiragino Kaku Gothic ProN", "Noto Sans Japanese", sans-serif; }
  .cv_area > figure {
    display: none; }
    @media screen and (min-width: 769px) {
      .cv_area > figure {
        display: block;
        margin-right: 40px; } }
  .cv_area > div {
    width: 100%; }
    @media screen and (min-width: 769px) {
      .cv_area > div {
        width: calc(100% -  250px); } }
    .cv_area > div > figure {
      display: block;
      margin-bottom: 20px; }
      @media screen and (min-width: 769px) {
        .cv_area > div > figure {
          display: none; } }
    .cv_area > div h2 {
      font-size: 24px;
      line-height: 1.5;
      margin-bottom: 40px;
      text-align: center; }
      @media screen and (min-width: 769px) {
        .cv_area > div h2 {
          font-size: 35px;
          text-align: left; } }
      .cv_area > div h2 span {
        display: block;
        font-size: 15px;
        color: #897a5a; }
    .cv_area > div p {
      font-size: 15px;
      font-family: -apple-system, "Hiragino Kaku Gothic ProN", "Noto Sans Japanese", sans-serif; }
    .cv_area > div .btn {
      margin: 30px auto 0;
      padding: 18px 15px 18px;
      line-height: 1.4;
      font-size: 2.0rem;
      max-width: 555px; }

.archive {
  margin-bottom: 80px; }
  .archive h1 {
    margin: 70px auto 40px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-size: 24px; }
    @media screen and (min-width: 769px) {
      .archive h1 {
        font-size: 35px; } }
  .archive .btn {
    margin: 0 auto 0;
    padding: 18px 15px 18px;
    line-height: 1.4;
    font-size: 2.0rem;
    max-width: 555px; }

.archive_list {
  margin-bottom: 50px; }
  .archive_list > div {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px dashed #CCC;
    padding: 20px 0 0;
    width: 100%; }
    @media screen and (min-width: 769px) {
      .archive_list > div {
        flex-wrap: nowrap;
        padding: 20px 0; } }

.more_list > div {
  display: none; }
  .more_list > div.on {
    display: flex; }

.news_title {
  text-align: center; }

.news_outline {
  max-width: 800px;
  font-size: 1.7rem; }
  .news_outline h2, .news_outline h3, .news_outline h4 {
    font-weight: bold; }
  .news_outline p {
    margin-bottom: 20px; }
  .news_outline ul {
    list-style: disc;
    margin-left: 1em; }
  .news_outline .btn.short {
    margin: 20px auto;
    max-width: 550px;
    padding: 18px 15px;
    line-height: 1.4;
    font-size: 2.0rem; }

/*# sourceMappingURL=common.css.map */
