@charset "utf-8";

@font-face {
  font-family: "Zen Old Mincho";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/Zen_Old_Mincho/ZenOldMincho-Regular.woff2) format("woff2"),
    url(../fonts/Zen_Old_Mincho/ZenOldMincho-Regular.woff) format("woff"),
    url(../fonts/Zen_Old_Mincho/ZenOldMincho-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Zen Old Mincho";
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/Zen_Old_Mincho/ZenOldMincho-Bold.woff2) format("woff2"),
    url(../fonts/Zen_Old_Mincho/ZenOldMincho-Bold.woff) format("woff"),
    url(../fonts/Zen_Old_Mincho/ZenOldMincho-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "Zen Old Mincho";
  font-style: normal;
  font-weight: 900;
  src: url(../fonts/Zen_Old_Mincho/ZenOldMincho-Black.woff2) format("woff2"),
    url(../fonts/Zen_Old_Mincho/ZenOldMincho-Black.woff) format("woff"),
    url(../fonts/Zen_Old_Mincho/ZenOldMincho-Black.ttf) format("truetype");
}

/*==============================
    基本設定
==============================*/
body {
  color: #1f1f1f;
  font-size: 12px;
  font-family: YakuHanMP, "Zen Old Mincho", serif;
  margin: 0;
  padding: 0;
  text-align: left;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  position: relative;
  word-break: break-all;
  min-width: 1400px;
  overflow-y: scroll;
}
@media only screen and (max-width: 767px) {
  body {
    min-width: 0;
  }
}

