@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300&family=Roboto&family=Shippori+Mincho&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://use.typekit.net/awd6dmh.css");
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

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

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

li {
  list-style: none;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
textarea,
select {
  *font-size: 100%;
}

.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

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

img {
  vertical-align: bottom;
}

a[href],
label[for],
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="image"],
input[type="radio"],
input[type="checkbox"],
select {
  cursor: pointer;
}

a[href^="tel:"] {
  cursor: default;
}

/*-------------------------
  ROLL OVER
-------------------------*/
.ro {
  transition: all 0.25s linear;
}

.ro:hover {
  opacity: .8;
  transition: all 0.25s linear;
}

.ro:hover img {
  opacity: 1;
}

.ro a:hover, .ro a:hover img {
  transition: none;
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .ro:hover,
  .ro a:hover,
  .ro a:hover img {
    opacity: 1;
  }
}

/*-------------------------
  pcCont/spCont
-------------------------*/
.sp, .spCont {
  display: none;
}

@media only screen and (max-width: 767px) {
  .pc, .pcCont {
    display: none;
  }
  .sp, .spCont {
    display: block;
  }
}

/*-------------------------
  COMMONS
-------------------------*/
.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.f_left {
  float: left;
}

.f_right {
  float: right;
}

.clear {
  clear: both;
}

button {
  cursor: pointer;
  outline: none;
}

.fBox {
  display: flex;
}

svg {
  fill: currentColor;
}

.preload * {
  transition: none !important;
}

.ofi {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.ac_btn:hover {
  cursor: pointer;
}

/* chrome opera */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  body {
    image-rendering: -webkit-optimize-contrast;
  }
}

.slider {
  opacity: 0;
  transition: opacity .3s linear;
}

.slider.slick-initialized {
  opacity: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■setting
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
html {
  font-size: 62.5%;
}

body {
  position: relative;
  background: white;
  font-family: "Shippori Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", serif;
  font-weight: 400;
  color: #000;
  font-size: 1.4rem;
  line-height: 2.14286;
  /*letter-spacing: 0.05em;*/
  margin: 0 auto;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  word-break: normal;
  word-wrap: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  min-width: 1280px;
}

@media only screen and (max-width: 767px) {
  body {
    min-width: 320px;
    font-size: 1.2rem;
    line-height: 2.41667;
  }
}

body a.url {
  word-break: break-all;
}

body.fixed {
  position: fixed;
  left: 0;
  right: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: inherit;
}

.bold, strong {
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  a[href*="tel:"] {
    text-decoration: underline;
  }
}

#container {
  /*position:relative;
	overflow:hidden;*/
  z-index: 0;
  width: 100%;
  padding-top: 100px;
}

@media only screen and (max-width: 767px) {
  #container {
    padding-top: 60px;
  }
}

.contents {
  position: relative;
}

.innerWrap {
  max-width: 1000px;
  margin: 0 auto;
}

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■フェードイン
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50px);
  transition: 2s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■parts
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
a.blank {
  padding-right: 22px;
  background: url(../img/ico_blank.png) no-repeat right center;
  background-size: 14px auto;
  transition: all 0.25s linear;
}

a.blank:hover {
  opacity: .8;
  transition: all 0.25s linear;
}

@media only screen and (max-width: 767px) {
  a.blank {
    padding-right: 25px;
    background-size: 12px auto;
  }
}

/*-------------------------
  hd
-------------------------*/
.hd01 {
  text-align: center;
  font-family: cormorant-garamond, serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  font-feature-settings: normal;
  font-size: 4.8rem;
  line-height: 1.3;
  padding-bottom: 24px;
  position: relative;
  margin-bottom: 30px;
  /*白色*/
}

@media only screen and (max-width: 767px) {
  .hd01 {
    font-size: 3.8rem;
    padding-bottom: 19px;
    margin-bottom: 25px;
  }
}

.hd01:after {
  content: "";
  display: block;
  width: 50px;
  height: 5px;
  background: #AFBE22;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -25px;
}

@media only screen and (max-width: 767px) {
  .hd01:after {
    width: 40px;
    height: 4px;
    margin-left: -20px;
  }
}

.hd01.c_w {
  color: #fff;
}

.hd02 {
  text-align: center;
  font-size: 3.2rem;
  border-bottom: 1px solid #C9CACA;
  line-height: 1.5;
  padding-bottom: 17px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .hd02 {
    font-size: 2.2rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}

.hd03 {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.3;
  padding-bottom: 27px;
  position: relative;
  margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
  .hd03 {
    font-size: 1.9rem;
    margin-bottom: 15px;
  }
}

.hd03:after {
  content: "";
  display: block;
  width: 50px;
  height: 5px;
  background: #AFBE22;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -25px;
}

@media only screen and (max-width: 767px) {
  .hd03:after {
    width: 40px;
    height: 4px;
    margin-left: -20px;
  }
}

.hd04 {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 18px;
}

@media only screen and (max-width: 767px) {
  .hd04 {
    font-size: 1.9rem;
    margin-bottom: 20px;
  }
}

/*-------------------------
  btn
-------------------------*/
.btn01 {
  line-height: 1;
}

.btn01 .wrap {
  display: block;
  width: 220px;
  height: 40px;
  background: url(../img/ico_arrow01_g.png) no-repeat right 18px center rgba(255, 255, 255, 0.8);
  background-size: auto 7px;
  padding: 13px 52px 0 16px;
  transition: all 0.25s linear;
}

@media only screen and (max-width: 767px) {
  .btn01 .wrap {
    width: 155px;
    height: 30px;
    background-position: right 12px center;
    background-size: auto 4px;
    padding: 6px 38px 0 10px;
  }
  .btn01 .wrap img {
    width: auto;
    height: 6px;
  }
}

@media only screen and (min-width: 768px) {
  .btn01 .wrap:hover {
    background-position: right 13px center;
  }
}

.btn02 {
  text-align: center;
  line-height: 1;
  padding: 24px 0;
  position: relative;
  /*白色*/
}

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

.btn02:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #000;
  position: absolute;
  left: 50%;
  top: 0;
}

.btn02 .wrap {
  width: 384px;
  height: 32px;
  margin: 0 auto;
  border: 1px solid #000;
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .btn02 .wrap {
    width: 308px;
    height: 27px;
  }
}

@media only screen and (max-width: 340px) {
  .btn02 .wrap {
    width: 280px;
  }
}

.btn02 .wrap p {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: cormorant-garamond, serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  font-feature-settings: normal;
}

.btn02 .wrap .ttl {
  color: #fff;
  background: #000;
  font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
  .btn02 .wrap .ttl {
    font-size: 1.3rem;
  }
}

.btn02 .wrap .more {
  background: url(../img/ico_arrow01_b.png) no-repeat right 12px center;
  background-size: auto 7px;
  padding: 0 52px 0 10px;
  font-size: 2rem;
  z-index: 0;
  overflow: hidden;
  transition: all 0.25s linear;
}

@media only screen and (max-width: 767px) {
  .btn02 .wrap .more {
    background-size: auto 6px;
    background-position: right 9px center;
    font-size: 1.6rem;
    padding: 0 40px 0 5px;
  }
}

.btn02 .wrap .more:before {
  content: "";
  display: block;
  background: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: -1;
  transition: all 0.25s linear;
}

.btn02 .wrap:hover .more {
  color: #fff;
}

.btn02 .wrap:hover .more:before {
  left: 0;
}

.btn02.c_w:after {
  background: #fff;
}

.btn02.c_w .wrap {
  border-color: #fff;
}

.btn02.c_w .wrap .ttl {
  color: #000;
  background: #fff;
}

.btn02.c_w .wrap .more {
  background-image: url(../img/ico_arrow01_w.png);
  color: #fff;
}

.btn02.c_w .wrap .more:before {
  background: #fff;
}

.btn02.c_w .wrap:hover .more {
  color: #000;
}

.btn03 .wrap {
  background: url(../img/ico_arrow02.png) no-repeat right 15px center;
  background-size: 10px auto;
  border: 1px solid #000;
  line-height: 1.3;
  min-width: 288px;
  min-height: 62px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 30px;
  font-size: 1.8rem;
  transition: all 0.25s linear;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

@media only screen and (max-width: 340px) {
  .btn03 .wrap {
    min-width: inherit;
    width: 100%;
  }
}

.btn03 .wrap:before {
  content: "";
  display: block;
  background: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: -1;
  opacity: 0.02;
  transition: all 0.25s linear;
}

.btn03 .wrap:hover {
  background-position: right 10px center;
}

.btn03 .wrap:hover:before {
  left: 0;
}

.btn04 {
  text-align: center;
}

.btn04 a, .btn04 button {
  background: #AFBE22;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.014em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
  font-weight: 500;
  font-weight: 700;
  width: 200px;
  height: 60px;
  transition: all 0.25s linear;
}

@media only screen and (max-width: 767px) {
  .btn04 a, .btn04 button {
    font-weight: normal;
  }
}

@media all and (-ms-high-contrast: none) {
  .btn04 a, .btn04 button {
    font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
    font-weight: 400;
  }
}

.btn04 a:hover, .btn04 button:hover {
  opacity: .8;
  transition: all 0.25s linear;
}

@media only screen and (max-width: 767px) {
  .btn04 a, .btn04 button {
    font-size: 1.6rem;
    width: 160px;
    height: 48px;
  }
}

/*-------------------------
catch
-------------------------*/
.catch01 {
  text-align: center;
  font-size: 2.8rem;
  letter-spacing: -0.1em;
  line-height: 1.71429;
  margin-bottom: 20px;
  /*白色*/
}

@media only screen and (max-width: 767px) {
  .catch01 {
    font-size: 2.2rem;
    line-height: 1.72727;
    margin-bottom: 13px;
  }
}

.catch01.c_w {
  color: #fff;
}

.catch01.eng {
  letter-spacing: 0em;
}


/*-------------------------
txt
-------------------------*/
.g_txt {
  column-count: 2;
  grid-column-gap: 40px;
}

@media only screen and (max-width: 767px) {
  .g_txt {
    column-count: 1;
  }
}

/*-------------------------
block
-------------------------*/
.block01 .innerWrap {
  border-top: 1px solid #AFBE22;
  padding-top: 96px;
}

@media only screen and (max-width: 767px) {
  .block01 .innerWrap {
    padding-top: 45px;
    padding-left: 0;
    padding-right: 0;
    margin-left: 25px;
    margin-right: 25px;
  }
}

.block01 .inner {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .block01 .inner {
    display: block;
  }
}

.block01 .catch01 {
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .block01 .catch01 {
    margin-bottom: 25px;
  }
}

.block01 .img {
  width: 480px;
}

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

.block01 .img img {
  width: 100%;
  height: auto;
}

.block01 .txt_area {
  width: 480px;
}

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

@media only screen and (max-width: 767px) {
  .block01 .img + .txt_area,
  .block01 .txt_area + .img {
    margin-top: 10px;
  }
}

.block01 + .block01 {
  margin-top: 93px;
}

@media only screen and (max-width: 767px) {
  .block01 + .block01 {
    margin-top: 47px;
  }
}

.block02 .box_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: -75px;
}

@media only screen and (max-width: 767px) {
  .block02 .box_list {
    margin-bottom: -25px;
  }
}

.block02 .box_list li {
  width: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 75px;
}

@media only screen and (max-width: 767px) {
  .block02 .box_list li {
    margin-bottom: 25px;
  }
}

.block02 .box_list .img {
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .block02 .box_list .img {
    margin-top: 15px;
  }
}

.block02 .box_list .img img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .block02 .box_list .txt {
    line-height: 1.84;
  }
}

.block02 .type02 .img {
  margin-left: -25px;
  margin-right: -25px;
}

/*-------------------------
list
-------------------------*/
ul.kome li,
ol.kome li {
  text-indent: -1em;
  padding-left: 1em;
}

ul.indent_15 li,
ol.indent_15 li {
  text-indent: -1.5em;
  padding-left: 1.5em;
}

/*-------------------------
img_list
-------------------------*/
.img_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: -25px;
}

@media only screen and (max-width: 767px) {
  .img_list {
    margin-bottom: -10px;
  }
}

