@charset "UTF-8";

/*==========================================
PC共通
===========================================*/
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0 auto;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  color: #000;
  line-height: 1.8;
  text-align: center;
  letter-spacing: .08em;
  font-size: 1.6rem;
  word-break: normal;
}

#wrapper {
  min-width: 1200px;
}

/*==========================================
PC表示で電話番号リンクを無効
===========================================*/
a[href^="tel:"] {
  pointer-events: none;
}

/*==========================================
サイトの標準横幅と内部余白
===========================================*/
.inbox {
  width: 1080px;
  margin: 0 auto;
}

.com-pd {
  padding: 115px 0;
}

.com-pt {
  padding-top: 115px;
}

.com-pb {
  padding-bottom: 115px;
}

.com-mb {
  margin-bottom: 115px;
}

/*==========================================
PC非表示
===========================================*/
.pc-none {
  display: none !important;
}

/*==========================================
パンくずリスト
===========================================*/
div .bread {
  font-size: 10px;
  text-align: left;
  position: relative;
  z-index: 1;
}
div .bread .breadcrumbs {
  position: absolute;
  width: 1080px;
  margin: 0 auto;
  left: 0;
  top: 10px;
}
div .bread li {
  display: inline-block;
  color: #1b2e73;
}
div .bread li:after {
  content: " > ";
  padding: 0 2px;
  color: #999;
}
div .bread li:last-child:after {
  content: "";
}
div .bread li a {
  color: #999;
}

/*==========================================
float
===========================================*/
.fl-l {
  float: left;
}

.fl-r {
  float: right;
}

/*==========================================
Flexbox
===========================================*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*折り返し
-----------------------*/
.flx-wrp {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/*逆順
-----------------------*/
.flx-rr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/*水平方向の揃え
=================================================*/
/*初期値
-----------------------*/
.flx-strt {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

/*並列で均等配置（左右隙間なし=space-between）
-----------------------*/
.flx-btw {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*並列で均等配置（左右隙間あり=space-around）
-----------------------*/
.flx-ard {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

/*水平揃え　末揃え
-----------------------*/
.flx-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/*水平揃え　中央揃え
-----------------------*/
.flx-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*垂直方向の揃え
=================================================*/
/*水平揃え　上揃え
-----------------------*/
.flx-alitem-strt {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/*水平揃え　高さ揃え
-----------------------*/
.flx-alitem-strch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

/*水平揃え　縦・横の中央揃え
-----------------------*/
.flx-alitem-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*水平揃え　下揃え
-----------------------*/
.flx-alitem-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/*水平揃え　ベースライン揃え
-----------------------*/
.flx-alitem-base {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

/*複数行にした揃え方
=================================================*/
/*初期値
-----------------------*/
.flx-alcont-strt {
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

/*親要素の開始位置から配置。上揃え
-----------------------*/
.flx-alcont-strch {
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

/*親要素の終点から配置。下揃え
-----------------------*/
.flx-alcont-end {
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

/*中央揃え
-----------------------*/
.flx-alcont-c {
  -ms-flex-line-pack: center;
      align-content: center;
}

/*最初と最後の子要素を上下の端に配置し、残りの要素は均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-btw {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

/*上下端にある子要素も含め、均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-ard {
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

.flex-order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.flex-order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

/*==========================================
スマホ用ドロワー無効
===========================================*/
.drawer_menu {
  display: none;
}

#nav-toggle,
#global-nav {
  display: none;
}

.drawer_menu {
  display: none;
}

/*==========================================
header
===========================================*/
#header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1001;
  overflow: inherit;
}
#header .hd-right {
  width: 525px;
  margin-left: auto;
  color: #fff;
}
#header .hd-right .hd-info {
  width: 265px;
  margin-left: auto;
}
#header .hd-right .hd-info .phone-num {
  background: url(../img/common/hd-tel_icon.png) left center no-repeat;
  color: #fff;
  margin-right: 15px;
}
#header .hd-right .work-time {
  font-size: 1.2rem;
}

.fixed-mail {
  position: fixed;
  z-index: 1001;
  width: 118px;
  height: 118px;
  color: #fff;
  font-size: 1.2rem;
  right: 35px;
  bottom: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 25px 0 35px 0;
  overflow: initial;
}
.fixed-mail:before {
  width: 84px;
  height: 84px;
  position: absolute;
  content: '';
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1b2e73+50,283d86+50 */
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #1b2e73), color-stop(50%, #283d86));
  background: linear-gradient(to right, #1b2e73 50%, #283d86 50%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.fixed-mail:after {
  position: absolute;
  content: '';
  background: url('../img/common/mail_icon.png?1694509639');
  width: 19px;
  height: 14px;
  background-size: 100%;
  top: 35px;
  right: 0;
  bottom: auto;
  left: 0;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin: 0 auto;
}

.top-hd {
  height: 27.083vw;
  max-height: 520px;
  min-height: 325px;
}
.top-hd h1 {
  position: absolute;
  left: 0;
  right: 0;
  top: 225px;
  top: clamp(145px, 11.8vw, 225px);
}

#mv {
  height: 27.083vw;
  max-height: 520px;
  min-height: 325px;
  background: url(../img/top/mv/mv_bg.jpg) center/cover no-repeat;
}

/*==========================================
nav
===========================================*/
#gnav {
  position: fixed;
  background: #fff;
  padding: 15px 150px 15px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1000;
}
#gnav li {
  font-weight: 700;
  margin-right: 2.6041%;
}
#gnav li:last-child {
  margin-right: 0;
}
#gnav li a {
  padding-bottom: 3px;
  display: block;
  position: relative;
}
#gnav li a:before {
  content: '';
  width: 0;
  left: 50%;
  bottom: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: 1px solid #1b2e73;
  position: absolute;
  display: block;
}
#gnav li a:after {
  content: '';
  width: 0;
  right: 50%;
  bottom: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: 1px solid #1b2e73;
  position: absolute;
  display: block;
}
#gnav li a:hover {
  opacity: 1;
  color: #1b2e73;
}
#gnav li a:hover:before {
  width: 50%;
  border-bottom: 1px solid #1b2e73;
}
#gnav li a:hover:after {
  width: 50%;
  border-bottom: 1px solid #1b2e73;
}
#gnav .current a {
  color: #1b2e73;
  border-bottom: 1px solid #1b2e73;
}
#gnav .current a:before, #gnav .current a:after {
  border-bottom: none;
}
#gnav .current a:hover:before, #gnav .current a:hover:after {
  border-bottom: none;
}