body *,
body *::before,
body *::after {
  box-sizing: border-box;
}
img {
  vertical-align: bottom;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
th {
  font-weight: normal;
  text-align: left;
}

/*font layout*/
.fBold {
  font-weight: bold;
}
.fBold900 {
  font-weight: 900;
}
.fGothic {
  font-family: YakuHanMP, "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.fEBG {
  font-family: "EB Garamond", serif;
  font-weight: 600;
}
.fEBG02 {
  /*font-family: "EB Garamond", serif;*/
}

/*rollover*/
.ro a:hover,
a.ro:hover,
a .ro:hover,
.cursorPointer:hover {
  opacity: 0.6;
}
.ro a,
a.ro,
a .ro,
.cursorPointer {
  transition: opacity 0.2s ease-out;
}
.cursorPointer {
  cursor: pointer;
}

/*rollover(brightnessによる変化)*/
.brt a:hover,
a.brt:hover,
a .brt:hover {
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
}
.brt a,
a.brt,
a .brt {
  transition: filter 0.2s ease-out;
}

/*ro無効化*/
.ro .no_ro a:hover,
.ro a.no_ro:hover,
.ro .no_ro .cursorPointer:hover,
.ro .cursorPointer.no_ro:hover {
  opacity: 1;
}

/* 電話リンクの無効化 */
a[href^="tel:"] {
  pointer-events: none;
  cursor: default;
}
@media only screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

/* container */
#container {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}

/*========================================
    レスポンシブ用(不要な場合は削除)
========================================*/
.spOnly,
.brSp,
.imgSp {
  display: none;
}
.img100 {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .spNone,
  .brPc,
  .imgPc {
    display: none;
  }
  .spOnly {
    display: none;
  }
  .brSp,
  .imgSp {
    display: inline;
  }
  .imgR {
    width: 100%;
    height: auto;
  }
}

/*-----------------------------------------------
    imgCover
-----------------------------------------------*/
/* imgCover */
.imgCover,
.imgCont {
  position: relative;
}
.imgCover img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.imgCont img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
/*-----------------------------------------------
	jsHide
-----------------------------------------------*/
/* jsHide */
.jsHide {
  opacity: 0;
  transition: opacity 3.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.jsHide.jsShow {
  opacity: 1;
}

/* jsHideImg */
.jsHideImg,
.ro a.jsHideImg {
  filter: blur(20px) brightness(4);
  transform: translateY(50px);
  opacity: 0;
  transition: transform 1.6s cubic-bezier(0.19, 1, 0.22, 1),
    filter 1s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: center top;
}
.jsHideImg.jsShow,
.ro a.jsHideImg.jsShow {
  filter: blur(0) brightness(1);
  transform: translateY(0);
  opacity: 1;
}

/* jsHideChar */
.jsHideChar {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
.jsHideChar.jsShow {
  animation: jsHideCharAnimation 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86)
    0.3s normal forwards;
}
@keyframes jsHideCharAnimation {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
/*-----------------------------------------------
    wrapper
-----------------------------------------------*/
.wrapper1460 {
  width: 1460px;
  margin: 0 auto;
  max-width: calc(100% - 40px);
}
.wrapper1230 {
  width: 1230px;
  margin: 0 auto;
  max-width: calc(100% - 40px);
}
.wrapper1080 {
  width: calc(100% - 40px);
  max-width: 1080px;
  margin: 0 auto;
}
.wrapper1020 {
  width: calc(100% - 40px);
  max-width: 1020px;
  margin: 0 auto;
}
.wrapper900 {
  width: 900px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .wrapper1020,
  .wrapper1080,
  .wrapper1230,
  .wrapper1460 {
    width: 100%;
    max-width: none;
  }
  .wrapper900 {
    width: 100%;
  }
  .wrapperSp {
    width: 92%;
    margin: 0 auto;
  }
}

#footer {
}

/*-----------------------------------------------
    共通パーツ
-----------------------------------------------*/
/* cmnTit */
.cmnTitCenter {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .cmnTitCenter {
    font-size: 16px;
  }
}

.cmnTitRomanCenter {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .cmnTitRomanCenter {
    font-size: 16px;
  }
}

.cmnTitRomanLeft {
  font-size: 26px;
  letter-spacing: 1px;
}
@media only screen and (max-width: 767px) {
  .cmnTitRomanLeft {
    font-size: 16px;
    letter-spacing: 1px;
  }
}

/* cmnBtnMore */
.cmnBtnMore .btn {
  display: flex;
  text-align: center;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #000;
  width: 400px;
  margin: 0 auto;
  padding: 33px 0 34px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
}
.cmnBtnMore .btn::after {
  content: "";
  background: url(../img/common/arrowWhite.png) left top / 6px no-repeat;
  width: 6px;
  height: 7px;
  display: block;
  margin: 0 0 0 10px;
}
.cmnBtnMore.is-white .btn {
  color: #000;
  background-color: #fff;
  border: solid 1px #000;
}
.cmnBtnMore.is-white .btn::after {
  background: url(../img/common/iconPagerArrow02.gif) left top / 6px no-repeat;
}
.cmnBtnMore.is-white2 .btn {
  color: #45555e;
  background-color: #fff;
  border: solid 1px #45555e;
}
.cmnBtnMore.is-white2 .btn::after {
  background: url(../img/common/arrowNavy.png) left top / 6px no-repeat;
}
.cmnBtnMore.is-gray .btn {
  background-color: #45555e;
}
.cmnBtnMore.is-yellow .btn {
  background-color: #fedf00;
  color: #000;
}
.cmnBtnMore.is-yellow .btn::after {
  background: url(../img/common/arrowBlack.png) left top / 6px no-repeat;
}
.cmnBtnMore.arrow-right .btn::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  .cmnBtnMore .btn,
  .cmnBtnMore.is-white .btn {
    position: relative;
    font-size: 15px;
    width: 100%;
    padding: 23px 0 22px;
  }
}

/* cmnBtnMoreS */
.cmnBtnMoreS .btn {
  display: flex;
  text-align: center;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 260px;
  margin: 0 auto;
  padding: 20px 0;
  color: #fff;
  background-color: #000;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
}
.cmnBtnMoreS .btn::after {
  content: "";
  background: url(../img/common/arrowWhite.png) left top / 6px no-repeat;
  width: 6px;
  height: 7px;
  display: block;
  margin: 0 0 0 10px;
}
.cmnBtnMoreS.is-white .btn {
  color: #000;
  background-color: #fff;
  border: solid 1px #000;
}
.cmnBtnMoreS.is-white .btn::after {
  background: url(../img/common/iconPagerArrow02.gif) left top / 6px no-repeat;
}
@media only screen and (max-width: 767px) {
  .cmnBtnMoreS .btn {
    position: relative;
    font-size: 15px;
    width: 100%;
    padding: 23px 0 22px;
  }
}

/* secCmnError */
.secCmnError {
  font-size: 16px;
  text-align: center;
  padding: 50px 0;
}
@media only screen and (max-width: 767px) {
  .secCmnError {
    font-size: 12px;
    line-height: 1.4;
    padding: 30px 0;
  }
}

/* secCmnIndexPager */
.secCmnIndexPager {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.secCmnIndexPager .boxList {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}
.secCmnIndexPager .btn {
  margin: 0 5px;
}
.secCmnIndexPager .btn.on {
  margin: 0 5px;
}
.secCmnIndexPager .inner {
  font-size: 17px;
  color: #1f1f1f;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 0 0 2px 1px;
  background: #fff;
}
.secCmnIndexPager .on .inner {
  background: #222222;
  color: #fff;
}
.secCmnIndexPager .dots {
  border: 0;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  margin: 0 5px 10px;
  font-size: 17px;
  color: #1f1f1f;
}
.secCmnIndexPager .btnPrev .inner,
.secCmnIndexPager .btnNext .inner {
  position: relative;
  flex-shrink: 0;
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.secCmnIndexPager .btnPrev {
  margin-right: 5px;
}
.secCmnIndexPager .btnNext {
  margin-left: 5px;
}
.secCmnIndexPager .btnPrev .inner,
.secCmnIndexPager .btnNext .inner {
  position: relative;
}
.secCmnIndexPager .btnPrev .inner:after,
.secCmnIndexPager .btnNext .inner::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 13px;
  left: calc(50% - 5px);
  top: calc(50% - 6.5px);
}
.secCmnIndexPager .btnPrev .inner.lazyloaded:after {
  background: url(../img/common/iconPagerArrow01.gif) center top / cover;
}
.secCmnIndexPager .btnNext .inner.lazyloaded:after {
  background: url(../img/common/iconPagerArrow02.gif) center top / cover;
}
.secCmnIndexPager .btnPrev.none,
.secCmnIndexPager .btnNext.none {
  display: none;
}
@media only screen and (max-width: 767px) {
  .secCmnIndexPager {
    margin-top: 30px;
  }
  .page-ebook .secCmnIndexPager {
    margin-top: 60px;
  }
  .secCmnIndexPager .btn,
  .secCmnIndexPager .btn.on {
    margin: 0;
  }
}
@media only screen and (max-width: 360px) {
  .secCmnIndexPager .inner {
    font-size: 14px;
    width: 30px;
    height: 30px;
  }
}

/* cmnContact */
.cmnContact {
  margin-top: 200px;
}
.page-top-index .cmnContact {
  margin-top: 280px;
}
.cmnContact .boxTit {
  text-align: center;
}
.cmnContact .boxTit .subtit {
  font-size: 34px;
  line-height: 1.5;
  letter-spacing: 1px;
}
.cmnContact .boxTit .tit {
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  padding-top: 9px;
}
.cmnContact .linklist {
  display: flex;
  margin-top: 54px;
}
.cmnContact .linklist .item {
  width: 25%;
  border-right: 1px solid #dfdfdf;
}
.cmnContact .linklist .item:last-child {
  width: 25%;
  border-right: none;
}
.cmnContact .linklist .item a {
  display: block;
  text-decoration: none;
  background: #f8f7f6;
  color: #0e0e0e;
  opacity: 1;
}
.cmnContact .linklist .item .imgbox {
  width: 100%;
  height: 14.584vw;
  min-height: 208px;
  overflow: hidden;
  position: relative;
  display: block;
}
.cmnContact .linklist .item:last-child .imgbox {
  height: 14.584vw;
}
.cmnContact .linklist .item .imgbox img {
  transition: 0.3s;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.cmnContact .linklist .item a:hover .imgbox img {
  transform: scale(1.1);
}
.cmnContact .linklist .item .txtbox {
  position: relative;
  padding-top: 125px;
  padding-bottom: 120px;
}
.cmnContact .linklist .item .txtbox .Iconbox {
  position: absolute;
  top: calc(0% - 35px);
  left: calc(50% - 35px);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;
  overflow: hidden;
}
.cmnContact .linklist .item .txtbox .Iconbox::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: opacity 0.2s ease-out;
}
.cmnContact .linklist .item a:hover .txtbox .Iconbox::before {
  opacity: 0.6;
}
.cmnContact .linklist.lazyloaded .item:nth-child(1) .txtbox .Iconbox::before {
  background: url(../img/index/imgContacticon01.gif) center center no-repeat
    #ffffff;
  background-size: 30px auto;
}
.cmnContact .linklist.lazyloaded .item:nth-child(2) .txtbox .Iconbox::before {
  background: url(../img/index/imgContacticon02.gif) center center no-repeat
    #ffffff;
  background-size: 23px auto;
}
.cmnContact .linklist.lazyloaded .item:nth-child(3) .txtbox .Iconbox::before {
  background: url(../img/index/imgContacticon03.gif) center center no-repeat
    #ffffff;
  background-size: 30px auto;
}
.cmnContact .linklist.lazyloaded .item:nth-child(4) .txtbox .Iconbox::before {
  background: url(../img/index/imgContacticon04.gif) center center no-repeat
    #ffffff;
  background-size: 28px auto;
}
.cmnContact .linklist .item .txtbox .inbox {
  text-align: center;
  transition: opacity 0.2s ease-out;
}
.cmnContact .linklist .item a:hover .txtbox .inbox {
  opacity: 0.6;
}
.cmnContact .linklist .item .txtbox .inbox .sub {
  font-size: 20px;
  line-height: 1;
}
.cmnContact .linklist .item .txtbox .inbox .tit {
  font-size: 13px;
  line-height: 18px;
  font-weight: bold;
  padding-top: 31px;
}
.cmnContact .linklist .item .txtbox .inbox .btnbox {
  width: 120px;
  position: relative;
  margin: 0 auto;
  text-align: left;
  margin-top: 47px;
  padding-bottom: 15px;
}
.cmnContact .linklist .item .txtbox .inbox .btnbox::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #000;
}
.cmnContact .linklist .item .txtbox .inbox .btnbox span {
  display: block;
  position: relative;
}
.cmnContact .linklist .item .txtbox .inbox .btnbox span::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 3.5px);
  width: 6px;
  height: 7px;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 30% 50%);
  background: #000000;
  transition: 0.3s;
}
.cmnContact .linklist .item a:hover .txtbox .inbox .btnbox span::after {
  right: -4px;
}
@media only screen and (max-width: 767px) {
  .cmnContact {
    margin-top: 120px;
  }
  .page-top-index .cmnContact {
    margin-top: 68px;
  }
  .cmnContact .boxTit .tit {
    font-size: 12px;
    padding-top: 3px;
  }
  .cmnContact .linklist {
    flex-wrap: wrap;
    margin-top: 27px;
    padding: 39px 4% 50px;
    background: #f8f7f6;
  }
  .cmnContact .linklist .item {
    width: 49.278%;
    margin-right: 1.444%;
    border-right: none;
  }
  .cmnContact .linklist .item:nth-child(n + 3) {
    margin-top: 21px;
  }
  .cmnContact .linklist .item:last-child,
  .cmnContact .linklist .item:nth-child(2n) {
    width: 49.278%;
    margin-right: 0;
  }
  .cmnContact .linklist .item a {
    background: none;
  }
  .cmnContact .linklist .item .imgbox {
    height: 26.4vw;
    min-height: 0;
  }
  .cmnContact .linklist .item:last-child .imgbox {
    height: 26.4vw;
  }
  .cmnContact .linklist .item .txtbox {
    padding-top: 28px;
    padding-bottom: 20px;
  }
  .cmnContact .linklist .item .txtbox .Iconbox {
    top: calc(0% - 18px);
    left: calc(50% - 18px);
    width: 36px;
    height: 36px;
  }
  .cmnContact .linklist.lazyloaded .item:nth-child(1) .txtbox .Iconbox::before {
    background-size: 23px auto;
  }
  .cmnContact .linklist.lazyloaded .item:nth-child(2) .txtbox .Iconbox::before {
    background-size: 17px auto;
  }
  .cmnContact .linklist.lazyloaded .item:nth-child(3) .txtbox .Iconbox::before {
    background-size: 22px auto;
  }
  .cmnContact .linklist.lazyloaded .item:nth-child(4) .txtbox .Iconbox::before {
    background-size: 21px auto;
  }
  .cmnContact .linklist .item .txtbox .inbox {
    text-align: center;
  }
  .cmnContact .linklist .item .txtbox .inbox .sub {
    font-size: 16px;
  }
  .cmnContact .linklist .item .txtbox .inbox .tit {
    font-size: 11px;
    line-height: 1.45;
    padding-top: 9px;
  }
  .cmnContact .linklist .item .txtbox .inbox .btnbox {
    width: 66px;
    margin-top: 19px;
    padding-bottom: 6px;
  }
}