.img_list:before, .img_list:after {
  content: "";
  display: block;
  width: 240px;
}

@media only screen and (max-width: 767px) {
  .img_list:before, .img_list:after {
    content: none;
  }
}

.img_list:before {
  order: 1;
}

.img_list li {
  width: 240px;
  text-align: center;
  margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
  .img_list li {
    width: calc(50% - 5px);
    margin-bottom: 12px;
  }
}

.img_list .img {
  line-height: 1;
  margin-bottom: 7px;
}

@media only screen and (max-width: 767px) {
  .img_list .img {
    margin-bottom: 6px;
  }
}

.img_list .img img {
  width: 100%;
  height: auto;
}

.img_list .name {
  font-size: 1.7rem;
  line-height: 1.38889;
}

@media only screen and (max-width: 767px) {
  .img_list .name {
    font-size: 1.4rem;
  }
}

.img_list .name .small {
  font-size: 1.4rem;
}

@media only screen and (max-width: 767px) {
  .img_list .name .small {
    font-size: 1.1rem;
  }
}

@media only screen and (max-width: 767px) {
  .innerWrap .img_list {
    margin-left: -25px;
    margin-right: -25px;
  }
}

/*-------------------------
table_list
-------------------------*/
.table_list li {
  display: flex;
  font-size: 1.6rem;
  line-height: 1.625;
  padding: 17px 0;
  background: #F3F2ED;
}

@media only screen and (max-width: 767px) {
  .table_list li {
    font-size: 1.3rem;
    padding: 13px 0;
  }
}

.table_list li:nth-of-type(2n) {
  background: #fafafa;
}

.table_list .ttl_area {
  width: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 10px;
}

@media only screen and (max-width: 767px) {
  .table_list .ttl_area {
    width: 130px;
  }
}

.table_list .ttl_area:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #AFBE22;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -4px;
}

@media only screen and (max-width: 767px) {
  .table_list .ttl_area:after {
    width: 6px;
    height: 6px;
    margin-top: -3px;
  }
}

.table_list .txt_area {
  width: calc(100% - 170px);
  padding-left: 44px;
  padding-right: 15px;
}

@media only screen and (max-width: 767px) {
  .table_list .txt_area {
    width: calc(100% - 130px);
    padding-left: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .innerWrap .table_list {
    margin-left: -25px;
    margin-right: -25px;
  }
}

/*-------------------------
sp_scroll
-------------------------*/
@media only screen and (max-width: 767px) {
  .sp_scroll:before {
    content: "▼スクロールをしてご確認ください。";
    display: block;
    margin-bottom: 5px;
  }
  .sp_scroll .scroll_area {
    overflow-x: auto;
  }
  .sp_scroll table {
    width: 700px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ナビ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav_area {
  line-height: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav_area nav {
  /*padding-top: 26px;*/
}

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

.nav_area nav ul {
  display: flex;
}

.nav_area nav ul li {
  width: 120px;
  text-align: center;
  position: relative;
}

.nav_area nav ul li:after {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background: #AFBE22;
  position: absolute;
  top: 0;
  right: 0;
}

.nav_area nav ul li:last-of-type {
  border-right: none;
}

.nav_area nav ul li a {
  display: block;
  font-family: cormorant-garamond, serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  font-feature-settings: normal;
  padding-top: 2px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■header
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#header {
  background: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-width: 1280px;
  z-index: 1000;
}

@media only screen and (max-width: 767px) {
  #header {
    min-width: inherit;
  }
}

#header .nav_area {
    height: 100px;
    /*padding: 35px 0 0 45px;*/
    padding: 0 0 0 0;
    max-width: 1280px;
    margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  #header .nav_area {
    display: block;
    height: 60px;
    padding: 11px 0 0 15px;
    position: relative;
  }
}

#header .nav_area li {
  height: 20px;
  overflow: hidden;
}

#header .nav_area li a {
  height: 40px;
  position: relative;
  transition: all 0.25s linear;
}

#header .nav_area li a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: block;
  line-height: 1;
  content: attr(data-item);
  height: 20px;
  font-family: "Shippori Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", serif;
  font-weight: 400;
}

#header .nav_area li a:hover {
  margin-top: -20px;
}

@media only screen and (max-width: 767px) {
  #header .nav_area .logo img {
    width: auto;
    height: 32px;
  }
}

/* sns_nav
======================================================================*/
/*.nav_wrap {}*/

#header .nav_area .sns_nav {
    width: 100%;
    transition: all 0.3s linear;
    overflow: hidden;
    font-family: "Roboto", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
    margin-bottom: 16px;
}

@media only screen and (max-width: 767px) {
#header .nav_area .sns_nav {
    display: none;
}
}

#header .nav_area .sns_nav ul {
    float: right;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#header .nav_area .sns_nav li {
    font-size: 1.4rem;
    font-weight: 500;
    margin-left: 20px;
    height: auto;
}

#header .nav_area .sns_nav li a {
    height: auto;
    transition: all 0.3s linear;
}

#header .nav_area .sns_nav li a:hover {
  opacity: 0.6;
}

#header .nav_area .sns_nav li img{
    vertical-align: middle;
}

#header .nav_area .sns_nav li.newsletter {
    border-bottom: 1px solid #000000;
}

#header .nav_area .sns_nav li.newsletter a{
    padding-right: 10px;
}

#header .nav_area .sns_nav li.newsletter a img{
    margin-right: 10px;
}

#header .nav_area .sns_nav li.lang-jp {
    border-right: 1px solid #939d56;
}
#header .nav_area .sns_nav li.lang-en {
    margin-left: 0;
}

#header .nav_area .sns_nav li.lang-jp a,
#header .nav_area .sns_nav li.lang-en a{
    padding: 0 10px;
}

#header .nav_area .sns_nav li.lang-en.soon {
    padding: 0 10px;
    opacity: 0.5;
}

/* home処理 */

#header .nav_area .sns_nav li.lang-jp,
#header .nav_area .sns_nav li.lang-en {
    display: none;
}

.home #header .nav_area .sns_nav li.lang-jp,
.home #header .nav_area .sns_nav li.lang-en {
    display: block;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■footer
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#footer {
  padding: 110px 0 30px;
  max-width: 1280px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  #footer {
    padding: 75px 25px 13px;
    text-align: center;
  }
}

#footer p {
  padding-left: 45px;
}

@media only screen and (max-width: 767px) {
  #footer p {
    padding-left: 0;
  }
}

#footer .nav_area {
    /*margin-bottom: 63px;*/
    margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  #footer .nav_area {
    display: block;
  }
}

#footer .nav_area li a {
  transition: all 0.25s linear;
}

#footer .nav_area li a:hover {
  opacity: .8;
  transition: all 0.25s linear;
}

@media only screen and (max-width: 767px) {
  #footer .nav_area .logo img {
    width: auto;
    height: 40px;
    display: inline-block;
  }
}

#footer .address {
    /*line-height: 1.42857;*/
    line-height: 1.6;
}

#footer .address span{
  font-size: 1.7rem;
    display: block;
}

@media only screen and (max-width: 767px) {
  #footer .address {
    line-height: 1.5;
      margin-bottom: 30px;
  }
}

#footer .copyright {
  line-height: 1;
  text-align: right;
  padding: 9px 17px 0 0;
}

@media only screen and (max-width: 767px) {
  #footer .copyright {
    text-align: center;
    padding: 24px 0 0;
  }
}

/*** add_wrap ***/

.add_wrap{
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
.add_wrap{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
}

.ft_group{
    margin-top: auto;
}

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

.ft_group ul{
    display: flex;
	justify-content: flex-start; 
    align-items: stretch; 
}

@media only screen and (max-width: 767px) {
.ft_group ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
}
}

.ft_group li{
    display: flex;
    align-items: center; 
    border-right: 1px solid #808080;
    padding: 0 20px;
}

@media only screen and (max-width: 767px) {
.ft_group li{
    width: 100%;
    display: inline;
    text-align: center;
    border-right: none;
    padding: 0;
    margin-bottom: 10px;
}
}

#footer .ft_group li p{
    font-size: 1.2rem;
    line-height: 1.5;
    padding-left: 0;
}

@media only screen and (max-width: 767px) {
#footer .ft_group li p{
    text-align: center;
}
}

#footer .ft_group li p span{
    font-size: 1.7rem;
    display: block;
}

/*** ft_btm ***/

.ft_btm{
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #000000;
    padding: 10px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: cormorant-garamond, serif;
}
@media only screen and (max-width: 767px) {
.ft_btm{
    display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}
}

.ft_btm{
    margin-top: auto;
    font-size: 1.2rem;
     line-height: 1.4;
    color: #FFFFFF;
}

.ft_btm ul{
    display: flex;
	justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
.ft_btm ul{
    display: flex;
	justify-content: center;
    margin-bottom: 10px;
}
}

.ft_btm li{
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid #FFFFFF;
}

.ft_btm li:last-child{
    margin-right: 0;
    border-right: none;
}

.ft_btm li a{
    color: #FFFFFF;
    transition: all 0.3s linear;
}

.ft_btm li a:hover{
    opacity: 0.6;
}

.ft_btm p{
    text-align: center;
}

/* ft_navwrap
======================================================================*/

.ft_navwrap{
    width: 100%;
    padding: 0 0 80px;
    max-width: 1000px;
    margin: 0 auto;
}


/*** ft_Newsletter ***/

.ft_Newsletter{
    width: 100%;
    padding: 80px 30px 100px 30px;
    margin-bottom: 80px;
    border: 1px solid #B2B2B2;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
.ft_Newsletter{
    padding: 30px 15px 40px 15px;
    margin-bottom: 40px;
}
}

.ft_Newsletter h4{
    font-family: "Roboto", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
.ft_Newsletter h4{
    font-size: 2.0rem;
    margin-bottom: 20px;
}
}

.ft_Newsletter h4 span{
    display: block;
}

.ft_Newsletter p{
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
.ft_Newsletter p{
    font-size: 1.2rem;
    margin-bottom: 20px;
}
}

.ft_Newsletter form{
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.ft_Newsletter input[type="email"] {
    width: 270px;
    padding: 10px;
    font-size: 1.6rem;
    border: solid 1px #000000;
}
@media only screen and (max-width: 767px) {
.ft_Newsletter input[type="email"] {
    width: 200px;
    font-size: 1.2rem;
}
}

/*--focus--*/
.ft_Newsletter input[type="email"]:focus {
    background-color: #f4f4f4;
}

.ft_Newsletter button[type="submit"] {
    width: 190px;
    font-size: 1.4rem;
    padding: 11px 10px;
    color: #FFFFFF;
    background-color: #000000;
    border: solid 2px #000000;
    transition: all 0.3s linear;
}
@media only screen and (max-width: 767px) {
.ft_Newsletter button[type="submit"] {
    font-size: 1.1rem;
    padding: 4px 10px;
    border: solid 1px #000000;
    width: 120px;
}
}

.ft_Newsletter button[type="submit"]:hover {
    opacity: 0.6;
}


/*** sns_nav ***/

.ft_navwrap .sns_nav{
    width: 100%;
    margin-bottom: 30px;
}

.ft_navwrap .sns_nav ul{
    display: flex;
	justify-content: center;
}

.ft_navwrap .sns_nav li{
    margin: 0 10px;
}

/*** btn_contact ***/

.btn_contact {
  text-align: center;
  line-height: 1;
  padding: 24px 0;
  position: relative;
}

#sec_contact_form .btn_contact {
    margin-top: 60px;
}

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

.btn_contact .wrap {
  width: 400px;
  /*height: 44px;*/
    height: 56px;
  margin: 0 auto;
  border: 1px solid #000;
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .btn_contact .wrap {
    width: 308px;
    /*height: 32px;*/
      height: 46px;
  }
}

@media only screen and (max-width: 340px) {
  .btn_contact .wrap {
      width: 280px;
  }
}

#footer .btn_contact .wrap p,
#sec_contact_form .btn_contact .wrap p{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: cormorant-garamond, serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  font-feature-settings: normal;
    padding-left: 0;
}

.btn_contact .wrap .more {
  font-size: 2rem;
  z-index: 0;
  overflow: hidden;
  transition: all 0.25s linear;
}

