@charset "UTF-8";
/* Scss Document
*****************************************************************/
/* reset
**********************************************************************/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html {
  font-size: 62.5%;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  color: #FFF;
  background-color: #000;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1em;
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}

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

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* setting
**********************************************************************/
/* mixin
*********************************************************************/
/* web fonts */
/* media query */
.flex, #renewal ul li:nth-child(odd) {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}

.flex_bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-align: end;
  -moz-box-align: end;
  -ms-box-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
}

.flex_between, #renewal ul li .area_txt .block_txt .list_img ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-pack: justify;
  -moz-flex-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.flex_wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex_center {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -webkit-flex-pack: center;
  -moz-flex-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}

.flex_center_wrap, .block_staff ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -webkit-flex-pack: center;
  -moz-flex-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}

.flex_right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -webkit-flex-pack: end;
  -moz-flex-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}

.flex_between_wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex_reverse, #renewal ul li:nth-child(even) {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-direction: reverse;
  -moz-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex_reverse_between {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-direction: reverse;
  -moz-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.flex_right_bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -webkit-flex-pack: end;
  -moz-flex-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -moz-box-align: end;
  -ms-box-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
}

.fade, a {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
}

.cover_w {
  position: relative;
  width: 100%;
  height: auto;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cover_h {
  position: relative;
  width: auto;
  height: 100%;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.glow {
  text-shadow: 0px 0px 10px #ffffff, 0px 0px 10px #ffffff, 0px 0px 10px #ffffff, 0px 0px 10px #ffffff, 0px 0px 10px #ffffff, 0px 0px 8px #ffffff, 0px 0px 8px #ffffff, 0px 0px 8px #ffffff, 0px 0px 4px #ffffff, 0px 0px 4px #ffffff, 0px 0px 4px #ffffff;
}

.shadow {
  text-shadow: 0px 0px 10px #000, 0px 0px 8px #000;
}

/* mixin
*********************************************************************/
/* web fonts */
/* media query */
/* module
*****************************************************************/
#wrapper {
  position: relative;
}

i {
  margin: 0 2px 0 0;
}

@media all and (max-width: 768px) {
  .pconly {
    display: none;
  }
}

.sponly {
  display: none;
}
@media all and (max-width: 768px) {
  .sponly {
    display: block;
  }
}

.poonly {
  display: none;
}
@media all and (max-width: 494px) {
  .poonly {
    display: block;
  }
}

a {
  color: #faf6cb;
  text-decoration: none;
  outline: none;
}
a:hover {
  color: #ededed;
}
a:hover img {
  opacity: 0.7;
}
a:active {
  color: #ededed;
  text-decoration: underline;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.clearfix {
  zoom: 1;
}

/* pagetop
---------------------------------------------------------------*/
#pagetop {
  position: fixed;
  right: 20px;
  bottom: 0;
  z-index: 4000;
}
#pagetop a {
  overflow: hidden;
  outline: none;
}
@media all and (max-width: 768px) {
  #pagetop {
    display: none;
  }
}

.grayout {
  opacity: 0.4;
  cursor: default;
}

/* header
-----------------------------------------------------------------*/
header {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 900;
}

.block_header {
  background-color: #000;
  position: relative;
  z-index: 1000;
  width: 100%;
}
.block_header .inner {
  margin: 0 auto;
  text-align: center;
  padding: 40px 10px;
}
@media all and (max-width: 768px) {
  .block_header .inner {
    padding: 12px 10px;
  }
  .block_header .inner p.top_head {
    height: 38px;
  }
  .block_header .inner p.top_head img {
    height: 100%;
    width: auto;
  }
  .block_header .inner nav {
    display: none;
  }
}

/* mobile menu
-----------------------------------------------------------------*/
.fixed .inner {
  position: fixed;
  top: -300px;
  transition: all 300ms 0s ease;
  z-index: 4000;
}

.down .inner {
  top: 0px;
  width: 100%;
  transform: translateY(0px);
}

.menu-btn {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 80px;
  height: 80px;
  line-height: 50px;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
  z-index: 3000;
  background: #5B0F13;
}
@media all and (max-width: 768px) {
  .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 38px;
    line-height: 50px;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
  }
}

.menu-btn p {
  color: white;
}

.menu-btn p:after {
  content: attr(data-txt-menu);
  position: absolute;
  top: 13px;
  left: 7px;
  font-size: 11px;
  display: none;
}