/*==========================================
共通ブロック・要素
===========================================*/
.txt-blc {
  text-align: left;
}
.txt-blc p {
  margin-bottom: 30px;
  line-height: 1.8;
}
.txt-blc p:last-child {
  margin-bottom: 0;
}

#g-map h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
#g-map h4 span {
  padding-left: 20px;
}
#g-map .map {
  height: 400px;
}
#g-map .map iframe {
  width: 100%;
  height: 100%;
}

.phone-num {
  font-size: 3rem;
  padding-left: 20px;
}
.phone-num small {
  font-size: 1.6rem;
}

.more-btn {
  display: block;
  border: 1px solid;
  border-radius: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  padding: 12px 5px;
  letter-spacing: .16em;
  font-size: 1.5rem;
}
.more-btn span {
  position: relative;
}
.more-btn span:before {
  position: absolute;
  content: '';
  background: url('../img/common/more-black_arr.png?1694509639');
  width: 40px;
  height: 8px;
  background-size: 100%;
  top: 0;
  right: auto;
  bottom: 0;
  left: -67px;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin: auto 0;
}
.more-btn:hover {
  background: #141414;
  opacity: 1;
  color: #fff;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-dl > dl {
  border-bottom: 1px solid #ccc;
  font-family: 'Shippori Mincho B1', serif;
}
.com-dl > dl:last-child {
  border-bottom: none;
}
.com-dl > dl > dt, .com-dl > dl > dd {
  display: table-cell;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
.com-dl > dl > dt {
  padding: 20px 10px;
  width: 200px;
  background: #141414;
  color: #fff;
}
.com-dl > dl > dd {
  font-size: 2rem;
  padding: 20px;
}
.com-dl > dl > dd a[href^="mailto:"] {
  text-decoration: underline;
}

/*==========================================
トップページ
===========================================*/
/*-----------------------------
お知らせ
------------------------------*/
#top-news {
  background: #f8f8f8;
}
#top-news .news-wrp {
  background: #fff;
  padding: 25px 5px 10px 45px;
}
#top-news .news-wrp .news-ttl-wrp {
  width: 250px;
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #ccc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
}
#top-news .news-wrp .news-ttl-wrp h2 {
  font-size: 4.2rem;
  letter-spacing: .16em;
  margin-bottom: 10px;
}
#top-news .news-wrp .news-ttl-wrp .view-more {
  width: 140px;
  font-size: 1.5rem;
  display: block;
  margin: 0 auto;
  padding-bottom: 5px;
  text-align: right;
  background: url(../img/common/more-black_arr.png) left center no-repeat;
}
#top-news .news-wrp .news-ttl-wrp .view-more:hover {
  text-decoration: underline;
  background: url(../img/common/more-black_arr.png) left 5px center no-repeat;
}
#top-news .news-wrp .news-list {
  width: 720px;
}
#top-news .news-wrp .news-list article {
  text-align: left;
  border-bottom: 1px solid #ccc;
}
#top-news .news-wrp .news-list article:last-child {
  border-bottom: none;
}
#top-news .news-wrp .news-list article a {
  padding: 20px 0;
}
#top-news .news-wrp .news-list article time {
  width: 120px;
  background: #aaa;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  position: relative;
}
#top-news .news-wrp .news-list article time:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
  content: '';
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#top-news .news-wrp .news-list article h3 {
  width: 575px;
  font-weight: 500;
  font-size: 1.5rem;
}
#top-news .news-wrp .news-list article a:hover h3 {
  text-decoration: underline;
}
#top-news .news-wrp .news-list article .category-label {
  margin-top: 5px;
}
#top-news .news-wrp .news-list article .category-label li {
  color: #aaa;
  font-size: 1.2rem;
  padding-left: 8px;
  position: relative;
  margin: 0 8px 8px 0;
}
#top-news .news-wrp .news-list article .category-label li:before {
  width: 1px;
  height: 12px;
  background: #aaa;
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#top-news .news-wrp .news-list article .category-label li:last-child {
  margin-right: 0;
}

/*-----------------------------
一瞬を写す一生の宝物
------------------------------*/
#top-greeting {
  position: relative;
  padding: 10.28vw 0 28.98vw 0;
  background: url(../img/top/greeting-shadow.png) right 6.77083% top 155px/25.052% no-repeat, url(../img/top/greeting-bg.png) center/cover no-repeat;
}
#top-greeting h2 span {
  font-size: 5.6rem;
}
#top-greeting p {
  margin-bottom: 30px;
}
#top-greeting p:last-child {
  margin-bottom: 0;
}
#top-greeting .img-blc {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9.38vw;
  width: 93.75%;
  margin: 0 auto;
  z-index: 2;
}
#top-greeting .img-blc img {
  border-radius: 10px;
}