.cmnContact .boxTel {
  text-align: center;
  padding: 75px 0 85px;
}
.cmnContact .boxTel .tit {
  font-size: 13px;
  line-height: 1.5;
  font-weight: bold;
}
.cmnContact .boxTel .num {
  display: inline-block;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 2px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 10px;
  color: #000;
}
.cmnContact .boxTel .time {
  font-size: 13px;
  line-height: 1.5;
  font-weight: bold;
  padding-top: 13px;
  letter-spacing: 1px;
}
@media only screen and (max-width: 767px) {
  .cmnContact .boxTel {
    text-align: center;
    padding: 50px 0;
  }
  .cmnContact .boxTel .tit {
    font-size: 12px;
  }
  .cmnContact .boxTel .num {
    font-size: 26px;
    letter-spacing: 0px;
    margin-top: 9px;
  }
  .cmnContact .boxTel .time {
    font-size: 11px;
    padding-top: 8px;
    letter-spacing: 0px;
  }
}

/* secCmnIndexTit */
.secCmnIndexTit {
  height: 750px;
  padding-top: 70px;
  background: url(../img/common/tp.gif) center top no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-direction: column;
  position: relative;
}
.secCmnIndexTit::after {
  content: "";
  width: 1px;
  height: 100px;
  background: #efefef;
  position: absolute;
  bottom: -50px;
  left: calc(50% - 0.5px);
}
.secCmnIndexTit .titEng {
  font-size: 60px;
  font-weight: bold;
  letter-spacing: 2px;
}
.secCmnIndexTit .titJpn {
  font-size: 18px;
  margin-top: 10px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .secCmnIndexTit {
    height: 93.334vw;
    background-size: cover;
    padding-top: 26px;
  }
  .secCmnIndexTit::after {
    height: 40px;
    bottom: -20px;
  }
  .secCmnIndexTit .titEng {
    font-size: 30px;
    letter-spacing: 1px;
  }
  .secCmnIndexTit .titJpn {
    font-size: 12px;
    margin-top: 7px;
  }
}

/* secCmnDetailsTit */
.secCmnDetailsTit {
  font-size: 40px;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 250px;
}
@media only screen and (max-width: 767px) {
  .secCmnDetailsTit {
    font-size: 20px;
    margin-top: 100px;
  }
}

/* secCmnWorksList */
.secCmnWorksList {
  margin-top: 150px;
}
.secCmnWorksList .worksList {
  display: flex;
  flex-wrap: wrap;
}
.secCmnWorksList .worksItem {
  width: calc(100% / 3);
}
.secCmnWorksList .worksItem:nth-child(n + 4) {
  margin-top: 95px;
}
.secCmnWorksList .worksInner {
  display: block;
  text-decoration: none;
  color: #1f1f1f;
}
.secCmnWorksList .imgBox {
  position: relative;
  overflow: hidden;
}
.secCmnWorksList .imgBox::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.502);
  opacity: 0;
}
.secCmnWorksList .img {
  width: 100%;
  height: 0;
  padding-top: 67.96875%;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.secCmnWorksList .hoverTxt {
  font-size: 15px;
  letter-spacing: 0.5px;
  padding-right: 18px;
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: translateY(-120%);
  z-index: 10;
  transition-delay: 0s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.4s;
}
.secCmnWorksList .subTxt {
  position: relative;
}
.secCmnWorksList .subTxt::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 15px;
  right: -20px;
  top: calc(50% - 7px);
}
.secCmnWorksList .subTxt.lazyloaded::after {
  background: url(../img/works/iconWorksImg.png) center top / cover;
}
.secCmnWorksList .txtBox {
  padding: 38px 33px 0;
  transition: opacity 0.2s ease-out;
}
.secCmnWorksList .worksInner:hover .txtBox {
  opacity: 0.6;
}
.secCmnWorksList .tit {
  font-size: 13px;
  line-height: 1.5;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.secCmnWorksList .mainTit {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 1.5px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 15px;
}
.secCmnWorksList .txt {
  font-size: 12px;
  line-height: 1.5;
  color: #787878;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 13px;
}
.secCmnWorksList .worksInner:hover {
  opacity: 1;
}
.secCmnWorksList .worksInner:hover .imgBox::after {
  opacity: 1;
}
.secCmnWorksList .worksInner:hover .img {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}
.secCmnWorksList .worksInner:hover .img img {
  -webkit-filter: blur(2px);
  filter: blur(2px);
}
.secCmnWorksList .worksInner:hover .hoverTxt {
  opacity: 1;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .secCmnWorksList {
    margin-top: 60px;
  }
  .secCmnWorksList .worksItem {
    width: 50%;
  }
  .secCmnWorksList .worksItem:nth-child(n + 4) {
    margin-top: 37px;
  }
  .secCmnWorksList .worksItem:nth-child(n + 3) {
    margin-top: 37px;
  }
  .secCmnWorksList .img {
    padding-top: 68.086%;
  }
  .secCmnWorksList .txtBox {
    padding: 15px 14px 0;
  }
  .secCmnWorksList .tit {
    font-size: 11px;
  }
  .secCmnWorksList .mainTit {
    font-size: 15px;
    line-height: 1.33;
    letter-spacing: 1px;
    white-space: normal;
    text-overflow: inherit;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    max-height: 60px;
    margin-top: 9px;
  }
  .secCmnWorksList .txt {
    font-size: 10px;
    margin-top: 7px;
  }
}

/* cmnIconEvent */
.cmnIconEvent {
  width: 110px;
  height: 24px;
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cmnIconEvent.bg01 {
  background: #868273;
}
.cmnIconEvent.bg02 {
  background: #4a4a4a;
}
@media only screen and (max-width: 767px) {
  .cmnIconEvent {
    width: 100%;
    height: 22px;
    font-size: 10px;
  }
}

/* secCmnEventList */
.secCmnEventList {
  margin-top: 150px;
}
.secCmnEventList .eventList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.secCmnEventList .eventItem {
  width: 30.895%;
  margin-right: 3.6575%;
}
.secCmnEventList .eventItem:nth-child(3n),
.secCmnEventList .eventItem:last-child {
  margin-right: 0;
}
.secCmnEventList .eventItem:nth-child(n + 4) {
  margin-top: 77px;
}
.secCmnEventList .eventInner {
  display: block;
  text-decoration: none;
  color: #1f1f1f;
}
.secCmnEventList .imgBox {
  position: relative;
  overflow: hidden;
}
.secCmnEventList .imgBox::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.502);
  opacity: 0;
}
.secCmnEventList .img {
  width: 100%;
  height: 0;
  padding-top: 73.685%;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.secCmnEventList .hoverTxt {
  font-size: 15px;
  letter-spacing: 0.5px;
  padding-right: 18px;
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: translateY(-120%);
  z-index: 10;
  transition-delay: 0s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.4s;
}
.secCmnEventList .subTxt {
  position: relative;
}
.secCmnEventList .subTxt::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 15px;
  right: -20px;
  top: calc(50% - 7px);
}
.secCmnEventList .subTxt.lazyloaded::after {
  background: url(../img/works/iconWorksImg.png) center top / cover;
}
.secCmnEventList .txtBox {
  padding: 25px 0 0;
  transition: opacity 0.2s ease-out;
}
.secCmnEventList .eventInner:hover .txtBox {
  opacity: 0.6;
}
.secCmnEventList .mainTit {
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 16px;
}
.secCmnEventList .tit {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 12px;
}
.secCmnEventList .txt {
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 5px;
}
.secCmnEventList .endBox,
.secDetailsTop .endBox {
  display: flex;
  align-items: center;
}
.secCmnEventList .endTit,
.secDetailsTop .endTit {
  font-size: 13px;
  margin-left: 10px;
}
.secCmnEventList .endTxt {
  font-size: 14px;
  line-height: 1.85;
  margin-top: 9px;
}
.secCmnEventList .eventInner:hover {
  opacity: 1;
}
.secCmnEventList .eventInner:hover .imgBox::after {
  opacity: 1;
}
.secCmnEventList .eventInner:hover .img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.secCmnEventList .eventInner:hover .img img {
  -webkit-filter: blur(2px);
  filter: blur(2px);
}
.secCmnEventList .eventInner:hover .hoverTxt {
  opacity: 1;
  transform: translateY(-50%);
}
.secCmnEventList .img.end {
  filter: grayscale(100%);
}
@media only screen and (max-width: 767px) {
  .secCmnEventList {
    margin-top: 60px;
  }
  .secCmnEventList .eventItem {
    width: 48.696%;
    margin-right: 2.608%;
  }
  .secCmnEventList .eventItem:nth-child(3n) {
    margin-right: 2.608%;
  }
  .secCmnEventList .eventItem:nth-child(2n) {
    margin-right: 0;
  }
  .secCmnEventList .eventItem:nth-child(n + 4) {
    margin-top: 28px;
  }
  .secCmnEventList .eventItem:nth-child(n + 3) {
    margin-top: 28px;
  }
  .secCmnEventList .img {
    padding-top: 73.81%;
  }
  .secCmnEventList .txtBox {
    padding: 0;
  }
  .secCmnEventList .mainTit {
    font-size: 15px;
    line-height: 1.4;
    white-space: normal;
    text-overflow: inherit;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: 42px;
    margin-top: 14px;
  }
  .secCmnEventList .tit {
    font-size: 11px;
    margin-top: 2px;
  }
  .secCmnEventList .txt {
    font-size: 11px;
    margin-top: 1px;
  }
  .secCmnEventList .endBox {
    display: block;
    align-items: center;
  }
  .secCmnEventList .endTit {
    display: none;
  }
  .secCmnEventList .endTxt {
    font-size: 10px;
    line-height: 1.3;
    margin-top: 4px;
    text-align: center;
  }
  .secDetailsTop .endTit {
    font-size: 12px;
  }
}