@media only screen and (max-width: 767px) {
  .btn_contact .wrap .more {
    font-size: 1.6rem;
  }
}

.btn_contact .wrap .more:before {
  content: "";
  display: block;
  background: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: -1;
  transition: all 0.25s linear;
}

.btn_contact .wrap:hover .more {
  color: #fff;
}

.btn_contact .wrap:hover .more:before {
  left: 0;
}

.btn_contact p.privacy{
  text-align: center;
  margin-top: 20px;
    line-height: 1.4;
}

.btn_contact p.privacy span{
  font-size: 1.2rem;
    
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■pagetop
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#pagetop {
  display: block;
  text-align: center;
  width: 70px;
  margin: 0 auto;
  font-size: 2rem;
  font-family: cormorant-garamond, serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  font-feature-settings: normal;
  line-height: 1;
  padding-bottom: 24px;
  background: url(../img/pagetop.png) no-repeat center bottom;
  background-size: 36px auto;
  transition: all 0.25s linear;
  margin-bottom: 143px;
}

#pagetop:hover {
  opacity: .8;
  transition: all 0.25s linear;
}

@media only screen and (max-width: 767px) {
  #pagetop {
    background-size: 34px auto;
    margin-bottom: 89px;
  }
}

#pagetop:hover {
  cursor: pointer;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■ビジュアルボックス
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vs_box_area {
  padding: 100px 0;
  background: no-repeat center center;
  background-size: cover;
}

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

.vs_box_area .inner {
  background: rgba(0, 0, 0, 0.5);
  max-width: 1080px;
  margin: 0 auto;
  padding: 70px 25px 35px;
}

@media only screen and (max-width: 767px) {
  .vs_box_area .inner {
    padding: 55px 25px 28px;
  }
}

.vs_box_area .btn02 {
  margin-top: 50px;
}

@media only screen and (max-width: 767px) {
  .vs_box_area .btn02 {
    margin-top: 0;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■WORKSのビジュアルボックス
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#works_vs_box {
  margin-top: 108px;
}

@media only screen and (max-width: 767px) {
  #works_vs_box {
    margin-top: 55px;
  }
}

#works_vs_box .hd_area {
  text-align: center;
  margin-bottom: 105px;
}

@media only screen and (max-width: 767px) {
  #works_vs_box .hd_area {
    margin-bottom: 55px;
  }
}

#works_vs_box .hd_area .read_txt {
  font-size: 2.35rem;
  line-height: 1.57895;
  margin-bottom: 37px;
}

@media only screen and (max-width: 767px) {
  #works_vs_box .hd_area .read_txt {
    font-size: 1.9rem;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  #works_vs_box .hd_area .catch img {
    max-width: 100%;
    height: auto;
  }
}

#works_vs_box .vs_box_area {
  background-image: url(../img/f_works.jpg);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■footer_link
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#footer_link {
  margin: 120px 0 40px;
}

@media only screen and (max-width: 767px) {
  #footer_link {
    margin: 75px 0 0;
  }
}

#footer_link ul {
  display: flex;
}

@media only screen and (max-width: 767px) {
  #footer_link ul {
    display: block;
  }
}

#footer_link li {
  position: relative;
  flex-grow: 1;
}

#footer_link .img {
  height: 360px;
}

@media only screen and (max-width: 767px) {
  #footer_link .img {
    height: 220px;
  }
}

#footer_link .txt_area {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1;
  top: 0;
  padding-top: 15px;
}

@media only screen and (max-width: 767px) {
  #footer_link .txt_area {
    padding-top: 0;
  }
}

#footer_link .txt_area .en {
  color: #fff;
  font-family: cormorant-garamond, serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  font-feature-settings: normal;
  letter-spacing: 0.04em;
  font-size: 4.8rem;
  line-height: 1;
  margin-bottom: 6px;
}

@media only screen and (max-width: 767px) {
  #footer_link .txt_area .en {
    font-size: 3.8rem;
  }
}

#works_vs_box + #footer_link {
  margin-top: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■MENU
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.menuBtn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99999;
}

/*-------------------------
  spMenuBtn
-------------------------*/
#spMenuBtn {
  z-index: 99999;
  border: none;
  background-color: transparent;
  outline: none;
  /* &.open{
        .spMenuBtn_bar{
			@include spMenuBtn_bar_close;
        }
    }*/
  /*template*/
  width: 60px;
  height: 60px;
  padding: 19px 10px;
  display: none;
  /*&.open .spMenuBtn_bar{
        span,&:before,&:after{
			height: 2px;
			background-color: #fff;
        }
    }*/
}

#spMenuBtn .spMenuBtn_bar {
  position: relative;
}

#spMenuBtn .spMenuBtn_bar:before, #spMenuBtn .spMenuBtn_bar:after {
  content: '';
}

#spMenuBtn .spMenuBtn_bar span, #spMenuBtn .spMenuBtn_bar:before, #spMenuBtn .spMenuBtn_bar:after {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  margin: auto;
  transition: all 0.2s;
  transform-origin: 50% 50%;
}

#spMenuBtn .spMenuBtn_bar span {
  top: 0;
  bottom: 0;
}

#spMenuBtn .spMenuBtn_bar:before {
  top: 0;
}

#spMenuBtn .spMenuBtn_bar:after {
  bottom: 0;
}

@media only screen and (max-width: 767px) {
  #spMenuBtn {
    display: block;
  }
}

#spMenuBtn .spMenuBtn_bar {
  width: 40px;
  height: 22px;
}

#spMenuBtn .spMenuBtn_bar span, #spMenuBtn .spMenuBtn_bar:before, #spMenuBtn .spMenuBtn_bar:after {
  height: 3px;
  background-color: #AFBE22;
}

/*-------------------------
  spMenu
-------------------------*/
#spMenuOverlay {
  position: fixed;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  transform: translate3d(-100%, 0, 0);
  /* 右からイン */
  transition: all 0.25s ease-in-out;
  display: none;
}

#spMenuOverlay.open {
  transform: translate3d(0%, 0, 0);
}

#spMenu {
  opacity: 0;
  position: fixed;
  display: block;
  padding: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  width: 100%;
  padding: 0;
  transition: all 0.25s ease-in-out;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  text-align: center;
  line-height: 1;
  background: rgba(255, 255, 255, 0.95);
}

#spMenu.open {
  opacity: 1;
}

#spMenu.open {
  z-index: 5000;
  visibility: inherit;
}

#spMenu .spMenu_innerWrap {
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 0;
}

#spMenu .spMenu_inner {
  width: 100%;
  padding: 60px 25px 40px;
}

#spMenu .logo {
  line-height: 1;
  margin-bottom: 35px;
}

#spMenu ul {
  max-width: 206px;
  margin: 0 auto;
  margin-bottom: 30px;
}

#spMenu ul li {
  border-bottom: 1px solid #AFBE22;
}

#spMenu ul li a {
  display: block;
  padding: 16px 0;
}

#spMenu ul li span {
  display: block;
}

#spMenu ul li .en {
  font-family: cormorant-garamond, serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  font-feature-settings: normal;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

#spMenu .tel {
  font-family: cormorant-garamond, serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  font-feature-settings: normal;
  font-size: 2.3rem;
  letter-spacing: 0.04em;
}

#spMenu .tel a {
  text-decoration: none;
}

#closeBtn {
  position: absolute;
  top: 18px;
  right: 20px;
}


/* sns_nav
======================================================================*/
/*.nav_wrap {}*/

#spMenu  .sns_nav {
    width: 100%;
    overflow: hidden;
    font-family: "Roboto", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
}

#spMenu .sns_nav ul {
    max-width: 206px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#spMenu .sns_nav li {
    font-size: 1.4rem;
    font-weight: 500;
    margin: 32px 10px 0 10px;
    border-bottom: none;
}

#spMenu .sns_nav li a {
    transition: all 0.3s linear;
    padding: 0 0;
}

#spMenu .sns_nav li a:hover {
  opacity: 0.6;
}

#spMenu .sns_nav li img{
    vertical-align: middle;
}

#spMenu .sns_nav li.newsletter {
    border-bottom: 1px solid #000000;
}

#spMenu .sns_nav li.newsletter a{
    padding-right: 10px;
}

#spMenu .sns_nav li.newsletter a img{
    margin-right: 10px;
}

#spMenu .sns_nav li.lang-jp{
    border-right: 1px solid #939d56;
}

#spMenu .sns_nav li.lang-jp,
#spMenu .sns_nav li.lang-en{
    margin: 32px 0 0 0;
}

#spMenu .sns_nav li.lang-jp a,
#spMenu .sns_nav li.lang-en a{
    padding: 0 20px;
}

/* home処理 */

#spMenu .sns_nav ul.lang {
    display: none;
}

.home #spMenu .sns_nav ul.lang {
    display: flex;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■メイン
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#top_vs {
  position: relative;
  line-height: 1;
  margin-bottom: 90px;
}

@media only screen and (max-width: 767px) {
  #top_vs {
    margin-bottom: 54px;
  }
}

#top_vs .img {
  height: 600px;
}

@media only screen and (max-width: 767px) {
  #top_vs .img {
    height: 360px;
  }
}

#top_vs .copy {
  position: absolute;
  left: 50%;
  bottom: 95px;
  margin-left: -500px;
}

@media only screen and (max-width: 767px) {
  #top_vs .copy {
    width: 100%;
    text-align: center;
    left: 0;
    bottom: 25px;
    margin: 0;
  }
}

@media only screen and (max-width: 767px) {
  #top_vs .copy img {
    width: 340px;
    max-width: 100%;
    height: auto;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■画像なしトップ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#normal_hd {
  padding-top: 120px;
}

@media only screen and (max-width: 767px) {
  #normal_hd {
    padding-top: 65px;
  }
}

#normal_hd .intro_sec {
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  #normal_hd .intro_sec {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 768px) {
  #normal_hd .intro_sec .hd01 {
    margin-bottom: 100px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■intro_sec
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.intro_sec {
  margin-bottom: 100px;
}

@media only screen and (max-width: 767px) {
  .intro_sec {
    margin-bottom: 45px;
  }
}

.intro_sec .hd01 + .catch01 {
  padding-top: 60px;
}

@media only screen and (max-width: 767px) {
  .intro_sec .hd01 + .catch01 {
    padding-top: 19px;
  }
}

.intro_sec .g_txt {
  padding-top: 20px;
}

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

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

@media only screen and (max-width: 767px) {
  .intro_sec .txt {
    text-align: left;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■実績一覧
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#works_list_sec .box + .box {
  margin-top: 115px;
}

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

#works_list_sec .ttl_area {
  line-height: 1;
  text-align: center;
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  #works_list_sec .ttl_area {
    margin-bottom: 40px;
  }
}

#works_list_sec .ttl_area .ttl {
  border-bottom: 1px solid #000;
  padding-bottom: 15px;
  margin-bottom: 21px;
}

@media only screen and (max-width: 767px) {
  #works_list_sec .ttl_area .ttl {
    padding-bottom: 10px;
    margin: 0 -25px 15px;
  }
}

@media only screen and (max-width: 767px) {
  #works_list_sec .ttl_area .ttl img.spCont {
    display: inline-block;
  }
}

#works_list_sec .ttl_area .en {
  font-size: 1.8rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  letter-spacing: 0.12em;
}

@media only screen and (max-width: 767px) {
  #works_list_sec .ttl_area .en {
    font-size: 1.4rem;
    line-height: 1.35714;
  }
}

#works_list_sec .intro_area {
  margin-bottom: 35px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  #works_list_sec .intro_area {
    margin-bottom: 30px;
  }
}

#works_list_sec .intro_area .txt {
  line-height: 2.28571;
  /*letter-spacing: 0.03em;*/
}

@media only screen and (max-width: 767px) {
  #works_list_sec .intro_area .txt {
    text-align: left;
    line-height: 2.41667;
  }
}

#works_list_sec .img_area {
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  #works_list_sec .img_area {
    margin-bottom: 26px;
  }
}

#works_list_sec .img_area .top_img {
  margin-bottom: 43px;
}

@media only screen and (max-width: 767px) {
  #works_list_sec .img_area .top_img {
    margin-bottom: 20px;
  }
}

#works_list_sec .img_area .top_img .img {
  height: 1;
  transition: all 0.25s linear;
}