/*-----------------------------
中尾スタジオの選ばれる理由
------------------------------*/
#top-reason {
  padding: 21vw 2.0833% 10.7vw 0;
  position: relative;
  z-index: 1;
}
#top-reason:before {
  width: 37.5%;
  height: 100%;
  background: #f7f7f1;
  left: 0;
  top: 0;
  z-index: -1;
  position: absolute;
  content: '';
}
#top-reason .txt-blc {
  width: 53.125%;
  margin-left: auto;
}
#top-reason .txt-blc h2 {
  font-size: 4.2rem;
  font-size: clamp(25px, 2.2vw, 42px);
  letter-spacing: .16em;
  margin-bottom: 105px;
}
#top-reason .txt-blc h2 span {
  font-size: clamp(30px, 2.92vw, 56px);
  border-bottom: 3px double;
}
#top-reason .txt-blc .reason-list {
  margin-bottom: 70px;
}
#top-reason .txt-blc .reason-list li {
  width: 31.372%;
  position: relative;
  border: 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 12.4994vw;
  min-height: 145px;
  max-height: 240px;
}
#top-reason .txt-blc .reason-list li dt {
  position: absolute;
  left: 0;
  top: -33px;
  font-size: 3.6rem;
  line-height: 1;
}
#top-reason .txt-blc .reason-list li dt:before {
  width: 1px;
  height: 55px;
  background: #141414;
  position: absolute;
  content: '';
  right: -1vw;
  bottom: -1.2vw;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#top-reason .txt-blc .reason-list li dd {
  text-align: center;
  font-size: clamp(16px, 1.3vw, 24px);
}
#top-reason .txt-blc .reason-list li dd span {
  font-size: clamp(19px, 1.5vw, 28px);
}
#top-reason .txt-blc .view-more {
  width: 54.9019%;
  min-width: 390px;
  display: block;
  position: relative;
  color: #1b2e73;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 4.2072%;
  overflow: inherit;
  font-size: clamp(16px, 1.3vw, 24px);
}
#top-reason .txt-blc .view-more:before, #top-reason .txt-blc .view-more:after {
  width: 16px;
  height: 100px;
  position: absolute;
  content: '';
  background: url(../img/top/reason-detail_frame.png) center/100% no-repeat;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#top-reason .txt-blc .view-more:before {
  left: 0;
}
#top-reason .txt-blc .view-more:after {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
#top-reason .txt-blc .view-more .view-more-about {
  padding-left: 12%;
  background: url(../img/common/more-blue_arr.png) left center/10% no-repeat;
}
#top-reason .txt-blc .view-more .view-more-sec {
  background: #aaa;
  font-size: clamp(12px, 0.85vw, 16px);
  color: #fff;
  padding: 2px 10px;
}
#top-reason .img-blc {
  width: 42.7083%;
  position: absolute;
  left: 0;
  top: 21vw;
}

/*-----------------------------
撮影メニュー
------------------------------*/
#top-menu {
  padding: 105px 0 18.5vw 0;
}
#top-menu h2 {
  font-size: 4.2rem;
  letter-spacing: .16em;
  margin-bottom: 55px;
}
#top-menu .menu-wrp {
  margin-bottom: 95px;
}
#top-menu .menu-wrp li {
  width: 225px;
  margin: 0 60px 50px 0;
}
#top-menu .menu-wrp li:nth-child(4n+1):nth-last-child(-n+4), #top-menu .menu-wrp li:nth-child(4n+1):nth-last-child(-n+4) ~ li {
  margin-bottom: 0;
}
#top-menu .menu-wrp li:nth-child(4n), #top-menu .menu-wrp li:last-child {
  margin-right: 0;
}
#top-menu .menu-wrp li img {
  border-radius: 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -1px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -1px;
}
#top-menu .menu-wrp li figcaption {
  font-size: 2rem;
  margin-top: 15px;
  letter-spacing: .16em;
}
#top-menu .recommend-wrp {
  position: relative;
  padding: 30px 50px 85px 60px;
  z-index: 1;
}
#top-menu .recommend-wrp:before {
  position: absolute;
  content: '';
  background: url('../img/top/recommend-bg.png?1694509655');
  width: 1080px;
  height: 460px;
  background-size: 100%;
  top: auto;
  right: -30px;
  bottom: -20px;
  left: auto;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: -1;
}
#top-menu .recommend-wrp:after {
  width: 100%;
  height: 456px;
  position: absolute;
  content: '';
  border: 1px solid #1b2e73;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
#top-menu .recommend-wrp h3 {
  width: 360px;
  background: #1b2e73;
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: .16em;
  text-align: left;
  margin: 0 0 30px -100px;
}
#top-menu .recommend-wrp h3 span {
  border-bottom: 1px solid #fff;
  font-size: 1.6rem;
  padding: 0 40px 0 5px;
  vertical-align: top;
  margin-right: 10px;
}
#top-menu .recommend-wrp h4 {
  width: 515px;
  font-size: 6.4rem;
  color: #1b2e73;
  position: relative;
  letter-spacing: .16em;
  margin-bottom: 25px;
}
#top-menu .recommend-wrp h4:before, #top-menu .recommend-wrp h4:after {
  width: 20px;
  height: 80px;
  position: absolute;
  content: '';
  background: url(../img/top/recommend-ttl_frame.png) center/100% no-repeat;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#top-menu .recommend-wrp h4:before {
  left: 0;
}
#top-menu .recommend-wrp h4:after {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
#top-menu .recommend-wrp h5 {
  font-size: 2.4rem;
  letter-spacing: .16em;
  text-align: left;
  margin-bottom: 25px;
}
#top-menu .recommend-wrp h5 span {
  padding-bottom: 10px;
  border-bottom: 1px solid;
}
#top-menu .recommend-wrp p {
  text-align: left;
}
#top-menu .recommend-wrp .img-blc {
  position: absolute;
  right: 50px;
  top: -30px;
  z-index: -1;
}
#top-menu .more-btn {
  width: 480px;
  margin: 110px auto 0 auto;
}