/* animViewMore */
.animViewMore .imgBox {
  position: relative;
  overflow: hidden;
}
.animViewMore .imgBox::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.502);
  opacity: 0;
}
.animViewMore .img {
  width: 100%;
  height: 0;
  padding-top: 73.685%;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.animViewMore .hoverTxt {
  font-size: 15px;
  letter-spacing: 0.5px;
  padding-right: 18px;
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: translateY(-120%);
  z-index: 10;
  transition-delay: 0s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.4s;
}
.animViewMore:hover {
  opacity: 1;
}
.animViewMore:hover .imgBox::after {
  opacity: 1;
}
.animViewMore:hover .img {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}
.animViewMore:hover .img img {
  -webkit-filter: blur(2px);
  filter: blur(2px);
}
.animViewMore:hover .hoverTxt {
  opacity: 1;
  transform: translateY(-50%);
}

/* animThumb */
.animThumb {
  cursor: pointer;
}
.animThumb .imgBox {
  position: relative;
  overflow: hidden;
}
.animThumb .img {
  width: 100%;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 1;
}
.animThumb .img::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  z-index: 10;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.502);
  opacity: 0;
}
.animThumb .borderBox::before,
.animThumb .borderBox::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 0;
  height: 1px;
  transition: all 0.2s linear;
  z-index: 10;
}
.animThumb .borderBox::before {
  right: 5px;
  bottom: 5px;
}
.animThumb .borderBox::after {
  left: 5px;
  top: 5px;
}
.animThumb .imgBox {
  display: block;
}
.animThumb .imgBox::before,
.animThumb .imgBox::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 1px;
  height: 0;
  transition: all 0.1s linear;
  z-index: 10;
}
.animThumb .imgBox::before {
  left: 5px;
  bottom: 5px;
}
.animThumb .imgBox::after {
  right: 5px;
  top: 5px;
}
.animThumb.swiper-slide-thumb-active {
  opacity: 1;
}
.animThumb.swiper-slide-thumb-active .img::after {
  opacity: 1;
}
.animThumb.swiper-slide-thumb-active .borderBox::before,
.animThumb.swiper-slide-thumb-active .borderBox::after {
  width: calc(100% - 10px);
}
.animThumb.swiper-slide-thumb-active .borderBox::after {
  transition-delay: 0s; /*すぐ線を出現させる*/
}
.animThumb.swiper-slide-thumb-active .borderBox::before {
  transition-delay: 0.3s; /*線の出現を0.3秒遅らせる*/
}
.animThumb.swiper-slide-thumb-active .imgBox::before,
.animThumb.swiper-slide-thumb-active .imgBox::after {
  height: calc(100% - 10px);
}
.animThumb.swiper-slide-thumb-active .imgBox::before {
  transition-delay: 0.5s; /*線の出現を0.5秒遅らせる*/
}
.animThumb.swiper-slide-thumb-active .imgBox::after {
  transition-delay: 0.2s; /*線の出現を0.2秒遅らせる*/
}
@media only screen and (max-width: 767px) {
  .animThumb .borderBox::before {
    right: 2px;
    bottom: 2px;
  }
  .animThumb .borderBox::after {
    left: 2px;
    top: 2px;
  }
  .animThumb .imgBox::before {
    left: 2px;
    bottom: 2px;
  }
  .animThumb .imgBox::after {
    right: 2px;
    top: 2px;
  }
  .animThumb.swiper-slide-thumb-active .borderBox::before,
  .animThumb.swiper-slide-thumb-active .borderBox::after {
    width: calc(100% - 4px);
  }
  .animThumb.swiper-slide-thumb-active .imgBox::before,
  .animThumb.swiper-slide-thumb-active .imgBox::after {
    height: calc(100% - 4px);
  }
}