#works_list_sec .img_area .top_img .img:hover {
  opacity: .8;
  transition: all 0.25s linear;
}

@media only screen and (max-width: 767px) {
  #works_list_sec .img_area .top_img .img {
    height: 260px;
    margin-left: -25px;
    margin-right: -25px;
  }
}

@media only screen and (min-width: 768px) {
  #works_list_sec .img_area .top_img .img img {
    width: 100%;
    height: auto;
  }
}

#works_list_sec .img_area .top_img .name_area {
  text-align: center;
  letter-spacing: 0;
  line-height: 1.2;
  position: relative;
  padding-top: 86px;
  margin-top: -40px;
}

@media only screen and (max-width: 767px) {
  #works_list_sec .img_area .top_img .name_area {
    padding-top: 70px;
    margin-top: -32px;
  }
}

#works_list_sec .img_area .top_img .name_area:before {
  content: "";
  display: block;
  width: 1px;
  height: 80px;
  background: #000;
  position: absolute;
  left: 50%;
  top: 0;
  transition: all 0.25s linear;
}

@media only screen and (max-width: 767px) {
  #works_list_sec .img_area .top_img .name_area:before {
    height: 64px;
  }
}

#works_list_sec .img_area .top_img .name_area .sub {
  font-size: 1.2rem;
  margin-bottom: 7px;
}

@media only screen and (max-width: 767px) {
  #works_list_sec .img_area .top_img .name_area .sub {
    font-size: 1rem;
    margin-bottom: 2px;
  }
}

#works_list_sec .img_area .top_img .name_area .name {
  font-family: cormorant-garamond, serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  font-feature-settings: normal;
  font-size: 2.8rem;
}

@media only screen and (max-width: 767px) {
  #works_list_sec .img_area .top_img .name_area .name {
    font-size: 2.2rem;
  }
}

#works_list_sec .img_area a:hover .name_area:before {
  height: 0;
  top: 0;
}

#works_list_sec .img_area .sub_img {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  #works_list_sec .img_area .sub_img {
    display: block;
    max-width: 270px;
    margin: 0 auto 30px;
  }
}

@media only screen and (max-width: 767px) {
  #works_list_sec .img_area .sub_img li + li {
    margin-top: 20px;
  }
    #works_list_sec .img_area .sub_img li:first-child{
    border-right: none;
    }
}

#works_list_sec .img_area .sub_img li:first-child{
    border-right: 1px solid #FFFFFF;
}

#works_list_sec .img_area .sub_img img {
  width: auto;
  /*height: 319px;*/
    height: 320px;
}

@media only screen and (max-width: 767px) {
  #works_list_sec .img_area .sub_img img {
    width: 100%;
    height: auto;
  }
}

#works_list_sec .sub_ttl {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0;
  margin-bottom: 42px;
}

@media only screen and (max-width: 767px) {
  #works_list_sec .sub_ttl {
    font-size: 1rem;
    margin-bottom: 33px;
  }
}

#works_list_sec .btn02 .wrap .ttl {
  letter-spacing: 0.02em;
}

/*works_tab*/
#page_works .works_tab {
    margin-bottom: 60px;
}
#page_works .works_tab ul {
    display: flex;
	justify-content: center;
}
@media only screen and (max-width: 767px) {
#page_works .works_tab ul {
    flex-wrap: wrap;
}
}
#page_works .works_tab li a{
    display: block;
    margin: 0 0;
    padding: 0px 40px;
    border-right: 1px solid #000000;
    line-height: 1.3;
    font-size: 2.8rem;
}
@media only screen and (max-width: 767px) {
#page_works .works_tab li a{
    font-size: 1.4rem;
    padding: 0px 15px;
}
}




/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■トップ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.home #container {
  padding-top: 0;
}

body.home #header {
  position: sticky;
}

/*-------------------------
メイン
-------------------------*/
#page_index #main_vs {
  position: relative;
  height: 700px;
}

#page_index #main_vs h1 {
  background: rgba(255, 255, 255, 0.7);
  line-height: 1;
  width: 162px;
  height: 100%;
  padding-top: 48px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: 385px;
  z-index: 5;
}

@media only screen and (max-width: 767px) {
  #page_index #main_vs h1 {
    width: 109px;
    height: 400px;
    padding-top: 26px;
    left: auto;
    right: 0;
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  #page_index #main_vs h1 img {
    width: 61px;
    height: auto;
  }
}

/* eng */

#page_index #main_vs h1.eng {
  background: rgba(255, 255, 255, 0.7);
  line-height: 1;
  width: 534px;
  height: 268px;
  padding-top: 0px;
  text-align: center;
  position: absolute;
  left: auto;
    right: 0;
  top: 0;
  margin-left: 0px;
  z-index: 5;
    display: flex;
	flex-wrap: wrap;
	justify-content: center;
        align-items: center;
}

@media only screen and (max-width: 767px) {
  #page_index #main_vs h1.eng {
      width: 75%;
      height: 140px;
  }
}

@media only screen and (max-width: 767px) {
  #page_index #main_vs h1.eng img {
    width: 70%;
    height: auto;
  }
}


#page_index #main_vs .img {
  height: 700px;
}

#page_index #main_vs .img img {
  transform: scale(1.18);
}

#page_index #main_vs .txt_area {
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -500px;
  line-height: 1;
  font-family: cormorant-garamond, serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  font-feature-settings: normal;
}

@media only screen and (max-width: 767px) {
  #page_index #main_vs .txt_area {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
}

#page_index #main_vs .txt_area .inner {
  position: relative;
  padding: 20px 50px 0 0;
  min-width: 450px;
}

@media only screen and (max-width: 767px) {
  #page_index #main_vs .txt_area .inner {
    padding: 10px 20px 0;
    width: 100%;
    min-width: inherit;
  }
}

#page_index #main_vs .txt_area .inner:before, #page_index #main_vs .txt_area .inner:after {
  content: "";
  display: block;
  height: 100%;
  background-color: #999;
  position: absolute;
  bottom: 0;
}

@media only screen and (min-width: 768px) {
  #page_index #main_vs .txt_area .inner:before, #page_index #main_vs .txt_area .inner:after {
    mix-blend-mode: multiply;
  }
}

@media only screen and (max-width: 767px) {
  #page_index #main_vs .txt_area .inner:before, #page_index #main_vs .txt_area .inner:after {
    background: #000;
    opacity: 0.5;
  }
}

#page_index #main_vs .txt_area .inner:before {
  width: 100%;
  left: 0;
}

#page_index #main_vs .txt_area .inner:after {
  width: 2000px;
  left: -2000px;
}

@media only screen and (max-width: 767px) {
  #page_index #main_vs .txt_area .inner:after {
    content: none;
  }
}

#page_index #main_vs .txt_area .inner p {
  position: relative;
  z-index: 2;
}

#page_index #main_vs .txt_area .number {
  display: flex;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  #page_index #main_vs .txt_area .number {
    margin-bottom: 7px;
  }
}

#page_index #main_vs .txt_area .number .ttl {
  font-size: 1.8rem;
  padding-right: 15px;
  margin-right: 14px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  #page_index #main_vs .txt_area .number .ttl {
    font-size: 1.2rem;
    padding-right: 8px;
    margin-right: 8px;
  }
}

#page_index #main_vs .txt_area .number .ttl:after {
  content: "";
  display: block;
  width: 1px;
  height: 65px;
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 4px;
}

@media only screen and (max-width: 767px) {
  #page_index #main_vs .txt_area .number .ttl:after {
    height: 46px;
  }
}

#page_index #main_vs .txt_area .number .num {
  font-size: 1.6rem;
  font-family: "Shippori Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", serif;
  font-weight: 400;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  #page_index #main_vs .txt_area .number .num {
    font-size: 1.1rem;
  }
}

#page_index #main_vs .txt_area .name {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  #page_index #main_vs .txt_area .name {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
}

#page_index #main_vs .txt_area .day {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

@media only screen and (max-width: 767px) {
  #page_index #main_vs .txt_area .day {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
}

#page_index #main_vs .swiper-slide-active img,
#page_index #main_vs .swiper-slide-duplicate-active img,
#page_index #main_vs .swiper-slide-prev img {
  animation: zoomUp 10s linear 0s 1 normal both;
}

@keyframes zoomUp {
  0% {
    transform: scale(1.18);
  }
  100% {
    transform: scale(1);
  }
}

/*-------------------------
バナー
-------------------------*/
#page_index .bnr_sec {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 5px;
}

@media only screen and (max-width: 767px) {
  #page_index .bnr_sec {
    padding-top: 5px;
    padding-bottom: 0;
  }
}

#page_index .bnr_sec img {
  max-width: 100%;
  height: auto;
  transition: all 0.25s linear;
}

#page_index .bnr_sec img:hover {
  opacity: .8;
  transition: all 0.25s linear;
}

#page_index .bnr_sec li:not(:last-of-type) {
  margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
  #page_index .bnr_sec li:not(:last-of-type) {
    margin-bottom: 10px;
  }
}

/*-------------------------
NEWS & INFORMATION
-------------------------*/
#page_index #information_sec {
  padding-top: 55px;
  text-align: center;
  margin-bottom: 78px;
}

#page_index #information_sec h2 {
  text-align: center;
  font-family: cormorant-garamond, serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  font-feature-settings: normal;
  font-size: 2.2rem;
  line-height: 1.3;
  padding-bottom: 24px;
  position: relative;
  margin-bottom: 30px;
  /*白色*/
}

#page_index #information_sec ul{
  	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#page_index #information_sec li{
    width: 32%;
    max-width: 235px;
    margin: 0 10px;
    border-bottom: 1px solid #939D56;
    display: flex;
}

@media only screen and (max-width: 767px) {
#page_index #information_sec li{
    width: 100%;
    max-width: 320px;
    margin: 0 auto 20px;
}
#page_index #information_sec li:last-child{
    margin-bottom: 0;
}
}

#page_index #information_sec li a{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    transition: all 0.3s linear;
}

#page_index #information_sec li a:hover{
    opacity: 0.6;
}

#page_index #information_sec li p {
  text-align: center;
}

#page_index #information_sec li a p {
  color: #000000;
}

#page_index #information_sec li p.date {
  font-size: 1.6rem;
    margin-bottom: 10px;
}

#page_index #information_sec li p.date span{
  font-family: cormorant-garamond, serif;
    position: relative;
    display: block;
    margin-top: 5px;
}

#page_index #information_sec li p.date span:after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #939d56;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -15px;
}

#page_index #information_sec li p.boxtxt{
    font-size: 1.6rem;
    color: #FFFFFF;
    background-color: #939D56;
    width: 100%;
    padding: 4px 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#page_index #information_sec li a p.boxtxt {
  color: #FFFFFF;
}

#page_index #information_sec li h3 {
  font-size: 2.2rem;
    line-height: 1.4;
    margin: 10px 0;
}

#page_index #information_sec li a p.spec{
    line-height: 1.6;
    margin-top: auto;
}

#page_index #information_sec li p.btm{
    font-size: 1.2rem;
    text-align: center;
    margin-top: 10px;
}

#page_index #information_sec .btnbox {
  	width: 100%;
    margin-top: 40px;
}
#page_index #information_sec .btnbox a{
  	width: 100%;
    max-width: 746px;
    margin: 0 auto;
    display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#page_index #information_sec .btnbox p{
  	width: 50%;
}
#page_index #information_sec .btnbox a{
  	transition: all 0.3s liner;
}
#page_index #information_sec .btnbox a img{
  	max-width: 100%;
    height: auto;
}
#page_index #information_sec .btnbox a:hover{
  	opacity: 0.6;
}

@media only screen and (max-width: 767px) {
#page_index #information_sec .btnbox p{
  	width: 100%;
}
}


/*-------------------------
想い
-------------------------*/
#page_index #philosophy_sec {
  padding-top: 55px;
  text-align: center;
  margin-bottom: 78px;
}

@media only screen and (max-width: 767px) {
  #page_index #philosophy_sec {
    padding-top: 46px;
    margin-bottom: 45px;
  }
}

#page_index #philosophy_sec .txt {
  /*letter-spacing: 0.03em;*/
  line-height: 2.57143;
  margin-bottom: 26px;
}