/*-----------------------------
ギャラリー
------------------------------*/
#top-gallery {
  padding: 145px 0 165px 0;
  background: #f7f7f1;
}
#top-gallery .inbox {
  position: relative;
}
#top-gallery .txt-blc {
  width: 380px;
  margin-left: auto;
}
#top-gallery .txt-blc h2 {
  font-size: 4.2rem;
  letter-spacing: .16em;
  margin-bottom: 10px;
}
#top-gallery .txt-blc p {
  margin-bottom: 50px;
}
#top-gallery .txt-blc .more-btn {
  width: 320px;
}
#top-gallery .img-blc {
  position: absolute;
  left: 0;
  top: -200px;
}
#top-gallery .img-blc img {
  border-radius: 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -1px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -1px;
}

/*-----------------------------
会社概要
------------------------------*/
#top-info {
  padding: 320px 0 25px 0;
  position: relative;
  z-index: 1;
  background: url(../img/top/info-shape.png) left 13.0208% top 335px/29.1666% no-repeat;
}
#top-info .inbox {
  width: 66.6666%;
  min-width: 1080px;
  max-width: 1280px;
}
#top-info .txt-blc {
  width: 330px;
  margin-bottom: 120px;
}
#top-info .txt-blc h2 {
  font-size: 4.2rem;
  letter-spacing: .16em;
  margin-bottom: 35px;
}
#top-info .txt-blc p {
  margin-bottom: 40px;
  letter-spacing: 0;
}
#top-info .txt-blc .more-btn {
  width: 280px;
}
#top-info figure {
  width: 480px;
  margin-left: 270px;
  text-align: left;
}
#top-info figure img {
  border-radius: 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -1px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -1px;
}
#top-info figure figcaption {
  font-size: 2rem;
  text-align: center;
  margin-top: 5px;
}
#top-info .studio-img {
  position: absolute;
  right: 0;
  top: 255px;
  width: 51.0416%;
  z-index: -1;
}
#top-info .studio-img img {
  border-radius: 10px 0 0 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -1px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -1px;
}

/*==========================================
footer
===========================================*/
#footer .inbox {
  padding: 85px 0 30px 0;
}
#footer .ft-logo {
  margin-bottom: 30px;
}
#footer address {
  width: 540px;
  margin: 0 auto;
}
#footer address .ft-adr {
  width: 100%;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
#footer address .ft-adr span {
  padding-left: 15px;
  background: url(../img/common/ft-pin_icon.png) left center no-repeat;
}
#footer address .phone-num {
  margin-right: 15px;
  font-size: 3rem;
  background: url(../img/common/ft-tel_icon.png) left center no-repeat;
}
#footer address .phone-num small {
  font-size: 1.6rem;
}
#footer address .mail {
  width: 240px;
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1b2e73+50,283d86+50 */
  background: linear-gradient(135deg, #1b2e73 50%, #283d86 50%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  padding: 12px 5px 12px 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
#footer address .mail:before {
  position: absolute;
  content: '';
  background: url('../img/common/mail_icon.png?1694509639');
  width: 19px;
  height: 14px;
  background-size: 100%;
  top: 0;
  right: auto;
  bottom: 0;
  left: 30px;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin: auto 0;
  z-index: 1;
}
#footer address .work-time {
  width: 100%;
  font-size: 1.2rem;
  margin: 20px 0;
}
#footer .ft-nav {
  margin-top: 35px;
}
#footer .ft-nav li {
  font-weight: 500;
  font-size: 1.2rem;
  margin-right: 35px;
}
#footer .ft-nav li:last-child {
  margin-right: 0;
}
#footer .ft-nav li a:hover {
  text-decoration: underline;
}

#copyright {
  font-size: 10px;
  word-break: normal;
  background: #141414;
  color: #fff;
  padding: 5px 0 65px 0;
}
#copyright a {
  color: #fff;
}

/*==========================================
サブビジュアル
===========================================*/
.lower-hd {
  padding-left: 15px;
}
.lower-hd h1 {
  width: 267px;
}

.lower-sv {
  position: relative;
  height: 420px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.lower-sv h2 {
  font-size: 5.6rem;
  letter-spacing: .16em;
  font-weight: 500;
  font-family: 'Shippori Mincho B1', serif;
  color: #fff;
}

#about-sv {
  background: url(../img/sv/about-sv.png) center/cover no-repeat;
}

#menu-sv {
  background: url(../img/sv/menu-sv.png) center/cover no-repeat;
}

#gallery-sv {
  background: url(../img/sv/gallery-sv.png) center/cover no-repeat;
}

#info-sv {
  background: url(../img/sv/info-sv.png) center/cover no-repeat;
}

#blog-sv {
  background: url(../img/sv/blog-sv.png) center/cover no-repeat;
}