#header {
  position: fixed;
  width: 100%;
  height: 80px;
  top: 0;
  left: 0;
  z-index: 1000;
  min-width: 1400px;
  transition: 0.5s;
}
#header.scroll {
  background: #4ffafd;
  transition: 0.5s;
}
#header .inner {
  max-width: 1860px;
  width: calc(100% - 40px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  opacity: 0;
  animation: fadeIn 1s linear 0.5s 1 normal both;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#header .inner .logo {
  display: block;
  width: 259px;
}
#header.scroll .inner .logo {
  width: 282px;
}
#header .inner .logo img {
  width: 100%;
  height: auto;
}
#header .inner .rightbox {
  padding-right: 61px;
  padding-top: 10px;
  display: flex;
}
#header .inner .rightbox .linklist {
  display: flex;
}
#header .inner .rightbox .linklist li {
  padding-right: 50px;
  position: relative;
  transition: 0s;
}
#header.scroll .inner .rightbox .linklist,
#header .inner .rightbox .linklist.scrollonly {
  display: none;
}
#header.scroll .inner .rightbox .linklist.scrollonly {
  display: flex;
}
#header.scroll .inner .rightbox .linklist li {
  padding-right: 50px;
}
/* 追加 hover アクション */
#header .inner .rightbox .linklist .item.on a::after,
#header .inner .rightbox .linklist .item a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: #fff;
  bottom: 0;
  left: 0;
  transition: 0.5s;
}
/* 追加 hover アクション 終わり */
#header .inner .rightbox .linklist .item.on a::after,
#header .inner .rightbox .linklist .item a:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: #fff;
  bottom: 0;
  left: 0;
}
#header .inner .rightbox .linklist li:last-child {
}
#header .inner .rightbox .linklist li a {
  font-size: 20px;
  line-height: 18px;
  letter-spacing: 2px;
  padding: 10px 0;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: 0.5s;
}
/* 追加 hover アクション */
#header .inner .rightbox .linklist li a span {
  display: inline-block;
  transition: 0.5s;
  -webkit-transform: scale(1);
  transform: scale(1);
}
#header .inner .rightbox .linklist li a:hover span {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
/*追加 hover アクション 終わり*/
#header.scroll .inner .rightbox .linklist li a {
  font-size: 18px;
  color: #191d39;
}
#header .inner .rightbox .linklist li a:: span
#header .inner .rightbox .linkright {
  display: none;
}
#header.scroll .inner .rightbox .linkright {
  display: flex;
}
#header .inner .rightbox .linkright .item {
  position: relative;
  padding: 0 40px;
}
#header .inner .rightbox .linkright .item::after {
  content: "";
  width: 1px;
  height: 20px;
  position: absolute;
  left: 0;
  top: calc(50% - 10px);
  background: #fff;
}
#header .inner .rightbox .linkright .item a {
  font-size: 11px;
  line-height: 18px;
  letter-spacing: 0px;
  color: #fff;
  text-decoration: none;
}
#header .inner .logo img.is-brown {
  display: none;
}
.header-black #header .inner .logo img.is-brown {
  display: inline;
}
.header-black #header .inner .logo img.is-white {
  display: none;
}
.header-black #header.scroll .inner .logo img.is-brown {
  display: none;
}
.header-black #header.scroll .inner .logo img.is-white {
  display: inline;
}
.header-black #header:not(.scroll) .inner .rightbox .linklist li a {
  color: #1f1f1f;
}
@media only screen and (max-width: 767px) {
  #header {
    position: absolute;
    width: 100vw;
    height: 67px;
    top: 0;
    left: 0;
    z-index: 1003;
    min-width: 0;
  }
  #header.scroll {
    background: none;
  }
  #header .inner {
    width: 87%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  #header .inner .logo {
    width: 124px;
  }
  #header .inner .rightbox {
    display: none;
  }
}
#header .boxSubList {
  display: none;
  width: 240px;
  z-index: 999;
  position: absolute;
  top: 34px;
  left: -8px;
  padding-top: 20px;
}
#header .inner .rightbox .linklist .headerOpen .boxSubList a {
  color: #000;
}
#header .inner .rightbox .active .boxSubList {
  display: block;
}
#header .inner .rightbox .boxSubList .subItem {
  border-bottom: 1px solid #e5e6e7;
  background: #fff;
  padding: 0;
}
#header .inner .rightbox .boxSubList .subItem a {
  display: block;
  position: relative;
  font-size: 12px;
  line-height: 30px;
  padding: 9px 19px 10px;
}
#header .inner .rightbox .boxSubList .subItem .subItemLink::after,
#header .inner .rightbox li.active .boxSubList .subItem .subItemLink::after,
#header .inner .rightbox .boxSubList .subItem .subItemLink:hover::after,
#header
  .inner
  .rightbox
  li.active
  .boxSubList
  .subItem
  .subItemLink:hover::after {
  content: "";
  position: absolute;
  left: auto;
  right: 20px;
  top: calc(50% - 3.5px);
  width: 6px;
  height: 7px;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 30% 50%);
  background: #000;
}
#header .inner .rightbox .subItem + .subItem {
  border-top: 1px solid #cecece;
}
/*-----------------------------------------------
    btnNavi
-----------------------------------------------*/
#btnNavi {
  width: 32px;
  position: fixed;
  top: 2px;
  right: 30px;
  z-index: 9999;
}
#btnNavi a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  height: 70px;
  color: #fff;
}
#btnNavi .border {
  width: 100%;
  height: 7px;
  position: relative;
}
#btnNavi .border > span i {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
}
#btnNavi.scroll .border > span i {
  display: block;
  width: 100%;
  height: 1px;
  background: #191d39;
  position: absolute;
}
#btnNavi .border::before,
#btnNavi .border::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
}
#btnNavi.scroll .border::before,
#btnNavi.scroll .border::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #191d39;
  position: absolute;
}
#btnNavi.loaded .border::before,
#btnNavi.loaded .border::after {
  transition: all 0.4s ease-out;
}
#btnNavi .border::before {
  top: 9px;
}
#btnNavi .border::after {
  bottom: 15px;
}
#btnNavi.naviOpen .border::before,
#btnNavi.naviOpen .border::after,
#btnNavi.naviOpen.scroll .border::before,
#btnNavi.naviOpen.scroll .border::after {
  background: #191d39;
}
#btnNavi.naviOpen .border::before {
  transform: translateY(-9px) rotate(-45deg);
}
#btnNavi.naviOpen .border > span i {
  transform: translateX(-50%) scaleX(0);
}
#btnNavi.naviOpen .border::after {
  transform: translateY(9px) rotate(45deg);
}
@media only screen and (max-width: 1420px) {
  #btnNavi {
    right: auto;
    left: calc(1400px - 60px);
  }
}
.header-black #btnNavi:not(.naviOpen):not(.scroll) .border::before,
.header-black #btnNavi:not(.naviOpen):not(.scroll) .border::after {
  background: #1f1f1f;
}
@media only screen and (max-width: 767px) {
  #btnNavi {
    width: 67px;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    transition: 0.5s;
  }
  #btnNavi.scroll {
    background: #4ffafd;
  }
  #btnNavi.naviOpen {
    background: none;
  }
  #btnNavi a {
    height: 67px;
  }
  #btnNavi .border {
    height: 7px;
    width: 32px;
  }
  #btnNavi.naviOpen .border::before {
    transform: translateY(-9px) rotate(-45deg);
  }
  #btnNavi.naviOpen .border::after {
    transform: translateY(9px) rotate(45deg);
  }
}

/*-----------------------------------------------
    pnkz
-----------------------------------------------*/
#pnkz {
  width: 100%;
  background: #fff;
  border-top: solid 1px #d0ccc5;
  padding: 15px 0;
}
#pnkz .wrapper1230 {
  position: relative;
}
#pnkz li {
  display: inline-block;
  width: auto !important;
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 0.5px;
  vertical-align: top;
}
#pnkz li::before {
  content: "/";
  display: inline-block;
  padding: 0 3px;
  color: #000;
}
#pnkz li:first-child::before {
  display: none;
}
#pnkz a {
  color: #1f1f1f;
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  #pnkz {
    padding: 5px 0;
  }
  #pnkz .wrapper1230 {
    white-space: nowrap;
    overflow-y: scroll;
    width: 96%;
    margin: 0 0 0 4%;
  }
  #pnkz li {
    font-size: 11px;
    letter-spacing: 0;
  }
}