/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu-btn p:after {
  content: attr(data-txt-close);
  color: white;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 40px;
  height: 32px;
  right: 0px;
  top: 24px;
}
@media all and (max-width: 768px) {
  .menu-trigger {
    width: 26px;
    height: 19px;
    right: 0px;
    top: -2px;
  }
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: white;
}
@media all and (max-width: 768px) {
  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: white;
  }
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 14px;
}
@media all and (max-width: 768px) {
  .menu-trigger span:nth-of-type(2) {
    top: 8px;
  }
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.open .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(14px) rotate(-315deg);
  transform: translateY(14px) rotate(-315deg);
  background-color: white;
}
@media all and (max-width: 768px) {
  .open .menu-trigger span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-315deg);
    transform: translateY(8px) rotate(-315deg);
    background-color: white;
  }
}

.open .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}

.open .menu-trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-14px) rotate(315deg);
  transform: translateY(-14px) rotate(315deg);
  background-color: white;
}
@media all and (max-width: 768px) {
  .open .menu-trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(315deg);
    transform: translateY(-8px) rotate(315deg);
    background-color: white;
  }
}

.menu {
  position: fixed;
  z-index: 2000;
  display: table;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120%;
  background: rgba(0, 0, 0, 0.8);
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: hidden;
  opacity: 0;
}

.menu ul {
  display: table-cell;
  vertical-align: middle;
  padding: 0 0 150px;
}

.menu li {
  width: 100%;
  height: 50px;
  line-height: 1em;
  margin: 0 auto;
  text-align: center;
}

.menu li a {
  display: block;
  font-size: 18px;
  color: #fff;
}

.menu li a:hover {
  color: #999;
}

/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu {
  cursor: url(../images/cross.svg), auto;
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: visible;
  opacity: 1;
  z-index: 999;
}

/*  footer
---------------------------------------------------------------*/
.footer_area {
  padding: 60px 10px 120px;
  text-align: center;
  border-top: #CCC solid 1px;
}
.footer_area h2 {
  font-size: 3.5rem;
  line-height: 1.2em;
}
.footer_area address {
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1.4em;
  padding: 10px 0 0;
}
.footer_area .copyright {
  padding: 30px 0 0;
  font-size: 1.6rem;
  line-height: 1.2em;
}
@media all and (max-width: 768px) {
  .footer_area {
    padding: 30px 10px 30px;
  }
  .footer_area h2 {
    font-size: 2rem;
  }
  .footer_area h2 img {
    width: 70%;
    max-width: 384px;
    height: auto;
  }
}