#contact-sv {
  background: url(../img/sv/contact-sv.png) center/cover no-repeat;
}

#complete-sv {
  background: url(../img/sv/complete-sv.png) center/cover no-repeat;
}

#privacy-sv {
  background: url(../img/sv/privacy-sv.png) center/cover no-repeat;
}

#site-sv {
  background: url(../img/sv/site-sv.png) center/cover no-repeat;
}

#e404-sv {
  background: url(../img/sv/e404-sv.png) center/cover no-repeat;
}

/*==========================================
共通タイトル
===========================================*/
.ttl01 {
  font-size: 4.2rem;
  font-family: 'Shippori Mincho B1', serif;
  padding-bottom: 45px;
  margin-bottom: 50px;
  position: relative;
  letter-spacing: .16em;
}
.ttl01:before {
  width: 120px;
  height: 1px;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  margin: 0 auto;
}

.ttl02 {
  text-align: left;
  border-bottom: 1px solid #141414;
  padding-bottom: 10px;
  margin-bottom: 10px;
  letter-spacing: .16em;
  font-size: 3.2rem;
  font-family: 'Shippori Mincho B1', serif;
}

/*==========================================
中尾スタジオ
===========================================*/
/*---------------------------
中尾スタジオが選ばれる理由
----------------------------*/
#about-reason .reason-wrp li {
  margin-bottom: 80px;
}
#about-reason .reason-wrp li:last-child {
  margin-bottom: 0;
}
#about-reason .reason-wrp li .txt-blc {
  width: 520px;
}
#about-reason .reason-wrp li .txt-blc h4 {
  font-size: 3.2rem;
  letter-spacing: .16em;
  margin-bottom: 40px;
  line-height: 1.5;
  padding: 35px 0 0 35px;
  position: relative;
  z-index: 1;
}
#about-reason .reason-wrp li .txt-blc h4:before {
  position: absolute;
  content: '';
  z-index: -1;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 150px 150px 0 0;
  border-color: #f7f7f1 transparent transparent transparent;
}
#about-reason .reason-wrp li .txt-blc h4 span {
  font-size: 4.2rem;
}
#about-reason .reason-wrp li .txt-blc p {
  letter-spacing: 0;
}

/*---------------------------
スタッフ紹介
----------------------------*/
#staff .staff-wrp li {
  margin-bottom: 60px;
  padding-bottom: 75px;
  border-bottom: 1px solid #ccc;
}
#staff .staff-wrp li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
#staff .staff-wrp li .profile-wrp {
  width: 730px;
}
#staff .staff-wrp li .profile-wrp h4 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
#staff .staff-wrp li .profile-wrp h4 small {
  font-size: 1.8rem;
  margin-right: 10px;
}
#staff .staff-wrp li .profile-wrp dl {
  margin-bottom: 30px;
}
#staff .staff-wrp li .profile-wrp dl:last-child {
  margin-bottom: 0;
}
#staff .staff-wrp li .profile-wrp dt {
  background: #aaa;
  color: #fff;
  font-size: 1.8rem;
  padding: 3px 10px;
  margin-bottom: 10px;
}

/*---------------------------
撮影までの流れ
----------------------------*/
#steps .steps-wrp li {
  padding: 45px 15px 50px 165px;
  border-bottom: 1px solid #ccc;
  position: relative;
}
#steps .steps-wrp li:before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 30px 0 30px;
  border-color: #ccc transparent transparent transparent;
  left: 0;
  right: 0;
  bottom: -14px;
  margin: 0 auto;
}
#steps .steps-wrp li:last-child:before {
  border: none;
}
#steps .steps-wrp li dl {
  text-align: left;
}
#steps .steps-wrp li dl dt {
  font-size: 2.8rem;
  margin-bottom: 20px;
  padding-left: 70px;
  position: relative;
  line-height: 1.2;
}
#steps .steps-wrp li dl dt:before {
  color: #fff;
  background: #141414;
  position: absolute;
  width: 55px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  padding: 0 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#steps .steps-wrp li:nth-child(1) {
  background: url(../img/about/step01-icon.png) left center no-repeat;
}
#steps .steps-wrp li:nth-child(1) dt:before {
  content: "1.";
}
#steps .steps-wrp li:nth-child(2) {
  background: url(../img/about/step02-icon.png) left center no-repeat;
}
#steps .steps-wrp li:nth-child(2) dt:before {
  content: "2.";
}
#steps .steps-wrp li:nth-child(3) {
  background: url(../img/about/step03-icon.png) left center no-repeat;
}
#steps .steps-wrp li:nth-child(3) dt:before {
  content: "3.";
}
#steps .steps-wrp li:nth-child(4) {
  background: url(../img/about/step04-icon.png) left center no-repeat;
}
#steps .steps-wrp li:nth-child(4) dt:before {
  content: "4.";
}
#steps .steps-wrp li:nth-child(5) {
  background: url(../img/about/step05-icon.png) left center no-repeat;
}
#steps .steps-wrp li:nth-child(5) dt:before {
  content: "5.";
}

/*==========================================
撮影メニュー
===========================================*/
.menu-pagenav li {
  width: 320px;
  margin-right: 60px;
}
.menu-pagenav li:last-child {
  margin-right: 0;
}