@media only screen and (max-width: 767px) {
  #page_index #philosophy_sec .txt {
    text-align: left;
    line-height: 2.41667;
    margin-bottom: 20px;
  }
}

#page_index #philosophy_sec .btn02 {
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  #page_index #philosophy_sec .btn02 {
    margin-bottom: 30px;
  }
}

#page_index #philosophy_sec .img {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  #page_index #philosophy_sec .img {
    height: 252px;
  }
}

/*-------------------------
実績
-------------------------*/
#page_index #works_list_sec {
  margin-bottom: 127px;
}

@media only screen and (max-width: 767px) {
  #page_index #works_list_sec {
    margin-bottom: 34px;
  }
}

#page_index #works_list_sec .box:nth-of-type(1) {
  padding-top: 46px;
}

@media only screen and (max-width: 767px) {
  #page_index #works_list_sec .box:nth-of-type(1) {
    padding-top: 35px;
  }
}

/* works_tab */

#page_index #works_list_sec .works_tab ul{
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
    padding: 40px 0 80px 0;
}

#page_index #works_list_sec .works_tab li{
    width: 32%;
    max-width: 313px;
    border: 1px solid #E5E5E5;
    display: flex;
}

@media only screen and (max-width: 767px) {
#page_index #works_list_sec .works_tab li{
    width: 100%;
    max-width: 100%;
    margin: 10px auto;
}
}

#page_index #works_list_sec .works_tab li a{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 20px;
    color: #000000;
    transition: all 0.3s linear;
}

#page_index #works_list_sec .works_tab li a:hover{
    opacity: 0.6;
}

#page_index #works_list_sec .works_tab li .thumb{
    text-align: center;
    margin: 10px 0;
}

#page_index #works_list_sec .works_tab li p{
    text-align: justify;
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
}

#page_index #works_list_sec .works_tab li p.eng{
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
}

/*-------------------------
ABOUT US
-------------------------*/
#page_index #abouts_sec {
  background-image: url(../img/index/about_img.jpg);
}

/*-------------------------
DESIGN
-------------------------*/
#page_index #design_sec {
  background: #000;
  padding: 70px 0 60px;
}

@media only screen and (max-width: 767px) {
  #page_index #design_sec {
    padding: 58px 0 47px;
  }
  #page_index #design_sec .innerWrap {
    padding: 0;
  }
}

#page_index #design_sec .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 45px;
  margin-bottom: 40px;
  line-height: 1.3;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  #page_index #design_sec .list {
    display: block;
    margin-top: 38px;
    margin-bottom: 45px;
  }
}

#page_index #design_sec .list li {
  width: 490px;
  margin-bottom: 15px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  #page_index #design_sec .list li {
    width: 100%;
    margin-bottom: 12px;
  }
  #page_index #design_sec .list li:last-of-type {
    margin-bottom: 0;
  }
}

#page_index #design_sec .list .img {
  height: 230px;
  position: relative;
  z-index: 0;
}

@media only screen and (max-width: 767px) {
  #page_index #design_sec .list .img {
    height: 184px;
  }
}

#page_index #design_sec .list .img:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
  mix-blend-mode: multiply;
  transition: all 0.25s linear;
}

#page_index #design_sec .list .txt_area {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
}

@media only screen and (max-width: 767px) {
  #page_index #design_sec .list .txt_area .ttl img {
    width: auto;
    height: 21px;
  }
}

#page_index #design_sec .list .txt_area .more {
  font-family: cormorant-garamond, serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  font-feature-settings: normal;
  font-size: 2rem;
  margin-top: 12px;
}

@media only screen and (max-width: 767px) {
  #page_index #design_sec .list .txt_area .more {
    font-size: 1.6rem;
    margin-top: 8px;
  }
}

#page_index #design_sec .list .txt_area .more span {
  padding-right: 45px;
  background: url(../img/ico_arrow01_w.png) no-repeat right 5px center;
  background-size: auto 7px;
  transition: all 0.25s linear;
}

@media only screen and (max-width: 767px) {
  #page_index #design_sec .list .txt_area .more span {
    padding-right: 32px;
    background-position: right center;
    background-size: auto 6px;
  }
}

#page_index #design_sec .list li.dojo .img:after {
  background: #234534;
}

#page_index #design_sec .list li.kiso .img:after {
  background: #253D60;
}

#page_index #design_sec .list li.dannetsu .img:after {
  background: #846A34;
}

#page_index #design_sec .list li.kimistu .img:after {
  background: #4B2312;
  opacity: 0.6;
}

#page_index #design_sec .list li a:hover .txt_area .more span {
  background-position: right center;
}

#page_index #design_sec .list li a:hover .img:after {
  opacity: 0.5;
}

#page_index #design_sec .list li.kimistu a:hover .img:after {
  opacity: 0.3;
}

/*-------------------------
SHOWROOM
-------------------------*/
#showroom_sec {
  padding-top: 52px;
}

#showroom_sec .btn02 {
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  #showroom_sec .btn02 {
    margin-top: 30px;
  }
}

#showroom_sec .img {
  margin-top: 61px;
  height: 476px;
}

@media only screen and (max-width: 767px) {
  #showroom_sec .img {
    margin-top: 40px;
    height: 584px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■トップ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*-------------------------
プロフィール
-------------------------*/
#page_philosophy #profile_sec {
  margin-top: 115px;
    padding-top: 33px;
  padding-bottom: 80px;
  position: relative;
  z-index: 0;
    background: #000;
}

@media only screen and (max-width: 767px) {
  #page_philosophy #profile_sec {
    margin-top: 30px;
    padding-top: 33px;
    padding-bottom: 38px;
    background: #000;
  }
}
/*
#page_philosophy #profile_sec:after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 190px);
  background: #000;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  #page_philosophy #profile_sec:after {
    content: none;
  }
}
*/
#page_philosophy #profile_sec .img {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  #page_philosophy #profile_sec .img {
    height: 370px;
  }
}

#page_philosophy #profile_sec .txt_area {
  margin-top: 45px;
  color: #fff;
  display: flex;
}

@media only screen and (max-width: 767px) {
  #page_philosophy #profile_sec .txt_area {
    margin-top: 24px;
    display: block;
  }
}

#page_philosophy #profile_sec .txt_area .name_area {
  width: 265px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  line-height: 1.3;
}

@media only screen and (max-width: 767px) {
  #page_philosophy #profile_sec .txt_area .name_area {
    width: 100%;
    margin-bottom: 28px;
  }
}

#page_philosophy #profile_sec .txt_area .name_area p {
  width: 100%;
}

#page_philosophy #profile_sec .txt_area .name_area .sub {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
  #page_philosophy #profile_sec .txt_area .name_area .sub {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
}

#page_philosophy #profile_sec .txt_area .name_area .name span {
  font-size: 2.8rem;
  margin-left: 15px;
  letter-spacing: 0.44em;
}

@media only screen and (max-width: 767px) {
  #page_philosophy #profile_sec .txt_area .name_area .name span {
    font-size: 2.5rem;
  }
}

#page_philosophy #profile_sec .txt_area .name_area .en {
  margin-top: 19px;
  font-size: 1.2rem;
}

@media only screen and (max-width: 767px) {
  #page_philosophy #profile_sec .txt_area .name_area .en {
    font-size: 1.1rem;
    margin-top: 18px;
  }
}

#page_philosophy #profile_sec .txt_area .profile_area {
  width: calc(100% - 265px);
  border-left: 1px solid #fff;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  #page_philosophy #profile_sec .txt_area .profile_area {
    width: 100%;
    border-left: none;
    border-top: 1px solid #fff;
    display: block;
    padding-top: 26px;
  }
}

#page_philosophy #profile_sec .txt_area .profile_area .ttl {
  width: 136px;
  padding-left: 40px;
}

@media only screen and (max-width: 767px) {
  #page_philosophy #profile_sec .txt_area .profile_area .ttl {
    width: 100%;
    padding-left: 0;
    margin-bottom: 17px;
  }
}

#page_philosophy #profile_sec .txt_area .profile_area .txt {
  width: calc(100% - 136px);
}

@media only screen and (max-width: 767px) {
  #page_philosophy #profile_sec .txt_area .profile_area .txt {
    width: 100%;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■事例
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■事例詳細
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#page_works_details {
  padding-top: 180px;
}

@media only screen and (max-width: 767px) {
  #page_works_details {
    padding-top: 80px;
  }
}

#page_works_details #main_ttl {
  line-height: 1;
  text-align: center;
  margin-bottom: 167px;
}

@media only screen and (max-width: 767px) {
  #page_works_details #main_ttl {
    margin-bottom: 48px;
  }
}

#page_works_details #main_ttl h1 {
  border-bottom: 1px solid #000;
  padding-bottom: 15px;
  margin-bottom: 21px;
}

@media only screen and (max-width: 767px) {
  #page_works_details #main_ttl h1 {
    padding-bottom: 10px;
    margin: 0 -25px 15px;
  }
}

@media only screen and (max-width: 767px) {
  #page_works_details #main_ttl h1 img.spCont {
    display: inline-block;
  }
}

#page_works_details #main_ttl .en {
  font-size: 1.8rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  letter-spacing: 0.12em;
}

@media only screen and (max-width: 767px) {
  #page_works_details #main_ttl .en {
    font-size: 1.4rem;
    line-height: 1.35714;
  }
}

/*-------------------------
main_vs
-------------------------*/
#page_works_details #main_vs {
  margin-bottom: 60px;
  line-height: 1;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  #page_works_details #main_vs {
    margin-bottom: 25px;
    overflow: hidden;
  }
  #page_works_details #main_vs .innerWrap {
    padding: 0;
  }
}

#page_works_details #main_vs .hd_area {
  margin-bottom: 20px;
}

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

#page_works_details #main_vs .hd_area .ttl {
  font-family: cormorant-garamond, serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  font-feature-settings: normal;
  font-size: 3rem;
}

@media only screen and (max-width: 767px) {
  #page_works_details #main_vs .hd_area .ttl {
    font-size: 2.4rem;
  }
}

#page_works_details #main_vs .hd_area .num {
  font-size: 2.8rem;
  letter-spacing: 0.04em;
}

@media only screen and (max-width: 767px) {
  #page_works_details #main_vs .hd_area .num {
    font-size: 2.2rem;
  }
}

#page_works_details #main_vs .slide {
  position: relative;
}

@media only screen and (max-width: 767px) {
  #page_works_details #main_vs .slide img {
    width: 100%;
    height: auto;
  }
}

#page_works_details #main_vs .swiper-button-prev,
#page_works_details #main_vs .swiper-button-next {
  background-size: 16px auto;
  width: 16px;
  height: 100px;
  margin-top: -37px;
  transition: all 0.25s linear;
}

#page_works_details #main_vs .swiper-button-prev:hover,
#page_works_details #main_vs .swiper-button-next:hover {
  opacity: .8;
  transition: all 0.25s linear;
}

@media only screen and (max-width: 767px) {
  #page_works_details #main_vs .swiper-button-prev,
  #page_works_details #main_vs .swiper-button-next {
    position: static;
    background-size: 12px auto;
    width: 100px;
    height: 40px;
    margin-top: 0;
  }
}

#page_works_details #main_vs .swiper-button-prev {
  background-image: url(../img/slide_back.png);
  left: -63px;
}

@media only screen and (max-width: 767px) {
  #page_works_details #main_vs .swiper-button-prev {
    float: left;
    background-position: left 15px bottom;
  }
}

#page_works_details #main_vs .swiper-button-next {
  background-image: url(../img/slide_next.png);
  right: -58px;
}

@media only screen and (max-width: 767px) {
  #page_works_details #main_vs .swiper-button-next {
    float: right;
    background-position: right 15px bottom;
  }
}

#page_works_details #main_vs .swiper-pagination {
  text-align: center;
  position: static;
  margin-bottom: 15px;
}

#page_works_details #main_vs .swiper-pagination-bullet {
  opacity: 1;
  background: #DCDDDD;
  margin: 0 3px;
  height: 9px;
  width: 9px;
}

#page_works_details #main_vs .swiper-pagination-bullet-active {
  background: #000;
}