/* other
---------------------------------------------------------------*/
.visual_header {
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 700;
}
.visual_header h1 {
  position: absolute;
  width: 100%;
  line-height: 1.3em;
  font-size: 3rem;
  font-weight: 100;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media all and (max-width: 768px) {
  .visual_header h1 {
    font-size: 2.5rem;
  }
}

.copy_header {
  text-align: center;
  padding: 24px 0 0;
}
.copy_header h2 {
  font-size: 3rem;
  line-height: 1.2em;
  font-weight: 100;
}
.copy_header p {
  padding: 10px 0 0;
  font-size: 2rem;
  line-height: 1.4em;
}
@media all and (max-width: 768px) {
  .copy_header {
    padding: 20px 10px 20px;
    text-align: left;
  }
  .copy_header h2 {
    font-size: 2rem;
    line-height: 1.4em;
  }
  .copy_header p {
    font-size: 1.6rem;
  }
}

#renewal {
  padding: 20px 0;
}
#renewal ul li .area_txt {
  width: 50%;
}
#renewal ul li .area_txt .block_txt {
  display: inline-block;
  text-align: left;
  width: 73%;
  position: relative;
}
#renewal ul li .area_txt .block_txt .box_ttl {
  padding: 40px 0 8px;
  position: relative;
}
#renewal ul li .area_txt .block_txt .box_ttl p {
  line-height: 1.2em;
  font-size: 2.3rem;
  padding: 0 0 12px;
}
#renewal ul li .area_txt .block_txt .box_ttl p span {
  font-size: 5rem;
  font-family: "Noto Sans Japanese";
  font-weight: 100;
  display: inline-block;
  padding: 0 0 0 8px;
}
#renewal ul li .area_txt .block_txt .box_ttl h2 {
  font-size: 2.5rem;
  line-height: 1.3em;
  padding: 12px 0 10px;
  font-weight: 100;
  border-top: #ccc dotted 1px;
  border-bottom: #CCC dotted 1px;
}
#renewal ul li .area_txt .block_txt .box_txt {
  padding: 8px 0 0;
}
#renewal ul li .area_txt .block_txt .box_txt p {
  font-size: 1.6rem;
  line-height: 2em;
}
#renewal ul li .area_txt .block_txt .list_img {
  padding: 10px 0 0;
}
#renewal ul li .area_txt .block_txt .list_img ul li {
  width: 31%;
}
#renewal ul li .area_txt .block_txt .list_img ul li .box_img_s img {
  width: 100%;
  height: auto;
}
#renewal ul li .area_img {
  width: 50%;
}
#renewal ul li .area_img .block_img {
  height: 55vh;
  line-height: 0em;
}
#renewal ul li:nth-child(odd) .area_txt {
  text-align: left;
}
#renewal ul li:nth-child(odd) .area_txt .block_txt {
  margin: 0 0 0 1.8vw;
}
#renewal ul li:nth-child(even) .area_txt {
  text-align: right;
}
#renewal ul li:nth-child(even) .area_txt .block_txt {
  margin: 0 1.8vw 0 0;
}
@media all and (max-width: 1024px) {
  #renewal ul li .area_txt .block_txt {
    width: auto;
  }
  #renewal ul li:nth-child(odd) .area_txt .block_txt {
    margin: 0 1.5vw 0 1.5vw;
  }
  #renewal ul li:nth-child(even) .area_txt {
    margin: 0 1.5vw 0 1.5vw;
  }
}
@media all and (max-width: 768px) {
  #renewal ul li .area_txt .block_txt .box_ttl {
    padding: 10px 0 8px;
  }
  #renewal ul li .area_txt .block_txt .box_ttl h2 {
    font-size: 2rem;
  }
  #renewal ul li .area_txt .block_txt .box_ttl p {
    font-size: 1.8rem;
  }
  #renewal ul li .area_txt .block_txt .box_ttl p span {
    font-size: 3rem;
  }
  #renewal ul li .area_txt .block_txt .box_txt p {
    line-height: 1.6em;
  }
}
@media all and (max-width: 494px) {
  #renewal {
    padding: 15px 0;
  }
  #renewal ul li {
    padding: 15px 0;
  }
  #renewal ul li .area_txt {
    width: auto;
    padding: 0px 10px 10px;
  }
  #renewal ul li .area_txt .block_txt .maru_open {
    top: 0px;
  }
  #renewal ul li .area_img {
    width: 100%;
  }
  #renewal ul li .area_img .block_img {
    height: 40vh;
  }
  #renewal ul li .area_img .block_img .seg_img {
    height: 40vh;
  }
  #renewal ul li:nth-child(odd) {
    display: block;
  }
  #renewal ul li:nth-child(even) {
    display: block;
  }
}

.area_staff {
  padding: 80px 10px;
}

.block_staff {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-top: #CCC dotted 1px;
  padding: 10px 0 0;
}
.block_staff ul li {
  width: calc(100%/3);
}
.block_staff ul li .inner {
  padding: 7%;
  display: table;
}
.block_staff ul li .inner .box_logo {
  width: 100%;
  height: 153px;
  text-align: center;
}
.block_staff ul li .inner .box_logo img {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: 90%;
  height: auto;
}
.block_staff ul li .inner .box_img {
  width: 100%;
  padding: 16px 0 0;
}
.block_staff ul li .inner .box_img img {
  width: 100%;
  height: auto;
}
.block_staff ul li .inner .box_txt h3 {
  padding: 16px 0 0;
  font-size: 2rem;
  line-height: 1.2em;
  font-weight: 100;
  text-align: center;
}
.block_staff ul li .inner .box_txt p {
  font-size: 1.6rem;
  line-height: 1.5em;
  padding: 10px 0 0;
}
@media all and (max-width: 494px) {
  .block_staff ul li {
    width: 100%;
  }
  .block_staff ul li .inner .box_logo {
    height: auto;
  }
  .block_staff ul li .inner .box_logo img {
    top: auto;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
  .block_staff ul li .inner .box_txt h3 {
    font-size: 1.8rem;
  }
  .block_staff ul li .inner .box_txt p {
    font-size: 1.5rem;
  }
}