/*---------------------------
キャンペーンメニュー
----------------------------*/
#menu-campaign .campaign-wrp li {
  border: 1px solid #000;
  margin-bottom: 40px;
}
#menu-campaign .campaign-wrp li:last-child {
  margin-bottom: 0;
}
#menu-campaign .campaign-wrp li .com-img {
  width: 450px;
  height: 350px;
}
#menu-campaign .campaign-wrp li .txt-blc {
  width: 570px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 25px 0 0;
}
#menu-campaign .campaign-wrp li .txt-blc .price {
  text-align: right;
  color: #1b2e73;
  font-size: 2.4rem;
  letter-spacing: .16em;
}
#menu-campaign .campaign-wrp li .txt-blc .price small {
  font-size: 1.6rem;
}
#menu-campaign .campaign-wrp li .txt-blc .menu-detail {
  text-align: left;
}

/*---------------------------
おすすめメニュー
----------------------------*/
#menu-recommend .recommend-wrp {
  padding: 0 0 365px 0;
  background: #f7f7f1;
  position: relative;
  margin-bottom: 115px;
}
#menu-recommend .recommend-wrp .txt-blc {
  padding: 75px 0 105px 65px;
  width: 640px;
  margin-left: auto;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
#menu-recommend .recommend-wrp .txt-blc h4 {
  width: 525px;
  position: relative;
  font-size: 6.4rem;
  letter-spacing: .16em;
  color: #1b2e73;
  text-align: center;
}
#menu-recommend .recommend-wrp .txt-blc h4:before, #menu-recommend .recommend-wrp .txt-blc h4:after {
  width: 20px;
  height: 80px;
  position: absolute;
  content: '';
  background: url(../img/top/recommend-ttl_frame.png) center/100% no-repeat;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#menu-recommend .recommend-wrp .txt-blc h4:before {
  left: 0;
}
#menu-recommend .recommend-wrp .txt-blc h4:after {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
#menu-recommend .recommend-wrp .txt-blc p {
  letter-spacing: 0;
}
#menu-recommend .recommend-wrp .recom-img01 {
  position: absolute;
  left: 28px;
  top: -32px;
}
#menu-recommend .recommend-wrp .recom-img02 {
  position: absolute;
  left: 28px;
  bottom: 65px;
}
#menu-recommend .recommend-wrp .recom-img03 {
  position: absolute;
  left: 360px;
  bottom: 35px;
}
#menu-recommend .recommend-wrp .recom-img04 {
  position: absolute;
  right: 28px;
  bottom: -28px;
}
#menu-recommend .price-wrp h4 {
  width: 285px;
  margin: 0 auto;
  font-size: 3.2rem;
  letter-spacing: .16em;
  position: relative;
  margin-bottom: 35px;
}
#menu-recommend .price-wrp h4:before, #menu-recommend .price-wrp h4:after {
  width: 80px;
  height: 5px;
  position: absolute;
  content: '';
  border-top: 3px double #141414;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#menu-recommend .price-wrp h4:before {
  left: 0;
}
#menu-recommend .price-wrp h4:after {
  right: 0;
}
#menu-recommend .price-wrp .price-inner {
  width: 720px;
  margin: 0 auto 40px auto;
  background: #f7f7f1;
  padding: 25px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#menu-recommend .price-wrp .price-inner dt {
  width: 360px;
}
#menu-recommend .price-wrp .price-inner dd {
  font-size: 1.4rem;
}
#menu-recommend .price-wrp .price-inner dd span {
  font-size: 2rem;
}
#menu-recommend .com-menu-list .com-menu-list-item {
  border: 1px solid #141414;
  padding: 35px 30px;
  margin-bottom: 40px;
}
#menu-recommend .com-menu-list .com-menu-list-item:last-child {
  margin-bottom: 0;
}
#menu-recommend .com-menu-list .com-menu-list-item .menu-meta {
  width: 100%;
}

.com-menu-list .com-menu-list-item .menu-meta {
  width: 690px;
}
.com-menu-list .com-menu-list-item .menu-meta .menu-detail {
  text-align: left;
  margin-bottom: 30px;
}
.com-menu-list .com-menu-list-item .menu-meta .com-dl dt {
  width: 360px;
}
.com-menu-list .com-menu-list-item .menu-meta .com-dl dd small {
  font-size: 1.4rem;
}
.com-menu-list .com-menu-list-item .menu-meta .caution {
  text-align: left;
  font-size: 1.3rem;
  margin: 10px 0 15px 0;
}

/*---------------------------
通常メニュー
----------------------------*/
#menu-normal .com-menu-list .com-menu-list-item {
  padding-bottom: 40px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 45px;
}
#menu-normal .com-menu-list .com-menu-list-item:last-child {
  margin-bottom: 0;
}
#menu-normal .com-menu-list .com-menu-list-item .img-blc img {
  border-radius: 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -1px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -1px;
}
#menu-normal .com-menu-list .com-menu-list-item .menu-meta h5 {
  background: #aaa;
  color: #fff;
  padding: 5px 10px;
  text-align: left;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
#menu-normal .com-menu-list .com-menu-list-item .menu-meta .com-dl {
  margin-bottom: 15px;
}
#menu-normal .com-menu-list .com-menu-list-item .menu-meta .com-dl dd span {
  display: block;
  font-size: 1.4rem;
}
#menu-normal .com-menu-list .com-menu-list-item .menu-meta .option-price {
  text-align: left;
  padding-left: 10px;
  border-left: 2px solid #ccc;
  margin-bottom: 15px;
}