/*-------------------------
works_intro
-------------------------*/
#page_works_details #works_intro {
  text-align: center;
  margin-bottom: 65px;
}

@media only screen and (max-width: 767px) {
  #page_works_details #works_intro {
    margin-bottom: 35px;
  }
}

#page_works_details #works_intro .name {
  font-family: cormorant-garamond, serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  font-feature-settings: normal;
  font-size: 2.8rem;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  #page_works_details #works_intro .name {
    font-size: 2.2rem;
  }
}

#page_works_details #works_intro .date {
  font-family: cormorant-garamond, serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  font-feature-settings: normal;
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 48px;
}

@media only screen and (max-width: 767px) {
  #page_works_details #works_intro .date {
    font-size: 1.7rem;
    margin-top: -2px;
    margin-bottom: 42px;
  }
}

@media only screen and (max-width: 767px) {
  #page_works_details #works_intro .txt {
    text-align: left;
  }
}

/*-------------------------
details_sec
-------------------------*/
#page_works_details #details_sec .inner {
  border-top: 1px solid #ccc;
  padding-top: 80px;
  display: flex;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
  font-weight: 500;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

@media only screen and (max-width: 767px) {
  #page_works_details #details_sec .inner {
    font-weight: normal;
  }
}

@media all and (-ms-high-contrast: none) {
  #page_works_details #details_sec .inner {
    font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
    font-weight: 400;
  }
}

@media only screen and (max-width: 767px) {
  #page_works_details #details_sec .inner {
    padding-top: 40px;
    display: block;
  }
}

#page_works_details #details_sec .inner .ttl {
  width: 133px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  #page_works_details #details_sec .inner .ttl {
    width: 100%;
    font-size: 1.2rem;
    margin-bottom: 23px;
  }
}

#page_works_details #details_sec .inner dl {
  width: calc(100% - 133px);
  padding-left: 35px;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.2;
}

@media only screen and (max-width: 767px) {
  #page_works_details #details_sec .inner dl {
    width: 100%;
    padding-left: 0;
    font-size: 1.3rem;
  }
}

#page_works_details #details_sec .inner dt, #page_works_details #details_sec .inner dd {
  margin-bottom: 10px;
}

#page_works_details #details_sec .inner dt:last-of-type, #page_works_details #details_sec .inner dd:last-of-type {
  margin-bottom: 0;
}

#page_works_details #details_sec .inner dt {
  width: 98px;
}

@media only screen and (max-width: 767px) {
  #page_works_details #details_sec .inner dt {
    width: 80px;
  }
}

#page_works_details #details_sec .inner dd {
  width: calc(100% - 98px);
  border-left: 1px solid #000;
  padding-left: 30px;
}

@media only screen and (max-width: 767px) {
  #page_works_details #details_sec .inner dd {
    width: calc(100% - 80px);
    padding-left: 23px;
  }
}

/*-------------------------
pager
-------------------------*/
#page_works_details #pager {
  margin-top: 148px;
}

@media only screen and (max-width: 767px) {
  #page_works_details #pager {
    margin-top: 75px;
  }
}

#page_works_details #pager ul {
  display: flex;
  justify-content: center;
  line-height: 1;
  font-family: cormorant-garamond, serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  font-feature-settings: normal;
  font-size: 2rem;
}

@media only screen and (max-width: 767px) {
  #page_works_details #pager ul {
    font-size: 1.6rem;
    justify-content: space-between;
  }
}

#page_works_details #pager ul li {
  padding: 0 50px;
}

@media only screen and (max-width: 767px) {
  #page_works_details #pager ul li {
    padding: 0;
  }
}

#page_works_details #pager ul li a {
  transition: all 0.25s linear;
  background: no-repeat left center;
  background-size: 32px auto;
}

#page_works_details #pager ul li a:hover {
  opacity: .8;
  transition: all 0.25s linear;
}

@media only screen and (max-width: 767px) {
  #page_works_details #pager ul li a {
    background-size: 24px auto;
  }
}

#page_works_details #pager ul .index {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  padding: 0 64px;
}

@media only screen and (max-width: 767px) {
  #page_works_details #pager ul .index {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 360px) {
  #page_works_details #pager ul .index {
    padding: 0 40px;
  }
}

#page_works_details #pager ul .prev a {
  background-image: url(../img/ico_back.png);
  padding-left: 40px;
}

@media only screen and (max-width: 767px) {
  #page_works_details #pager ul .prev a {
    padding-left: 35px;
  }
}

#page_works_details #pager ul .next a {
  background-image: url(../img/ico_next.png);
  background-position: right center;
  padding-right: 40px;
}

@media only screen and (max-width: 767px) {
  #page_works_details #pager ul .next a {
    padding-right: 35px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■ABOUT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*-------------------------
top_intro
-------------------------*/
@media only screen and (min-width: 768px) {
  #page_about #top_intro {
    margin-bottom: 70px;
  }
}

/*-------------------------
about_details_sec
-------------------------*/
#page_about #about_details_sec {
  margin-bottom: 95px;
}

@media only screen and (max-width: 767px) {
  #page_about #about_details_sec {
    padding: 0;
    margin-bottom: 45px;
  }
}

#page_about #about_details_sec ul {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  #page_about #about_details_sec ul {
    display: block;
  }
}

#page_about #about_details_sec ul li {
  width: 460px;
  border-bottom: 1px solid #808080;
  padding-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  #page_about #about_details_sec ul li {
    width: 100%;
    padding-bottom: 0;
    border-bottom: none;
  }
}

@media only screen and (max-width: 767px) {
  #page_about #about_details_sec ul li:not(:last-of-type) {
    margin-bottom: 35px;
  }
}

#page_about #about_details_sec ul .img_area {
  position: relative;
  margin-bottom: 35px;
}

@media only screen and (max-width: 767px) {
  #page_about #about_details_sec ul .img_area {
    margin-bottom: 25px;
  }
}

#page_about #about_details_sec ul .img_area .img {
  height: 220px;
}

@media only screen and (max-width: 767px) {
  #page_about #about_details_sec ul .img_area .img {
    height: 186px;
  }
}

#page_about #about_details_sec ul .img_area .en {
  line-height: 1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 3.8rem;
  font-family: cormorant-garamond, serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  font-feature-settings: normal;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 767px) {
  #page_about #about_details_sec ul .img_area .en {
    font-size: 3rem;
  }
}

@media only screen and (max-width: 767px) {
  #page_about #about_details_sec ul .txt_area {
    border-bottom: 1px solid #808080;
    margin: 0 10px;
    padding: 0 15px 35px;
  }
}

#page_about #about_details_sec ul .txt_area .ttl {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.66667;
  margin-bottom: 29px;
}

@media only screen and (max-width: 767px) {
  #page_about #about_details_sec ul .txt_area .ttl {
    font-size: 1.9rem;
    margin-bottom: 20px;
  }
}

#page_about #about_details_sec ul .txt_area .txt {
  font-size: 1.6rem;
  line-height: 1.875;
}

@media only screen and (max-width: 767px) {
  #page_about #about_details_sec ul .txt_area .txt {
    font-size: 1.3rem;
  }
}

/*-------------------------
team_sec
-------------------------*/
#page_about #team_sec {
  /*紹介*/
}

#page_about #team_sec .intro_sec {
  margin-bottom: 55px;
}

@media only screen and (max-width: 767px) {
  #page_about #team_sec .intro_sec {
    margin-bottom: 30px;
  }
}

#page_about #team_sec .intro_sec .innerWrap{
    border-top: 1px solid #808080;
    padding-top: 60px;
}


#page_about #team_sec .our_team_area {
  background: #000;
  color: #fff;
  padding: 40px 0 65px;
  margin-bottom: 85px;
}

@media only screen and (max-width: 767px) {
  #page_about #team_sec .our_team_area {
    padding: 32px 0 45px;
    margin-bottom: 33px;
  }
}

#page_about #team_sec .our_team_area .ttl {
  text-align: center;
  font-size: 3.6rem;
  margin-bottom: 35px;
  font-family: cormorant-garamond, serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  font-feature-settings: normal;
}

@media only screen and (max-width: 767px) {
  #page_about #team_sec .our_team_area .ttl {
    font-size: 2.9rem;
  }
}

#page_about #team_sec .our_team_area .profile_list {
  margin: 0 -30px -50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  #page_about #team_sec .our_team_area .profile_list {
    margin: 0;
  }
}

#page_about #team_sec .our_team_area .profile_list li {
  width: 25%;
  padding: 0 25px;
  max-width: calc(160px + 60px);
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  #page_about #team_sec .our_team_area .profile_list li {
    width: 100%;
    max-width: inherit;
    flex-direction: row;
    padding: 0;
    margin-bottom: 30px;
  }
  #page_about #team_sec .our_team_area .profile_list li:last-of-type {
    margin-bottom: 0;
  }
}

#page_about #team_sec .our_team_area .profile_list .txt_area {
  font-size: 1.2rem;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  #page_about #team_sec .our_team_area .profile_list .txt_area {
    width: 47%;
    padding-right: 15px;
  }
}

#page_about #team_sec .our_team_area .profile_list .txt_area .position {
  /*font-size: 1.6rem;*/
  border-bottom: 1px solid #fff;
  padding-bottom: 3px;
  margin-bottom: 16px;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 300;
  /*letter-spacing: 0.05em;*/
    font-size: 1.3rem;
    letter-spacing: 0.00em;
    display: flex;
	flex-wrap: wrap;
    align-items: center;
    height: 80px;
}
@media only screen and (max-width: 767px) {
#page_about #team_sec .our_team_area .profile_list .txt_area .position {
    font-size: 1.2rem;
    letter-spacing: 0.00em;
    height: auto;
}
}

#page_about #team_sec .our_team_area .profile_list .txt_area .name {
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 17px;
}

#page_about #team_sec .our_team_area .profile_list .txt_area .name.kana {
  letter-spacing: -0.1em;
}

#page_about #team_sec .our_team_area .profile_list .txt_area .name .en {
  display: block;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 300;
  letter-spacing: 0.05em !important;
  font-size: 1.2rem;
}

#page_about #team_sec .our_team_area .profile_list .img {
  line-height: 1;
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  #page_about #team_sec .our_team_area .profile_list .img {
    width: 47%;
    margin-top: 0;
  }
}

#page_about #team_sec .our_team_area .profile_list .img img {
  width: 100%;
  height: auto;
}

/*-------------------------
support_sec
-------------------------*/
#page_about #support_sec {
  margin-top: 100px;
}

@media only screen and (max-width: 767px) {
  #page_about #support_sec {
    margin-top: 45px;
  }
}

#page_about #support_sec .intro_sec {
  margin-bottom: 45px;
}

@media only screen and (max-width: 767px) {
  #page_about #support_sec .intro_sec {
    margin-bottom: 30px;
  }
}

#page_about #support_sec .intro_sec .ttl {
  text-align: center;
  font-family: cormorant-garamond, serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  font-feature-settings: normal;
  line-height: 1;
  font-size: 3.6rem;
  margin-bottom: 45px;
}

@media only screen and (max-width: 767px) {
  #page_about #support_sec .intro_sec .ttl {
    font-size: 2.9rem;
    margin-bottom: 40px;
  }
}

#page_about #support_sec .exm_area .box + .box {
  margin-top: 35px;
}

@media only screen and (max-width: 767px) {
  #page_about #support_sec .exm_area .box + .box {
    margin-top: 25px;
  }
}

#page_about #support_sec .intro_sec2 {
    margin-bottom: 80px;
}

#page_about #support_sec .intro_sec2 p.txt{
    text-align: center;
    padding-top: 20px;
}

@media only screen and (max-width: 767px) {
#page_about #support_sec .intro_sec2 p.txt{
    max-width: 90%;
    margin: 0 auto;
}
}

#page_about #support_sec .intro_sec2 p.txt img{
    max-width: 100%;
}

#page_about #support_sec .intro_sec2 .innerWrap{
    padding: 60px 0;
    border-top: 1px solid #808080;
    border-bottom: 1px solid #808080;
}




/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■ショールーム
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#page_showroom .img_area {
  line-height: 1;
}

#page_showroom .img_area img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 767px) {
  #page_showroom .img_area {
    margin-left: -25px;
    margin-right: -25px;
  }
}