/*-----------------------------------------------
    footer
-----------------------------------------------*/
#footer .onbox {
  background-position: center top;
  height: 750px;
}
#footer .onbox.lazyloaded {
  background-image: url(../img/common/imgbackFooter.jpg);
}
#footer .onbox .inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 98px;
}
#footer .onbox .inner .imgItem {
  position: absolute;
  right: calc(23.6% - 181px);
  top: 146px;
}
#footer .onbox .inner .linklist {
  display: flex;
}
#footer .onbox .inner .linklist .itemlist {
  margin-right: 80px;
}
#footer .onbox .inner .linklist .itemlist:nth-child(2) {
  margin-right: 0;
  margin-top: 40px;
}
#footer .onbox .inner .linklist .itemlist .link {
  font-size: 15px;
  line-height: 30px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  font-weight: bold;
  color: #1f1f1f;
  text-decoration: none;
  display: block;
}
#footer .onbox .inner .linklist .itemlist .link.no {
  margin-bottom: 0;
}
#footer .onbox .inner .linklist .itemlist .sublist {
  padding-left: 7px;
  padding-top: 2px;
  padding-bottom: 14px;
}
#footer .onbox .inner .linklist .itemlist .sublist .item {
}
#footer .onbox .inner .linklist .itemlist .sublist .subitem {
  text-decoration: none;
  font-size: 12px;
  line-height: 26px;
  color: #1f1f1f;
}
#footer .onbox .inner .linklist .itemlist .sublist .subitem span {
  position: relative;
  padding-left: 20px;
}
#footer .onbox .inner .linklist .itemlist .sublist .subitem span::after {
  content: "";
  position: absolute;
  background: #aaaaaa;
  top: calc(50% - 0.5px);
  left: 0;
  width: 15px;
  height: 1px;
}
#footer .onbox .inner .txt {
  font-size: 12px;
  line-height: 26px;
  font-weight: bold;
  padding-top: 44px;
}
#footer .underbox {
  height: 80px;
}
#footer .underbox .inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
#footer .underbox .inner .secSnsbox {
  display: flex;
  position: absolute;
  right: 0;
  top: calc(50% - 10px);
}
#footer .underbox .inner .secSnsbox .link {
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  text-decoration: none;
  letter-spacing: 0.5px;
  color: #000;
  margin-left: 34px;
}
#footer .underbox .inner .secSnsbox .link span {
  position: relative;
  padding-left: 28px;
}
#footer .underbox .inner .secSnsbox .link span::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 8px);
  width: 20px;
  height: 20px;
}
#footer .underbox .inner .secSnsbox .link.Inst span::after {
  background: url(../img/common/imgSnsicon01.gif) center center no-repeat;
  background-size: 20px auto;
}
#footer .underbox .inner .secSnsbox .link.Pint span::after {
  background: url(../img/common/imgSnsicon02.gif) center center no-repeat;
  background-size: 20px auto;
}
#footer .underbox .inner .secSnsbox .link.YouTube span::after {
  background: url(../img/common/imgSnsicon03.gif) center center no-repeat;
  background-size: 20px auto;
}
#footer .underbox .inner .copybox {
  display: flex;
  align-items: center;
  padding: 30px 0;
}
#footer .underbox .inner .copybox .copy {
  font-size: 11px;
  line-height: 1.5;
}
#footer .underbox .inner .copybox .linklist {
  position: relative;
  display: flex;
  margin-left: 31px;
}
#footer .underbox .inner .copybox .linklist::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 10px);
  width: 1px;
  height: 20px;
  background: #dedede;
}
#footer .underbox .inner .copybox .linklist .item {
  display: inline-block;
  margin-left: 30px;
}
#footer .underbox .inner .copybox .linklist .item a {
  text-decoration: none;
  color: #000;
  font-size: 12px;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  #footer {
    height: auto;
    padding-bottom: 45px;
  }
  #footer .onbox,
  #footer .onbox.lazyloaded {
    background: none;
    height: auto;
  }
  #footer .onbox .inner {
    width: 100%;
    padding-top: 0px;
  }
  #footer .onbox .inner .imgItem {
    position: static;
  }
  #footer .onbox .inner .linklist {
    display: none;
  }
  #footer .inner .txt {
    font-size: 10px;
    line-height: 1.7;
    padding-top: 22px;
  }
  #footer .underbox {
    height: auto;
    padding-top: 39px;
  }
  #footer .underbox .inner {
    width: 85.33%;
    margin: 0 auto;
    position: relative;
  }
  #footer .underbox .inner .secSnsbox {
    display: flex;
    position: static;
    justify-content: center;
  }
  #footer .underbox .inner .secSnsbox .link {
    font-size: 11px;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin-left: 20px;
  }
  #footer .underbox .inner .secSnsbox .link:first-child {
    margin-left: 0;
  }
  #footer .underbox .inner .secSnsbox .link span {
    padding-left: 25px;
  }
  #footer .underbox .inner .secSnsbox .link span::after {
    top: calc(50% - 8px);
  }
  #footer .underbox .inner .copybox {
    display: block;
    padding: 37px 0 0;
  }
  #footer .underbox .inner .copybox .copy {
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.25px;
    text-align: center;
  }
  #footer .underbox .inner .copybox .linklist {
    display: none;
  }
}
/*-----------------------------------------------
    fNavi
-----------------------------------------------*/
#fNavi {
  display: none;
}
@media only screen and (max-width: 767px) {
  #fNavi {
    width: 100vw;
    height: 45px;
    background: #4ffafd;
    display: block;
    position: fixed;
    right: 0;
    bottom: 0;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    z-index: 10011;
  }
  .no-fnav #fNavi {
    display: none;
  }
  #fNavi .linklist {
    display: flex;
    height: 100%;
  }
  #fNavi .linklist li {
    width: calc(100% / 2);
    border-right: 1px solid #fff;
  }
  #fNavi .linklist li a {
    text-decoration: none;
    color: #191d39;
    display: block;
    height: 100%;
  }
  #fNavi .linklist li:last-child {
    border: none;
  }
  #fNavi.on {
    bottom: 0;
    transform: none;
    -webkit-transform: none;
  }
  #fNavi .linklist li a .inbox {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
  }
  #fNavi .linklist li a .inbox .txt {
    font-size: 15px;
    line-height: 13px;
    text-align: left;
    position: relative;
    padding-left: 0px;
  }
  #fNavi .linklist li a .inbox .txt::after {
    content: "";
    position: absolute;
    left: 0;
  }
  #fNavi .linklist li:nth-child(1) a .inbox .txt::after {
    top: calc(50% - 6.5px);
    width: 19px;
    height: 13px;
    background: url(../img/common/imgfNav01.png) center center no-repeat;
    background-size: contain;
  }
  #fNavi .linklist li:nth-child(2) a .inbox .txt {
    padding-left: 0px;
  }
  #fNavi .linklist li:nth-child(2) a .inbox .txt::after {
    top: calc(50% - 8.5px);
    width: 14px;
    height: 17px;
    background: url(../img/common/imgfNav02.png) center center no-repeat;
    background-size: contain;
  }
  #fNavi .linklist li:nth-child(3) a .inbox .txt {
    padding-left: 0px;
    letter-spacing: -1px;
  }
  #fNavi .linklist li:nth-child(3) a .inbox .txt::after {
    top: calc(50% - 9px);
    width: 22px;
    height: 18px;
    background: url(../img/common/imgfNav03.png) center center no-repeat;
    background-size: contain;
  }
}
@media only screen and (max-width: 340px) {
  #fNavi .linklist li a .inbox .txt {
    font-size: 10px;
  }
}

/*-----------------------------------------------
    fade
-----------------------------------------------*/
#fade {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  opacity: 1;
  background-color: #ffffff;
  z-index: 100;
}

/*-----------------------------------------------
    overlay
-----------------------------------------------*/
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  z-index: -1;
}
#overlay.is-active {
  animation: fadeAnimationIn 0.5s ease-in-out forwards;
}

@keyframes fadeAnimationIn {
  0% {
    opacity: 0;
    z-index: -1;
  }
  1% {
    opacity: 0;
    z-index: 999;
  }
  100% {
    opacity: 1;
    z-index: 999;
  }
}

/*-----------------------------------------------
    menu
-----------------------------------------------*/
#menu {
  display: none;
  position: fixed;
  right: 0px;
  background: #fff;
  opacity: 0.8;
  z-index: 9998;
  padding: 108px 0;
  min-height: 100vh;
  width: 100%;
}