/*==========================================
フォトギャラリー
===========================================*/
#gallery-archive .category-label {
  width: 900px;
  margin: 0 auto 55px auto;
}
#gallery-archive .category-label li {
  width: 210px;
  margin: 0 20px 20px 0;
}
#gallery-archive .category-label li:nth-child(4n+1):nth-last-child(-n+4), #gallery-archive .category-label li:nth-child(4n+1):nth-last-child(-n+4) ~ li {
  margin-bottom: 0;
}
#gallery-archive .category-label li:nth-child(4n), #gallery-archive .category-label li:last-child {
  margin-right: 0;
}
#gallery-archive .category-label li a {
  display: block;
  border-radius: 20px;
  border: 1px solid #aaa;
  padding: 6px 5px;
}
#gallery-archive .category-label li a:hover {
  opacity: 1;
  background: #aaa;
  color: #fff;
}
#gallery-archive .category-label .current a {
  background: #aaa;
  color: #fff;
}
#gallery-archive .gallery-wrp li {
  width: 320px;
  margin: 0 60px 45px 0;
}
#gallery-archive .gallery-wrp li:nth-child(3n+1):nth-last-child(-n+3), #gallery-archive .gallery-wrp li:nth-child(3n+1):nth-last-child(-n+3) ~ li {
  margin-bottom: 0;
}
#gallery-archive .gallery-wrp li:nth-child(3n), #gallery-archive .gallery-wrp li:last-child {
  margin-right: 0;
}
#gallery-archive .gallery-wrp li img {
  border-radius: 10px;
}

#gallery-single .hero-wrp {
  margin-bottom: 20px;
}
#gallery-single .hero-wrp img {
  border-radius: 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -1px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -1px;
}
#gallery-single .comment {
  text-align: left;
}

/*==========================================
会社概要
===========================================*/
#information .com-dl {
  margin-bottom: 60px;
}

/*==========================================
一覧ぺージ用カテゴリ(セレクトボックス)
===========================================*/
.category-select {
  overflow: hidden;
  width: 300px;
  margin-left: auto;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  border-radius: 2px;
  border: 2px solid #2e2e2e;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.category-select:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: .8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #2e2e2e;
  pointer-events: none;
}
.category-select select {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 1em;
  cursor: pointer;
  text-indent: .01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 10px 38px 10px 8px;
  color: #2e2e2e;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.category-select select::-ms-expand {
  display: none;
}