/*-------------------------
top_vs
-------------------------*/
#page_showroom #top_vs .copy {
  top: 46%;
  bottom: auto;
  margin: 0;
  transform: translateY(-50%) translateX(-50%);
}

@media only screen and (max-width: 767px) {
  #page_showroom #top_vs .copy {
    left: 50%;
    padding: 0 15px;
  }
}

@media only screen and (max-width: 767px) {
  #page_showroom #top_vs .copy img {
    width: 346px;
    max-width: 100%;
    height: auto;
  }
}

/*-------------------------
top_intro
-------------------------*/
#page_showroom #top_intro {
  margin-bottom: 80px;
}

@media only screen and (max-width: 767px) {
  #page_showroom #top_intro {
    margin-bottom: 50px;
  }
}

#page_showroom #top_intro .sub_catch {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 32px;
  padding-top: 20px;
}

@media only screen and (max-width: 767px) {
  #page_showroom #top_intro .sub_catch {
    font-size: 2.2rem;
    margin-bottom: 15px;
    padding-top: 7px;
  }
}

#page_showroom #top_intro .img_area {
  margin-top: 45px;
}

@media only screen and (max-width: 767px) {
  #page_showroom #top_intro .img_area {
    margin-top: 20px;
  }
  #page_showroom #top_intro .img_area p {
    margin-bottom: 4px;
  }
}

/*-------------------------
abouts_sec
-------------------------*/
#page_showroom #abouts_sec h2.ttl {
  text-align: center;
  line-height: 1;
  margin-bottom: 55px;
}

@media only screen and (max-width: 767px) {
  #page_showroom #abouts_sec h2.ttl {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  #page_showroom #abouts_sec h2.ttl img {
    width: auto;
    height: 28px;
  }
}

#page_showroom #abouts_sec .intro_sec {
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  #page_showroom #abouts_sec .intro_sec {
    margin-bottom: 25px;
  }
}

#page_showroom #abouts_sec .about_img {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 95px;
}

@media only screen and (max-width: 767px) {
  #page_showroom #abouts_sec .about_img {
    justify-content: center;
    margin: 0 -2px 25px;
  }
}

#page_showroom #abouts_sec .about_img li {
  width: calc(33.33% - 2px);
}

@media only screen and (max-width: 767px) {
  #page_showroom #abouts_sec .about_img li {
    width: 50%;
    padding: 0 2px;
    margin-bottom: 4px;
  }
  #page_showroom #abouts_sec .about_img li:nth-of-type(1) {
    width: 100%;
    text-align: center;
  }
  #page_showroom #abouts_sec .about_img li:nth-of-type(1) img {
    width: 50%;
  }
}

#page_showroom #abouts_sec .block + .block {
  padding-top: 75px;
  border-top: 1px solid #000;
  margin-top: 110px;
}

@media only screen and (max-width: 767px) {
  #page_showroom #abouts_sec .block + .block {
    padding-top: 40px;
    margin-top: 35px;
  }
}

#page_showroom #abouts_sec .block .catch01 {
  margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  #page_showroom #abouts_sec .block .catch01 {
    margin-bottom: 12px;
  }
}

#page_showroom #abouts_sec .block .box {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  #page_showroom #abouts_sec .block .box {
    display: block;
  }
}

#page_showroom #abouts_sec .block .box > * {
  width: 497px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  #page_showroom #abouts_sec .block .box > * {
    display: block;
    width: 100% !important;
  }
}

#page_showroom #abouts_sec .block .box img + img {
  margin-top: 4px;
}

#page_showroom #abouts_sec .block .box .txt {
  line-height: 2.28571;
}

@media only screen and (max-width: 767px) {
  #page_showroom #abouts_sec .block .box .txt {
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  #page_showroom #abouts_sec .block_type01 .left {
    margin-bottom: 4px;
  }
}

#page_showroom #abouts_sec .block_type01 .left .txt {
  padding-right: 45px;
}

@media only screen and (max-width: 767px) {
  #page_showroom #abouts_sec .block_type01 .left .txt {
    padding-right: 0;
  }
}

#page_showroom #abouts_sec .block_type02 .box {
  margin-bottom: 38px;
}

@media only screen and (min-width: 768px) {
  #page_showroom #abouts_sec .block_type02 .box {
    flex-direction: row-reverse;
  }
}

@media only screen and (max-width: 767px) {
  #page_showroom #abouts_sec .block_type02 .box {
    margin-bottom: 4px;
  }
}

#page_showroom #abouts_sec .block_type02 .box .left {
  width: 462px;
}

#page_showroom #abouts_sec .block_type02 .info_area .info {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  #page_showroom #abouts_sec .block_type02 .info_area .info {
    display: block;
    margin-top: 17px;
  }
}

#page_showroom #abouts_sec .block_type02 .info_area .txt_area {
  padding-right: 30px;
  width: calc(100% - 288px);
  font-size: 1.3rem;
  line-height: 1.84615;
}

@media only screen and (max-width: 767px) {
  #page_showroom #abouts_sec .block_type02 .info_area .txt_area {
    width: 100%;
    font-size: 1.2rem;
    padding-right: 0;
    line-height: 1.66667;
  }
}

#page_showroom #abouts_sec .block_type02 .info_area .txt_area dl {
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  #page_showroom #abouts_sec .block_type02 .info_area .txt_area dl {
    margin-bottom: 17px;
  }
}

#page_showroom #abouts_sec .block_type02 .info_area .txt_area dl dt {
  width: 6em;
}

#page_showroom #abouts_sec .block_type02 .info_area .txt_area dl dd {
  width: calc(100% - 6em);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■会社概要
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*-------------------------
table_list
-------------------------*/
#page_profile .table_list {
  padding-top: 78px;
  padding-bottom: 72px;
}

@media only screen and (max-width: 767px) {
  #page_profile .table_list {
    padding-top: 0;
    padding-bottom: 40px;
  }
}

/*-------------------------
map_area
-------------------------*/
#page_profile #map_area .map {
  filter: grayscale(100%);
}

@media only screen and (max-width: 767px) {
  #page_profile #map_area .map {
    margin-left: -25px;
    margin-right: -25px;
  }
}

#page_profile #map_area .map iframe {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  #page_profile #map_area .map iframe {
    height: 316px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■フォーム
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*--------------------------------------------------
  form reset
--------------------------------------------------*/
.form {
  /*
	select {
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
	}
	select::-ms-expand {
		display: none;
	}
	*/
}

.form input,
.form select,
.form textarea,
.form button {
  font-family: "Shippori Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", serif;
  font-weight: 400;
}

.form input[type="text"],
.form input[type="tel"],
.form input[type="email"],
.form input[type="password"],
.form input[type="number"],
.form input[type="url"],
.form input[type="date"],
.form input[type="month"],
.form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  width: 100%;
  border: 1px solid #f00;
  border: none;
  border-radius: 0;
  background: #fff;
  background: none;
  padding: 7px 18px;
  box-shadow: none;
  max-width: 100%;
  color: #000;
  background: #F3F2ED;
}

.form input[type="date"] {
  outline: none;
  width: 100%;
  border: 1px solid #f00;
  border: none;
  border-radius: 0;
  background: #fff;
  background: none;
  padding: 0;
}

.form input[type=date]::-webkit-date-and-time-value,
.form input[type=month]::-webkit-date-and-time-value {
  text-align: left;
}

.form select {
  outline: none;
  width: 100%;
  border: 1px solid #f00;
  border: none;
  border-radius: 0;
  background: #fff;
  background: transparent;
  padding: 10px;
  box-shadow: none;
  color: #000;
}

.form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  width: 100%;
  border: 1px solid #f00;
  border: none;
  border-radius: 0;
  background: #fff;
  resize: none;
  resize: both;
  outline: none;
  width: 100% !important;
  height: 222px;
  background: #F3F2ED;
}

@media only screen and (max-width: 767px) {
  .form textarea {
    height: 177px;
  }
}

.form button,
.form input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  text-shadow: none;
  box-shadow: none;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
  font-weight: 500;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .form button,
  .form input[type="submit"] {
    font-weight: normal;
  }
}

@media all and (-ms-high-contrast: none) {
  .form button,
  .form input[type="submit"] {
    font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
    font-weight: 400;
  }
}

.form button:hover,
.form input[type="submit"]:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form label {
  cursor: pointer;
  padding: 0 !important;
  border: none !important;
}

.form label span {
  position: relative;
  padding: 0 0 0 24px;
    float: left;
}

.form label span:before, .form label span:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
}

.form label span:before {
  bottom: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background: transparent;
  border: 1px solid #000;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  margin: auto 0;
}

.form label span:after {
  opacity: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.form input[type="radio"],
.form input[type="checkbox"] {
  display: none;
}

.form input[type="radio"]:checked + span:after,
.form input[type="radio"]:checked + input + span:after,
.form input[type="checkbox"]:checked + span:after,
.form input[type="checkbox"]:checked + input + span:after {
  opacity: 1;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.form label input[type="radio"] + span:before,
.form label input[type="radio"] + input + span:before,
.form label input[type="radio"] + span:after,
.form label input[type="radio"] + input + span:after {
  border-radius: 50%;
}

.form label input[type="radio"] + span:before,
.form label input[type="radio"] + input + span:before {
  background-color: #fff;
}

.form label input[type="radio"] + span:after,
.form label input[type="radio"] + input + span:after {
  left: 4px;
  width: 8px;
  height: 8px;
  background: #f00;
}

.form label input[type="checkbox"] + span:after,
.form label input[type="checkbox"] + input + span:after {
  top: 0;
  bottom: 2px;
  left: 5px;
  width: 6px;
  height: 10px;
  background: none;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■↓↓↓お問い合わせフォーム　各サイトごとに自由編集↓↓↓
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*--------------------------------------------------
  メールフォームプロ
--------------------------------------------------*/
/* エラー */
div.mfp_err {
  clear: both;
  display: none;
  text-align: left;
  padding: 10px 0px 0px 0px;
  color: #F00;
  font-size: 1.2rem;
  line-height: normal;
  background-position: 0px 1px;
}

.mfp_parent_error {
  border: solid 2px #F00;
}

.problem {
  background-color: #FCC;
}

div#mfp_error {
  background-color: #FEE;
  border: solid 1px #F00;
  padding: 10px;
  display: none;
}

.form_item {
  display: flex;
  padding: 20px 0;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .form_item {
    display: block;
  }
}

.form_item .item_title {
  position: relative;
  flex: 1 0 auto;
  width: 230px;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .form_item .item_title {
    width: auto;
  }
}

.form_item .item_title .required {
  font-size: 1.0rem;
  color: #f00;
}

.form_item .item_main {
  width: 100%;
}

.form_item .item_main .list_input {
  overflow: hidden;
}

.form_item .item_main .list_input li {
  display: inline-block;
}

/*--------------------------------------------------
	入力画面
--------------------------------------------------*/
#sec_contact_form .list_input ul + ul {
  margin-top: 15px;
}

#sec_contact_form .list_input li {
  margin: 0 20px 10px 0;
}

#sec_contact_form #mfp_phase_confirm h4 {
  font-size: 2.0rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 30px;
}

@media only screen and (max-width: 767px) {
  #sec_contact_form #mfp_phase_confirm h4 {
    margin: 0 0 50px;
  }
}

/*--------------------------------------------------
	サンクスページ
--------------------------------------------------*/
#sec_contact_thanks {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  #sec_contact_thanks {
    text-align: left;
  }
}

#sec_contact_thanks .innerWrap {
  min-height: 340px;
}

@media only screen and (max-width: 767px) {
  #sec_contact_thanks .innerWrap {
    display: block;
    min-height: inherit;
  }
}

#sec_contact_thanks .title {
  font-size: 2.8rem;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 40px;
}

@media only screen and (max-width: 767px) {
  #sec_contact_thanks .title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}

#sec_contact_thanks p + p {
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  #sec_contact_thanks p + p {
    margin-top: 15px;
  }
}

/*-------------------------
sec_contact_form
-------------------------*/
#sec_contact_form {
  max-width: 860px;
  margin: 0 auto;
}

#sec_contact_form .list_input {
  margin-bottom: -17px;
  padding-left: 12px;
}