/* 追加 side_menu */
#menu .side_menu {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  margin-top: 50px;
}
#menu .side_menu .words .side_menu_txt {
  color: #191d39;
  font-size: 25px;
  line-height: 25px;
  padding-bottom: 39px;
}
@media only screen and (max-width: 767px) {
  #menu .side_menu {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }
  #menu .side_menu .words .side_menu_txt {
    color: #191d39;
    /*font-size: 15px;*/
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 35px;
    text-align: center;
    padding-bottom: 20px;
  }
}
/* 追加 side_menu 終わり */
/*@media only screen and (max-width: 767px) {
  #menu {
    display: none;
    position: relative;
    background: #191d39;
    z-index: 9998;
    padding: 108px 0;
    min-height: 100vh;
    width: 100%;
  }
}*/
#menu .inner {
  width: 1000px;
  display: block;
  margin: 0 auto;
  position: relative;
}
#menu .inner .toplinkbox {
  width: 370px;
  position: absolute;
  right: 0;
  margin-top: 28px;
}
#menu .inner .toplinkbox .list {
  display: flex;
  flex-wrap: wrap;
}
#menu .inner .toplinkbox .list li {
  width: 180px;
  margin-right: 10px;
}
#menu .inner .toplinkbox .list li:nth-child(2n) {
  margin-right: 0;
}
#menu .inner .toplinkbox .list li:nth-child(n + 3) {
  margin-top: 10px;
}
#menu .inner .toplinkbox .list li a {
  background: #fff;
  text-decoration: none;
  display: block;
  position: relative;
  color: #0e0e0e;
  height: auto;
  padding-bottom: 43px;
}
#menu .inner .toplinkbox .list li a .txtbox {
  text-align: center;
}
#menu .inner .toplinkbox .list li a .txtbox .tit {
  position: relative;
  font-size: 13px;
  line-height: 20px;
  padding-top: 76px;
}
#menu .inner .toplinkbox .list li a .txtbox .txt {
  font-size: 12px;
  padding-top: 3px;
  line-height: 1.5;
}
#menu .inner .toplinkbox .list li a .txtbox .tit::after {
  content: "";
  position: absolute;
}
#menu .inner .toplinkbox .list li:nth-child(1) .tit::after {
  width: 30px;
  height: 24px;
  left: calc(50% - 17px);
  top: 42px;
  background: url(../img/common/imgmenuIcon01.gif) center center no-repeat;
  background-size: contain;
}
#menu .inner .toplinkbox .list li:nth-child(2) .tit::after {
  top: 44px;
  width: 23px;
  height: 21px;
  left: calc(50% - 11.5px);
  background: url(../img/common/imgmenuIcon02.gif) center center no-repeat;
  background-size: contain;
}
#menu .inner .toplinkbox .list li:nth-child(3) .tit::after {
  width: 30px;
  height: 20px;
  top: 43px;
  left: calc(50% - 15px);
  background: url(../img/common/imgmenuIcon03.gif) center center no-repeat;
  background-size: contain;
}
#menu .inner .toplinkbox .list li:nth-child(4) .tit::after {
  width: 34px;
  height: 34px;
  left: calc(50% - 17px);
  background: url(../img/common/imgmenuIcon04.gif) center center no-repeat;
  background-size: contain;
  top: 35px;
}