/*==========================================
お知らせ
===========================================*/
.post-wrap .column-lists > li {
  margin-bottom: 25px;
  border-bottom: 1px solid #ccc;
}
.post-wrap .column-lists > li a {
  display: block;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.post-wrap .column-lists > li a:hover .more-btn {
  background: #fff;
  color: #1b2e73;
}
.post-wrap .column-lists > li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.post-wrap .column-lists .post-ttl {
  text-align: left;
  margin-bottom: 15px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-wrap .column-lists .post-ttl time {
  color: #1b2e73;
  text-align: left;
  padding: 4px 0;
  width: 65px;
}
.post-wrap .column-lists .post-ttl time,
.post-wrap .column-lists .post-ttl .category-label {
  font-weight: normal;
  font-size: 10px;
}
.post-wrap .column-lists .post-ttl .category-label {
  width: 980px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-wrap .column-lists .post-ttl .category-label li {
  border: 1px solid #1b2e73;
  color: #fff;
  background: #1b2e73;
  padding: 2px 10px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.post-wrap .column-lists .post-ttl .category-label li:last-child {
  margin-right: 0;
}
.post-wrap .column-lists .post-ttl .column-ttl {
  width: 100%;
  margin-top: 10px;
  font-size: 2.4rem;
  font-weight: 500;
}
.post-wrap .column-lists .post-body {
  text-align: left;
  margin-bottom: 20px;
}
.post-wrap .column-lists .more-btn {
  width: 125px;
  font-size: 14px;
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: #1b2e73;
  border: 1px solid #1b2e73;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 0;
  display: block;
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.post-wrap .column-lists .post-area {
  width: 100%;
}
.post-wrap .post-content {
  padding: 0 20px 5px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
.post-wrap .post-content img {
  max-width: 100%;
}

/*----------------------------------
詳細ページのカテゴリー表示(タイトル下部)
----------------------------------*/
.single-meta {
  margin-bottom: 20px;
}
.single-meta time {
  font-size: 11px;
  text-align: left;
  width: 85px;
  padding: 3px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.single-meta .category-label {
  width: 950px;
  font-size: 10px;
  margin-left: 10px;
}
.single-meta .category-label li {
  margin-right: 10px;
  margin-bottom: 10px;
}
.single-meta .category-label li:last-child {
  margin-right: 0;
}
.single-meta .category-label li a {
  border: 1px solid #1b2e73;
  color: #1b2e73;
  padding: 3px 10px;
  border-radius: 25px;
  display: block;
}
.single-meta .category-label li a:hover {
  opacity: 1;
  color: #fff;
  background: #1b2e73;
}

/*----------------------------------
詳細ページのカテゴリー表示(テキストエリア下部)
----------------------------------*/
.single-category {
  max-width: 250px;
  min-width: 150px;
  margin-top: 10px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 10px;
}
.single-category dt {
  width: 80px;
}
.single-category dt:after {
  content: ':';
  padding: 0 5px;
}
.single-category dd {
  max-width: 170px;
  line-height: 2;
  min-width: 60px;
}
.single-category ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-category ul li {
  margin-right: 5px;
}
.single-category ul li:last-child {
  margin-right: 0;
}
.single-category ul li a {
  display: block;
  padding-left: 8px;
  position: relative;
}
.single-category ul li a:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  left: 0;
  content: '#';
}
.single-category ul li a:hover {
  background: #ccc;
}

/*==========================================
お問い合わせ
===========================================*/
#contact {
  /* チェックボックス・ラジオボタン
  -------------------------------------------------- */
  /*==================================================
   日付選択フォーム
  ================================================== */
}
#contact .contact-form {
  margin-bottom: 20px;
}
#contact .contact-form dl dt {
  width: 320px !important;
  position: relative;
  vertical-align: top;
}
#contact .contact-form dl dt em {
  position: absolute;
  top: 20px;
  right: 10px;
  color: #f00;
  background: #fff;
  font-weight: 500;
  padding: 3px;
  font-size: 1rem;
}
#contact .contact-form dl dd {
  width: 760px;
}
#contact .contact-form dl dd li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#contact .contact-form dl dd li:last-child {
  margin-right: 0;
}
#contact .contact-form .txtarea {
  width: 100%;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  background: #fff;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Shippori Mincho B1', serif;
}
#contact .contact-form select {
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.6rem;
  font-family: 'Shippori Mincho B1', serif;
  color: #000;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
}
#contact .contact-form #pc01,
#contact .contact-form #pc02 {
  width: 150px;
}
#contact .contact-form #address {
  margin-top: 15px;
}
#contact .contact-form textarea {
  height: 260px;
  line-height: 1.8;
}
#contact .contact-form .error-text {
  color: #ff0000;
  margin-bottom: 5px;
}
#contact .contact-form .upload-item-wrap #file01 {
  margin-bottom: 10px;
}
#contact .contact-form .upload-item-wrap .thumb {
  width: 200px;
  margin-right: 25px;
}
#contact .contact-form .upload-item-wrap .thumb img {
  max-width: 100%;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap {
  width: 130px;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button {
  width: 100%;
  border-radius: 5px;
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 5px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .ancion-btn:hover,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button:hover {
  filter: alpha(opacity=60);
  opacity: .6;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button {
  margin-bottom: 5px;
  background: #1b2e73;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap p {
  background: #283d86;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .select-file,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap input {
  display: none !important;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap input#file-upload-button {
  background: #283d86;
}
#contact .g-recaptcha div {
  margin: 0 auto;
  margin-bottom: 25px;
}
#contact input[type='button'][disabled],
#contact input[type='submit'][disabled] {
  opacity: .7;
  pointer-events: none;
}
#contact input[type='button'],
#contact input[type='submit'],
#contact .contact-submits-wrap button {
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 1.6rem;
  color: #fff;
  background: #fff;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Shippori Mincho B1', serif;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #1b2e73;
  color: #1b2e73;
  border-radius: 0;
}
#contact input[type='button']:hover,
#contact input[type='submit']:hover,
#contact .contact-submits-wrap button:hover {
  background: #1b2e73;
  cursor: pointer;
  color: #fff;
  filter: alpha(opacity=100);
  opacity: 1;
}
#contact .check-btn {
  width: 260px;
  margin: 0 auto;
  margin-top: 20px;
}
#contact .back-btn {
  width: 270px;
  margin: 0 auto;
  margin-right: 40px;
}
#contact .contact-submits-wrap {
  margin-top: 20px;
}
#contact .send-btn {
  width: 240px;
  margin: 0 auto;
}
#contact .privacy-agree {
  text-decoration: underline;
  color: -webkit-link;
}
#contact input[type=radio],
#contact input[type=checkbox] {
  display: inline-block;
  margin-right: 6px;
}
#contact input[type=radio] + label,
#contact input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  line-height: 30px;
  cursor: pointer;
}
#contact input[type=radio],
#contact input[type=checkbox] {
  display: none;
  margin: 0;
}
#contact input[type=radio] + label,
#contact input[type=checkbox] + label {
  margin-bottom: 5px;
  padding: 0 0 0 24px;
}
#contact input[type=radio] + label::before,
#contact input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background: #FFF;
}
#contact input[type=radio] + label::before {
  border: 2px solid #ccc;
  border-radius: 30px;
}
#contact input[type=checkbox] + label::before {
  border: 2px solid #ccc;
}
#contact input[type=radio]:checked + label::after,
#contact input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
}
#contact input[type=radio]:checked + label::after {
  left: 5px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #e74c3c;
  border-radius: 8px;
}
#contact input[type=checkbox]:checked + label::after {
  left: 3px;
  width: 16px;
  height: 8px;
  margin-top: -8px;
  border-left: 3px solid #e74c3c;
  border-bottom: 3px solid #e74c3c;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#contact .date-list {
  padding-left: inherit;
}
#contact .date-list li {
  list-style: none;
  margin-bottom: 15px;
}
#contact .date-list li p {
  margin-bottom: 5px;
}

.complete-box p a {
  text-decoration: underline;
}

/*==========================================
プライバシーポリシー
===========================================*/
#privacy .privacy-box {
  margin-bottom: 50px;
  text-align: left;
}
#privacy .privacy-box:last-child {
  margin-bottom: 0;
}
#privacy .privacy-box p {
  margin-bottom: 25px;
}
#privacy .privacy-box p:last-child {
  margin-bottom: 0;
}
#privacy .privacy-box ul {
  margin-top: 25px;
}

/*==========================================
404.php
===========================================*/
#err-cont .txt-blc a {
  text-decoration: underline;
}



.rcd_list{
	display: flex;
	justify-content: space-around;
}

.rcd_list p{
	width:75%; 
	margin: 1%;
}

.rcd_list_edit{
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: solid 2px;
}
.rcd_list_edit2{
  margin-bottom: 100px;
  padding-bottom: 30px;
  border-bottom: solid 2px;
}