@media only screen and (max-width: 767px) {
  #sec_contact_form .list_input {
    padding-top: 13px;
    padding-left: 15px;
  }
}

#sec_contact_form .list_input li {
  margin: 0 35px 17px 0;
}

@media only screen and (max-width: 767px) {
  #sec_contact_form .list_input li {
    margin-right: 30px;
  }
}

#sec_contact_form .list_input li.w100 {
  width: 100%;
}

#sec_contact_form .list_input li.w50 {
  width: 40%;
}

#sec_contact_form .btn04 {
  text-align: center;
  margin-top: 57px;
  margin-bottom: 63px;
}

@media only screen and (max-width: 767px) {
  #sec_contact_form .btn04 {
    margin-top: 40px;
    margin-bottom: 43px;
  }
}

#sec_contact_form .btn04 button {
  margin: 0 auto;
    width: 100%;
}

@media only screen and (max-width: 767px) {
#sec_contact_form .btn04 button {
    height: 70px;
}
}

#sec_contact_form .btn04 .btn_list {
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  #sec_contact_form .btn04 .btn_list {
    margin-left: -5px;
    margin-right: -5px;
  }
}

#sec_contact_form .btn04 .btn_list li {
  padding: 0 10px;
}

@media only screen and (max-width: 767px) {
  #sec_contact_form .btn04 .btn_list li {
    width: 50%;
    padding: 0 5px;
  }
}

#sec_contact_form .btn04 .btn_list li:nth-of-type(1) {
  display: flex;
  justify-content: flex-end;
}

@media only screen and (max-width: 767px) {
  #sec_contact_form .btn04 .btn_list li a, #sec_contact_form .btn04 .btn_list li button {
    margin: 0;
    width: 100%;
    max-width: 160px;
  }
}

@media only screen and (max-width: 767px) {
  #sec_contact_form .info_area {
    font-size: 1.1rem;
    line-height: 2;
  }
}

/*-------------------------
  form_item
-------------------------*/
.form {
  border-top: 1px solid #ccc;
}

.form .form_item {
  border-bottom: 1px solid #ccc;
  padding: 0;
  font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
  .form .form_item {
    font-size: 1.3rem;
    padding: 20px 0;
  }
}

.form .item_title,
.form .item_main {
  padding: 20px 17px 20px 20px;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .form .item_title,
  .form .item_main {
    padding: 0;
  }
}

.form .item_title {
  width: 275px;
  padding-right: 15px;
  display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 767px) {
  .form .item_title {
    width: 210px;
    padding-left: 15px;
    margin-bottom: 10px;
  }
}

.form .item_title .required {
  background: #AFBE22;
  color: #fff;
  font-size: 1.4rem;
  padding: 1px 10px;
}

@media only screen and (max-width: 767px) {
  .form .item_title .required {
    font-size: 1.1rem;
    padding: 1px 8px;
  }
}

.form .item_main {
  border-left: 1px solid #ccc;
}

@media only screen and (max-width: 767px) {
  .form .item_main {
    border-left: none;
  }
}

.form .item_main .txt {
  font-size: 1.3rem;
  margin-top: 17px;
  padding-left: 10px;
  margin-right: -10px;
}

@media only screen and (max-width: 767px) {
  .form .item_main .txt {
    font-size: 1.1rem;
    padding: 0;
    margin-right: 0;
  }
}

.form .item_title .en {
  display: block;
  font-size: 1.1rem;
}


/*-------------------------
NewsLetter
-------------------------*/

#page_newsletter .innerWrap {
  max-width: 900px;
  margin: 0 auto;
}

#page_newsletter #newsletter_list ul.news_list{
  	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

#page_newsletter #newsletter_list ul.news_list li{
    width: 100%;
    margin-bottom: 60px;
    border-top: 1px solid #d9d9d9;
    display: flex;
    background-image: url(../img/newsletter/icon_ext.png);
    background-repeat: no-repeat;
    background-position: right bottom;
}

#page_newsletter #newsletter_list ul.news_list li a{
    width: 100%;
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    transition: all 0.3s linear;
}

#page_newsletter #newsletter_list ul.news_list li a:hover{
    opacity: 0.6;
}

#page_newsletter #newsletter_list ul.news_list li a p {
  color: #000000;
}

#page_newsletter p.date {
    font-size: 1.6rem;
    text-align: center;
}

#page_newsletter p.date span{
    font-family: cormorant-garamond, serif;
    position: relative;
    display: block;
    margin-top: 5px;
}

#page_newsletter p.date span:after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #939d56;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -15px;
}

#page_newsletter #newsletter_list ul.news_list li h3 {
    font-size: 2.6rem;
    line-height: 1.4;
    border-left: 1px solid #939D56;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 40px;
    margin-left: 40px;
}
@media only screen and (max-width: 767px) {
#page_newsletter #newsletter_list ul.news_list li h3 {
    font-size: 2.0rem;
    padding-left: 20px;
    margin-left: 20px;
}
}

#page_newsletter #newsletter_list ul.news_list li a p.lead{
    font-size: 1.4rem;
    /*line-height: 1.9;*/
    letter-spacing: -0.05em;
    margin-top: auto;
    text-align: justify;
}
@media only screen and (max-width: 767px) {
#page_newsletter #newsletter_list ul.news_list li a p.lead{
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 0;
}
}

#page_newsletter #newsletter_list ul.news_list li a .thumb {
    width: 26%;
    max-width: 234px;
}
@media only screen and (max-width: 767px) {
#page_newsletter #newsletter_list ul.news_list li a .thumb {
    width: 100%;
    max-width: 234px;
}
}

#page_newsletter #newsletter_list ul.news_list li a .thumb img{
    max-width: 234px;
}

#page_newsletter #newsletter_list ul.news_list li a .txtbox {
    width: 70%;
    max-width: 624px;
}
@media only screen and (max-width: 767px) {
#page_newsletter #newsletter_list ul.news_list li a .txtbox {
    width: 100%;
}
}

#page_newsletter #newsletter_list ul.news_list li a .ttlbox {
    overflow: hidden;
    display: flex;
	justify-content: flex-start;
    align-items: center;
    margin: 20px 0;
}

/*sort*/
#page_newsletter #newsletter_list .news_tab {
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
    margin: 80px 0 40px 0;
}
#page_newsletter #newsletter_list .news_tab li {
	display: block;
    margin: 0 0;
    padding: 0px 40px;
    border-right: 1px solid #000000;
    line-height: 1.3;
    cursor: pointer;
    transition: all 0.3s linear;
}
@media only screen and (max-width: 767px) {
#page_newsletter #newsletter_list .news_tab li {
    margin: 5px 0;
    padding: 0px 20px;
}
}

#page_newsletter #newsletter_list .news_tab li:last-child {
    border-right: none;
}

#page_newsletter #newsletter_list .news_tab li.active, .news_tab li:hover {
	opacity: 0.6;
}

/*pager*/
#page_newsletter #newsletter_list ul.pager {
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
    margin: 80px 0 40px 0;
}
#page_newsletter #newsletter_list ul.pager li a{
	display: block;
    margin: 0 0;
    padding: 0px 30px;
    border-right: 1px solid #000000;
    line-height: 1.3;
    cursor: pointer;
    transition: all 0.3s linear;
    color: #000000;
}
#page_newsletter #newsletter_list ul.pager li:last-child a{
    border-right: none;
}
#page_newsletter #newsletter_list ul.pager li a.active,
#page_newsletter #newsletter_list ul.pager li a:hover{
	opacity: 0.6;
}

/*newsletter_single*/

#page_newsletter #newsletter_single {
    padding-top: 60px;
}

#page_newsletter #newsletter_single .ttlbox{
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #d9d9d9;
}

#page_newsletter #newsletter_single .mainbox{
    text-align: center;
    padding-top: 80px;
}
#page_newsletter #newsletter_single .mainbox img{
    max-width: 100%;
}
#page_newsletter #newsletter_single .logo{
    text-align: center;
    margin-bottom: 60px;
}
#page_newsletter #newsletter_single .logo img{
    margin: 0 auto;
}
#page_newsletter #newsletter_single h1{
    text-align: center;
    font-size: 2.6rem;
    margin: 60px 0 30px 0;
}
@media only screen and (max-width: 767px) {
#page_newsletter #newsletter_single h1{
    font-size: 2.0rem;
}
}

#page_newsletter #newsletter_single p.lead{
    text-align: justify;
    margin-top: 30px;
    margin-bottom: 30px;
}

#page_newsletter #newsletter_single .subbox ul{
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between; 
}

#page_newsletter #newsletter_single .subbox li{
    width: 48%;
    max-width: 420px;
    display: flex;
    flex-wrap: wrap;
	flex-direction: column;
    padding-top: 40px;
    margin-top: 80px;
    border-top: 1px solid #d9d9d9;
}
@media only screen and (max-width: 767px) {
#page_newsletter #newsletter_single .subbox li{
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
}
#page_newsletter #newsletter_single .subbox img{
    max-width: 100%;
}
#page_newsletter #newsletter_single h2{
    text-align: center;
    font-size: 2.6rem;
    line-height: 1.6;
}
@media only screen and (max-width: 767px) {
#page_newsletter #newsletter_single h2{
    font-size: 2.0rem;
}
}

#page_newsletter #newsletter_single h2 span{
    display: block;
    font-size: 1.4rem;
}

#page_newsletter #newsletter_single .photo{
    margin-top: auto;
}

#page_newsletter #newsletter_single .infowrap {
    padding-top: 40px;
    margin-top: 80px;
    border-top: 1px solid #d9d9d9;
}
#page_newsletter #newsletter_single .infobox {
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    padding-top: 40px;
}
#page_newsletter #newsletter_single .infobox div{
    width: 48%;
    max-width: 420px;
}
@media only screen and (max-width: 767px) {
#page_newsletter #newsletter_single .infobox div{
    width: 100%;
    max-width: 100%;
}
}


#page_newsletter #newsletter_single table.infomation{
    width: 100%;
}
#page_newsletter #newsletter_single table.infomation tr{
    border-bottom: 1px solid #d9d9d9;
}
/*
#page_newsletter #newsletter_single table.infomation tr:last-child{
    border-bottom: none;
}*/
#page_newsletter #newsletter_single table.infomation th,
#page_newsletter #newsletter_single table.infomation td{
    padding: 5px 0;
}

#page_newsletter #newsletter_single table.infomation th{
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
    text-align: center;
    white-space: nowrap;
    min-width: 70px;
}
/*
@media only screen and (max-width: 767px) {
#page_newsletter #newsletter_single table.infomation th{
    min-width: 70px;
}
}
*/
#page_newsletter #newsletter_single table.infomation td{
    padding-left: 20px;
}


/* privacy
===================================*/

#privacy{
    width: 100%;
}

#privacy .inner {
	max-width: 1100px;
    padding-top: 30px;
	padding-bottom: 90px;
}

#privacy h2{
    width: 100%;
    text-align: left;
    font-size: 2.4rem;
    font-weight: 700;
    position: relative;
    margin-bottom: 40px;
    letter-spacing: 2px;
    border-top: 1px solid #d9d9d9;
    padding-top: 40px;
}

@media only screen and (max-width: 767px) {
#privacy h2 {
    font-size: 2.0rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
    border-top: 1px solid #D6D6D6;
    padding-top: 20px;
}
}

#privacy h2 span{
    font-size: 1.4rem;
    display: block;
}

#privacy h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
    text-align: left;
    letter-spacing: 0.05rem;
}
@media only screen and (max-width: 767px) {
#privacy h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}	
}
#privacy p {
    font-size: 1.6rem;
    text-align: justify;
    line-height: 2.0;
    margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
#privacy p {
	font-size: 1.2rem;
    margin-bottom: 20px;
}
}
#privacy p span.indent {
    padding-left: 14px;
}

#privacy p.date {
    text-align: right;
}

.privacy_info {
    text-align: left;
    margin: 20px 0;
    padding: 20px;
    border-top: 1px #d9d9d9 solid;
    border-bottom: 1px #d9d9d9 solid;
}

.privacy_info dt {
    margin: 0 0 10px;
    font-weight: 600;
    color: #000000;
}