#menu .inner .toplinkbox .modelbox {
  padding-top: 23px;
}
#menu .inner .toplinkbox .modelbox .tit {
  font-size: 15px;
  line-height: 45px;
  color: #fff;
}
#menu .inner .toplinkbox .modelbox .modellink {
  position: relative;
  background: #fff;
  text-decoration: none;
  color: #1f1f1f;
  display: block;
  margin-top: 10px;
}
#menu .inner .toplinkbox .modelbox .modellink .itembox {
  position: absolute;
  top: calc(0% - 14px);
  right: 2px;
}
#menu .inner .toplinkbox .modelbox .modellink .modelbox {
  display: flex;
  padding: 0;
}
#menu .inner .toplinkbox .modelbox .modellink .modelbox .imgbox {
  width: 90px;
}
#menu .inner .toplinkbox .modelbox .modellink .modelbox .txtbox {
  width: calc(100% - 90px);
  padding-left: 20px;
  color: #000;
  padding-top: 27px;
}
#menu .inner .toplinkbox .modelbox .modellink .modelbox .txtbox .tit {
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
  color: #1f1f1f;
}
#menu .inner .linkbox {
  display: flex;
  min-height: 572px;
}
#menu .inner .linkbox .inbox {
  margin-right: 25%;
}
#menu .inner .linkbox .inbox .linklist {
  width: 245px;
}
#menu .inner .linkbox .inbox .linklist .linkItem {
  border-bottom: 1px solid #333333;
}
#menu .inner .linkbox .inbox .linklist .link {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  line-height: 45px;
  display: block;
  position: relative;
  padding: 11px 0 12px;
}
#menu .inner .linkbox .inbox .linklist .link::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 3.5px);
  width: 6px;
  height: 7px;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 30% 50%);
  background: #fff;
}
#menu .inner .linkbox .inbox .linklist .link.Tabstart {
  cursor: pointer;
}
#menu .inner .linkbox .inbox .linklist .link.Tabstart::after {
  top: calc(50% - 3px);
  width: 7px;
  height: 6px;
  clip-path: polygon(0 0, 50% 30%, 100% 0, 50% 100%);
  transform: scale(1);
}
#menu .inner .linkbox .inbox .linklist .link.Tabstart.opened::after {
  transform: scale(1, -1);
}
#menu .inner .linkbox .inbox .linklist .sublist {
  padding-left: 15px;
  padding-bottom: 4px;
}
#menu .inner .linkbox .inbox .linklist .Tabstart + .sublist {
  display: none;
}
#menu .inner .linkbox .inbox .linklist .sublist li {
  margin-bottom: 19px;
}
#menu .inner .linkbox .inbox .linklist .sublist li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.25;
  display: block;
}
#menu .inner .linkbox .inbox .linklist .sublist li a span {
  position: relative;
  padding-left: 9px;
}
#menu .inner .linkbox .inbox .linklist .sublist li a span::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  left: 0px;
  width: 4px;
  height: 1px;
  background-color: #5e5e5e;
}
#menu .inner .linkbox .inbox .list02 {
  margin-top: 31px;
}
#menu .inner .linkbox .inbox .list02 .box {
  margin-bottom: 15px;
}
#menu .inner .linkbox .inbox .list02 .link {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  display: inline-block;
}
#menu .inner .linkbox .inbox .snsbox {
  margin-top: 37px;
}
#menu .inner .linkbox .inbox .snsbox .box {
  margin-bottom: 15px;
}
#menu .inner .linkbox .inbox .snsbox .box .link {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
}
#menu .inner .linkbox .inbox .snsbox .box .link span {
  position: relative;
  padding-left: 27px;
}
#menu .inner .linkbox .inbox .snsbox .box .link span::after {
  content: "";
  position: absolute;
  left: 0;
}
#menu .inner .linkbox .inbox .snsbox .box .link.Inst span::after {
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  background: url(../img/common/imgmenuSnsicon01.png) center center no-repeat;
  background-size: contain;
}
#menu .inner .linkbox .inbox .snsbox .box .link.Pint span::after {
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  background: url(../img/common/imgmenuSnsicon02.png) center center no-repeat;
  background-size: contain;
}
#menu .inner .linkbox .inbox .snsbox .box .link.YouTube span::after {
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  background: url(../img/common/imgmenuSnsicon03.png) center center no-repeat;
  background-size: contain;
}
#menu .inner .Telbox {
  text-align: center;
  color: #fff;
  margin-top: 21px;
}
#menu .inner .Telbox .tit {
  font-size: 12px;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.5px;
}
#menu .inner .Telbox .num {
  display: inline-block;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 2px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 10px;
  color: #fff;
}
#menu .inner .Telbox .time {
  font-size: 13px;
  line-height: 1.5;
  font-weight: bold;
  padding-top: 13px;
  letter-spacing: 0px;
}
@media only screen and (max-width: 767px) {
  #menu {
    padding: 66px 0 0;
  }
  #menu .inner {
    width: 86.66%;
    display: block;
    margin: 0 auto;
    position: relative;
  }
  #menu .inner .toplinkbox {
    width: 100%;
    position: static;
    margin-top: 0;
  }
  #menu .inner .toplinkbox .list {
    display: flex;
    flex-wrap: wrap;
  }
  #menu .inner .toplinkbox .list li {
    width: 48.624%;
    margin-right: 2.752%;
  }
  #menu .inner .toplinkbox .list li:nth-child(2n) {
    margin-right: 0;
  }
  #menu .inner .toplinkbox .list li:nth-child(n + 3) {
    margin-top: 10px;
  }
  #menu .inner .toplinkbox .list li a {
    padding: 13px 0 14px;
  }
  #menu .inner .toplinkbox .list li a .txtbox {
    text-align: left;
    position: relative;
    padding-left: 40px;
  }
  #menu .inner .toplinkbox .list li a .txtbox::after {
    content: "";
    position: absolute;
  }
  #menu .inner .toplinkbox .list li a .txtbox .tit {
    display: none;
  }
  #menu .inner .toplinkbox .list li a .txtbox .txt {
    font-size: 11px;
    padding-top: 0;
    line-height: 18px;
  }
  #menu .inner .toplinkbox .list li:nth-child(1) .txtbox::after {
    width: 21px;
    height: 17px;
    left: 10px;
    top: calc(50% - 8.5px);
    background: url(../img/common/imgmenuIcon01.gif) center center no-repeat;
    background-size: contain;
  }
  #menu .inner .toplinkbox .list li:nth-child(2) .txtbox::after {
    top: calc(50% - 7.5px);
    width: 16px;
    height: 15px;
    left: 13px;
    background: url(../img/common/imgmenuIcon02.gif) center center no-repeat;
    background-size: contain;
  }
  #menu .inner .toplinkbox .list li:nth-child(3) .txtbox::after {
    width: 21px;
    height: 14px;
    top: calc(50% - 7px);
    left: 11px;
    background: url(../img/common/imgmenuIcon03.gif) center center no-repeat;
    background-size: contain;
  }
  #menu .inner .toplinkbox .list li:nth-child(4) .txtbox::after {
    width: 20px;
    height: 20px;
    left: 11px;
    background: url(../img/common/imgmenuIcon04.gif) center center no-repeat;
    background-size: contain;
    top: calc(50% - 10px);
  }

  #menu .inner .modelbox {
    padding-top: 11px;
  }
  #menu .inner .modelbox .tit {
    font-size: 15px;
    line-height: 45px;
    color: #fff;
  }
  #menu .inner .modelbox .modellink {
    position: relative;
    background: #fff;
    text-decoration: none;
    color: #1f1f1f;
    display: block;
    max-width: 375px;
    margin-top: 10px;
  }
  #menu .inner .modelbox .modellink .itembox {
    position: absolute;
    top: calc(0% - 14px);
    right: 0px;
    width: 121px;
  }
  #menu .inner .modelbox .modellink .modelbox {
    display: flex;
    padding: 0;
  }
  #menu .inner .modelbox .modellink .modelbox .imgbox {
    width: 90px;
  }
  #menu .inner .modelbox .modellink .modelbox .txtbox {
    width: calc(100% - 90px);
    padding-left: 14px;
    color: #000;
    padding-top: 27px;
  }
  #menu .inner .modelbox .modellink .modelbox .txtbox .tit {
    font-size: 11px;
    line-height: 17px;
    color: #000;
  }
  #menu .inner .linkbox {
    display: block;
    min-height: auto;
    margin-top: 12px;
  }
  #menu .inner .linkbox .inbox {
    margin-right: 0;
  }
  #menu .inner .linkbox .inbox .linklist {
    width: 100%;
  }
  #menu .inner .linkbox .inbox .linklist .linkItem {
    border-bottom: 1px solid #333333;
  }
  #menu .inner .linkbox .inbox .linklist .link {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    line-height: 45px;
    display: block;
    position: relative;
    padding: 11px 0 12px;
  }
  #menu .inner .linkbox .inbox .linklist .link::after {
    content: "";
    position: absolute;
    right: 0;
    top: calc(50% - 3.5px);
    width: 6px;
    height: 7px;
    clip-path: polygon(0 0, 100% 50%, 0 100%, 30% 50%);
    background: #fff;
  }
  #menu .inner .linkbox .inbox .linklist .link.Tabstart::after {
    top: calc(50% - 3px);
    width: 7px;
    height: 6px;
    clip-path: polygon(0 0, 50% 30%, 100% 0, 50% 100%);
    transform: scale(1);
  }
  #menu .inner .linkbox .inbox .linklist .link.Tabstart.opened::after {
    transform: scale(1, -1);
  }
  #menu .inner .linkbox .inbox .linklist .sublist {
    padding-left: 19px;
    padding-bottom: 4px;
  }
  #menu .inner .linkbox .inbox .linklist .sublist li {
    margin-bottom: 19px;
  }
  #menu .inner .linkbox .inbox .linklist .sublist li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.25;
    display: block;
  }
  #menu .inner .linkbox .inbox .linklist .sublist li a span {
    position: relative;
    padding-left: 9px;
  }
  #menu .inner .linkbox .inbox .linklist .sublist li a span::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    left: 0px;
    width: 4px;
    height: 1px;
    background-color: #5e5e5e;
  }
  #menu .inner .linkbox .inbox .list02 {
    margin-top: 27px;
    border-top: 1px solid #333333;
    padding-top: 23px;
    padding-bottom: 5px;
    border-bottom: 1px solid #333333;
  }
  #menu .inner .linkbox .inbox .list02 .box {
    margin-bottom: 18px;
  }
  #menu .inner .linkbox .inbox .list02 .link {
    font-size: 12px;
  }
  #menu .inner .linkbox .inbox .snsbox {
    margin-top: 53px;
    display: flex;
    justify-content: center;
  }
  #menu .inner .linkbox .inbox .snsbox .box {
    margin-bottom: 0;
    margin-right: 19px;
  }
  #menu .inner .linkbox .inbox .snsbox .box:last-child {
    margin-right: 0;
  }
  #menu .inner .linkbox .inbox .snsbox .box .link {
    font-size: 12px;
    letter-spacing: 0.5px;
  }
  #menu .inner .linkbox .inbox .snsbox .box .link span {
    position: relative;
    padding-left: 25px;
  }
  #menu .inner .linkbox .inbox .snsbox .box .link span::after {
    content: "";
    position: absolute;
    left: 0;
  }
  #menu .inner .linkbox .inbox .snsbox .box .link.Inst span::after {
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    background: url(../img/common/imgmenuSnsicon01.png) center center no-repeat;
    background-size: contain;
  }
  #menu .inner .linkbox .inbox .snsbox .box .link.Pint span::after {
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    background: url(../img/common/imgmenuSnsicon02.png) center center no-repeat;
    background-size: contain;
  }
  #menu .inner .linkbox .inbox .snsbox .box .link.YouTube span::after {
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    background: url(../img/common/imgmenuSnsicon03.png) center center no-repeat;
    background-size: contain;
  }
  #menu .inner .Telbox {
    margin-top: 45px;
    margin-bottom: 22px;
  }
  #menu .inner .Telbox .tit {
    font-size: 12px;
    letter-spacing: 0;
  }
  #menu .inner .Telbox .num {
    font-size: 26px;
    letter-spacing: 0px;
  }
  #menu .inner .Telbox .time {
    font-size: 11px;
    line-height: 1.5;
    padding-top: 7px;
  }
  #menu .label {
    background: #7b796e;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 5px 0;
  }
  #menu .label .txt {
    font-size: 12px;
    line-height: 1.6;
    font-weight: bold;
  }
}

/*-----------------------------------------------
    secCmintit
-----------------------------------------------*/
.secCmintit {
  text-align: center;
}
.secCmintit .subtit {
  font-size: 34px;
  line-height: 1.5;
  letter-spacing: 1px;
}
.secCmintit .tit {
  font-size: 28px;
  line-height: 1.8;
  font-weight: bold;
  padding-top: 9px;
}
@media only screen and (max-width: 767px) {
  .secCmintit .tit {
    font-size: 12px;
    padding-top: 3px;
  }
}

/*追加*/
.housemaker-planbox-logo {
  margin: 5% 3% 3% 3%;
  max-width: 539px;
}

.housemaker-planbox2 {
  padding: 199px 0 199px 0;
  margin: 0 auto;
  width: 100%;
  background-image: url(../images/);
  height: auto;
  margin: 0 auto;
  text-align: center;
}

.housemaker-planbox2 img {
  width: 80%;
}

@media only screen and (max-width: 1200px) {
  .housemaker-planbox2 {
    padding: 159px 0 99px 0;
  }
}

@media only screen and (max-width: 767px) {
  .housemaker-planbox2 {
    padding: 50px 0 73px 0;
  }
  .housemaker-planbox-logo {
    margin: 5% 3% 3% 3%;
    max-width: 281px;
  }
}
