@charset "UTF-8";
/*==========================================
矢印 >
===========================================*/
/*==========================================
矢印 ▶
===========================================*/
/*==========================================
背景ストライプ   ($deg=0 平行)($deg=45deg 斜め)
===========================================*/
/*==========================================
Flexbox
===========================================*/
/*==========================================
上下左右中央揃え
===========================================*/
/*==========================================
上下中央揃え
===========================================*/
/*==========================================
before,after
===========================================*/
/*==========================================
最後の行のmargin-bottomを0にする
===========================================*/
/*==========================================
メインビジュアル(スライダー)
===========================================*/
/*==========================================
タイトル左右のボーダー
===========================================*/
/*==========================================
hover時に中央から外側に向けてのボーダー
===========================================*/
/*==========================================
カーテン
===========================================*/
/*==========================================
グラデーション
===========================================*/
/*-----------------------------
→方向
-----------------------------*/
/*-----------------------------
↓方向
-----------------------------*/
/*-----------------------------
斜め方向
-----------------------------*/
/*==========================================
iframe レスポンシブ　アスペクト比を保ちながら縦横を伸縮
===========================================*/
/*==========================================
画面幅3分割レイアウト
===========================================*/
/*==========================================
PC共通
===========================================*/
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0 auto;
  font-family: "Shippori Mincho B1", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
  color: #635b2c;
  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: 1rem;
  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: #ed927a;
}
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 {
  flex-wrap: wrap;
}

/*逆順
-----------------------*/
.flx-rr {
  flex-direction: row-reverse;
}

/*水平方向の揃え
=================================================*/
/*初期値
-----------------------*/
.flx-strt {
  -webkit-justify-content: start;
  justify-content: start;
}

/*並列で均等配置（左右隙間なし=space-between）
-----------------------*/
.flx-btw {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

/*並列で均等配置（左右隙間あり=space-around）
-----------------------*/
.flx-ard {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

/*水平揃え　末揃え
-----------------------*/
.flx-end {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

/*水平揃え　中央揃え
-----------------------*/
.flx-center {
  -webkit-justify-content: center;
  justify-content: center;
}

/*垂直方向の揃え
=================================================*/
/*水平揃え　上揃え
-----------------------*/
.flx-alitem-strt {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

/*水平揃え　高さ揃え
-----------------------*/
.flx-alitem-strch {
  -webkit-align-items: stretch;
  align-items: stretch;
}

/*水平揃え　縦・横の中央揃え
-----------------------*/
.flx-alitem-c {
  -webkit-align-items: center;
  align-items: center;
}

/*水平揃え　下揃え
-----------------------*/
.flx-alitem-end {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

/*水平揃え　ベースライン揃え
-----------------------*/
.flx-alitem-base {
  -webkit-align-items: baseline;
  align-items: baseline;
}

/*複数行にした揃え方
=================================================*/
/*初期値
-----------------------*/
.flx-alcont-strt {
  -webkit-align-content: flex-start;
  align-content: flex-start;
}

/*親要素の開始位置から配置。上揃え
-----------------------*/
.flx-alcont-strch {
  -webkit-align-content: stretch;
  align-content: stretch;
}

/*親要素の終点から配置。下揃え
-----------------------*/
.flx-alcont-end {
  -webkit-align-content: flex-end;
  align-content: flex-end;
}

/*中央揃え
-----------------------*/
.flx-alcont-c {
  -webkit-align-content: center;
  align-content: center;
}

/*最初と最後の子要素を上下の端に配置し、残りの要素は均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-btw {
  -webkit-align-content: space-between;
  align-content: space-between;
}

/*上下端にある子要素も含め、均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-ard {
  -webkit-align-content: space-around;
  align-content: space-around;
}

.flex-order-1 {
  order: 1;
}

.flex-order-2 {
  order: 2;
}

/*==========================================
スマホ用ドロワー無効
===========================================*/
.drawer_menu {
  display: none;
}

#nav-toggle,
#global-nav {
  display: none;
}

.drawer_menu {
  display: none;
}

/*==========================================
header
===========================================*/
#header {
  background: #fff;
  padding: 10px 20px;
}
#header .hd-right {
  width: 575px;
}
#header .com-contact-btn,
#header .instagram {
  margin-left: 20px;
}

.com-line-btn,
.com-contact-btn,
.coconara-btn {
  width: 260px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#faab74+0,ed927a+100 */
  background: linear-gradient(to right, #faab74 0%, #ed927a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  box-sizing: border-box;
  text-align: center;
  padding: 0 5px 0 50px;
}
.com-line-btn:before,
.com-contact-btn:before,
.coconara-btn:before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 1;
}

.com-line-btn:before {
  width: 30px;
  height: 30px;
  background: url(../img/common/line_icon.png) center/100% no-repeat;
  left: 25px;
}

.com-contact-btn:before {
  width: 20px;
  height: 14px;
  background: url(../img/common/contact_icon.png) center/100% no-repeat;
  left: 25px;
}

.coconara-btn {
  padding-left: 43px;
}
.coconara-btn:before {
  width: 36px;
  height: 29px;
  background: url(../img/common/ft-coconala_icon.png) center/100% no-repeat;
  left: 8px;
}

/*==========================================
メインビジュアル
===========================================*/
#mv {
  position: relative;
  height: clamp(570px, 39.062vw, 750px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/top/mv/mv-frame.png) bottom center/100% no-repeat, url(../img/top/mv/mv.jpg) center/cover no-repeat;
}
#mv h2 {
  width: 43.3333%;
  margin: 0 auto;
}

/*==========================================
nav
===========================================*/
#nav {
  padding: 20px 0;
}
#nav .nav-list-item {
  margin-right: 55px;
  font-weight: 600;
}
#nav .nav-list-item:last-child {
  margin-right: 0;
}
#nav .nav-list-item a {
  padding-bottom: 3px;
  display: block;
  position: relative;
}
#nav .nav-list-item a:before {
  content: '';
  width: 0;
  left: 50%;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid #635b2c;
  position: absolute;
  display: block;
}
#nav .nav-list-item a:after {
  content: '';
  width: 0;
  right: 50%;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid #635b2c;
  position: absolute;
  display: block;
}
#nav .nav-list-item a:hover {
  color: #635b2c;
}
#nav .nav-list-item a:hover:before {
  width: 50%;
  border-bottom: 1px solid #635b2c;
}
#nav .nav-list-item a:hover:after {
  width: 50%;
  border-bottom: 1px solid #635b2c;
}
#nav .current a {
  border-bottom: 1px solid #635b2c;
}
#nav .current a:before, #nav .current a:after {
  border-bottom: none;
}
#nav .current a:hover:before, #nav .current a:hover:after {
  border-bottom: none;
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-txt {
  text-align: left;
}
.com-txt p {
  margin-bottom: 25px;
  line-height: 1.8;
  letter-spacing: 0;
}
.com-txt p:last-child {
  margin-bottom: 0;
}

#g-map h4 {
  font-size: 1.8rem;
  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%;
}

.com-btn {
  width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  font-size: 2rem;
  color: #fff;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ed927a+0,7c76e1+100 */
  background: linear-gradient(to right, #ed927a 0%, #7c76e1 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.com-btn:before {
  width: calc(100% - 5px);
  height: calc(100% - 5px);
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  z-index: 1;
}
.com-btn span {
  position: relative;
}
.com-btn span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -25px;
  right: auto;
  margin: auto;
  content: '';
  vertical-align: middle;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-dl > dl {
  padding: 20px 0;
  border-bottom: 1px solid #e2e2e2;
}
.com-dl > dl:last-child {
  border-bottom: none;
}
.com-dl > dl > dt, .com-dl > dl > dd {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
  text-align: left;
}
.com-dl > dl > dt {
  width: 210px;
  color: #ed927a;
  vertical-align: top;
}
.com-dl > dl > dt span {
  border-left: 4px solid #ed927a;
  padding-left: 7px;
}
.com-dl > dl > dd {
  padding: 0 20px;
}
.com-dl > dl > dd a[href^="mailto:"] {
  text-decoration: underline;
}

/*==========================================
トップページ
===========================================*/
/* #top-intro
------------------------------*/
#top-intro {
  padding: 140px 0;
}
#top-intro .intro-content {
  width: 760px;
  padding: 55px 95px 60px 45px;
  box-sizing: border-box;
  position: relative;
  background: url(../img/top/intro-content_bdr.png) bottom center no-repeat, rgba(255, 255, 255, 0.8);
  z-index: 1;
}
#top-intro .intro-content:before {
  width: 70px;
  height: 107px;
  position: absolute;
  content: '';
  background: url(../img/top/intro-content_left_deco.png) center/100% no-repeat;
  left: -25px;
  bottom: 25px;
}
#top-intro .intro-content:after {
  width: 324px;
  height: 278px;
  position: absolute;
  content: '';
  background: url(../img/top/intro-content_right_deco.png) center/100% no-repeat;
  right: 0;
  top: -20px;
  z-index: -1;
}
#top-intro h3 {
  font-size: 4.2rem;
  font-weight: 500;
  border-bottom: 1px solid #eeebdf;
  margin-bottom: 25px;
  text-align: left;
}
#top-intro h3 span {
  color: #ed927a;
}
#top-intro p {
  text-align: left;
  font-size: 2rem;
}

.intro-spring {
  background: url(../img/top/intro-btm_shape.png) bottom center/100% no-repeat, url(../img/top/intro-spring_bg.jpg) center bottom/cover no-repeat;
}

.intro-summer {
  background: url(../img/top/intro-btm_shape.png) bottom center/100% no-repeat, url(../img/top/intro-summer_bg.jpg) center bottom/cover no-repeat;
}

.intro-autumn {
  background: url(../img/top/intro-btm_shape.png) bottom center/100% no-repeat, url(../img/top/intro-autumn_bg.jpg) center bottom/cover no-repeat;
}

.intro-winter {
  background: url(../img/top/intro-btm_shape.png) bottom center/100% no-repeat, url(../img/top/intro-winter_bg.jpg) center bottom/cover no-repeat;
}

/* #top-about
------------------------------*/
#top-about {
  padding: 60px 0 190px 0;
  position: relative;
  background: url(../img/top/about-bg.jpg) center bottom/cover no-repeat;
}
#top-about .inbox {
  width: clamp(1080px, 66.666%, 1280px);
}
#top-about h3 {
  font-size: 4.2rem;
  line-height: 1.4;
  padding-top: 112px;
  margin-bottom: 85px;
  background: url(../img/top/about-ttl_illust.png) top center no-repeat;
}
#top-about h3 span {
  color: #ed927a;
  font-size: 4.8rem;
}
#top-about .about-content {
  width: 46.875%;
  border-top: 1px solid #eeebdf;
  border-bottom: 1px solid #eeebdf;
  padding: 30px 0;
}
#top-about .about-content p {
  font-size: clamp(1.4rem, 0.845vw, 1.6rem);
}
#top-about .about-img {
  position: absolute;
  right: 0;
  top: 360px;
  width: 47.9166%;
}

/* #top-worry
------------------------------*/
#top-worry {
  padding: 80px 0 115px 0;
  background: url(../img/top/solution-btm_shape.png) bottom center/100% no-repeat, url(../img/top/worry-bg.jpg) center/cover no-repeat;
}
#top-worry h3 {
  width: 800px;
  margin: 0 auto 30px auto;
  color: #fff;
  padding-top: 10px;
  font-size: 4.2rem;
  font-weight: 500;
  border-bottom: 1px solid #fff;
  letter-spacing: .04em;
  background: url(../img/top/worry-ttl_deco.png) left 200px top no-repeat;
}
#top-worry h3 span {
  font-size: 5.2rem;
}
#top-worry .worry-wrp {
  padding-bottom: 115px;
  background: url(../img/top/worry-solution_arr.png) bottom center no-repeat;
  margin-bottom: 35px;
}
#top-worry .worry-list {
  width: 670px;
  gap: 40px 25px;
}
#top-worry .worry-list li {
  width: 320px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: #fff;
  background: #f29f74;
  position: relative;
}
#top-worry .worry-list li:nth-child(even) {
  margin-top: 25px;
}
#top-worry .worry-list li:before {
  width: calc(100% - 7px);
  height: calc(100% - 7px);
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  border: 1px solid #f5b391;
  box-sizing: border-box;
  margin: auto;
}
#top-worry .worry-list li em {
  border-bottom: 1px solid #fff;
  font-weight: 500;
}
#top-worry .worry-solution {
  position: relative;
  background: #fff;
  padding: 60px 0 55px 0;
}
#top-worry .worry-solution:before {
  width: 274px;
  height: 309px;
  position: absolute;
  content: '';
  left: -47px;
  top: -53px;
  background: url(../img/top/worry-solution_left_deco.png) center/100% no-repeat;
}
#top-worry .worry-solution:after {
  width: 230px;
  height: 234px;
  position: absolute;
  content: '';
  right: -26px;
  bottom: -16px;
  background: url(../img/top/worry-solution_right_deco.png) center/100% no-repeat;
}
#top-worry .worry-solution h4 {
  font-size: 4.2rem;
  line-height: 1.4;
  margin-bottom: 30px;
}
#top-worry .worry-solution h4:first-line {
  font-size: 2.4rem;
}
#top-worry .worry-solution h4 span {
  color: #ed927a;
  font-size: 4.8rem;
}

/* #top-menu
------------------------------*/
#top-menu h3 {
  font-size: 4.2rem;
  padding: 45px 0 40px 0;
  line-height: 1.5;
}
#top-menu h3 span {
  display: block;
  width: 1080px;
  margin: 0 auto;
  background: url(../img/top/menu-ttl_left_deco.png) left center no-repeat, url(../img/top/menu-ttl_right_deco.png) right center no-repeat;
}
#top-menu h3 em {
  font-size: 4.8rem;
  color: #ed927a;
}
#top-menu .menu-wrp {
  padding: 110px 0 125px 0;
  background: url(../img/top/menu-ttl_btm_shape.png) top center/100% no-repeat, url(../img/top/menu-btm_shape.png) bottom center/100% no-repeat, url(../img/top/menu-bg.jpg) bottom center no-repeat;
}
#top-menu .menu-list {
  gap: 55px 80px;
}
#top-menu .menu-list li {
  width: 500px;
  height: 314px;
  padding: 45px 35px;
  box-sizing: border-box;
  position: relative;
  background: url(../img/top/menu-li_bg.png) center/100% no-repeat;
}
#top-menu .menu-list li:nth-child(odd) {
  margin-top: 80px;
}
#top-menu .menu-list li:nth-child(odd):before {
  width: 235px;
  height: 100px;
  position: absolute;
  content: '';
  background: url(../img/top/menu-essence_deco.png) center/100% no-repeat;
  right: 5px;
  bottom: -30px;
}
#top-menu .menu-list li:nth-child(even):before {
  width: 184px;
  height: 101px;
  position: absolute;
  content: '';
  background: url(../img/top/menu-oracle_deco.png) center/100% no-repeat;
  right: -18px;
  top: -43px;
}
#top-menu .menu-list h4 {
  font-size: 3.6rem;
  font-weight: 500;
  border-bottom: 1px solid #ed927a;
  margin-bottom: 10px;
  color: #ed927a;
}
#top-menu .menu-list p {
  text-align: left;
  letter-spacing: 0;
}
#top-menu .com-btn {
  margin-top: 105px;
}

/* #top-other
------------------------------*/
#top-other {
  padding: 75px 0 120px 0;
  background: url(../img/top/guide-info_bg.png) center bottom/100% no-repeat;
}
#top-other .inbox {
  width: clamp(1080px, 62.5%, 1200px);
}
#top-other .other-wrp {
  gap: 55px 6.6668%;
}
#top-other .other-page {
  width: 46.6666%;
  height: 450px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#top-other .other-page:before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
  border-radius: 10px;
}
#top-other .other-page:hover {
  opacity: 1;
}
#top-other .other-page:hover:before {
  transform: scale(1.1);
}
#top-other .guide-page:before {
  background: url(../img/top/guide-img.jpg) center/cover no-repeat;
}
#top-other .info-page:before {
  background: url(../img/top/info-img.jpg) center/cover no-repeat;
}
#top-other h3 {
  width: 480px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  background: #fff;
  padding: 13px 0;
}
#top-other h3:before {
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  border: 1px solid #e0ded5;
  box-sizing: border-box;
  margin: auto;
}
#top-other h3 span {
  font-size: 3.6rem;
  font-weight: 500;
  position: relative;
}
#top-other h3 span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30px;
  margin: auto;
  content: '';
  vertical-align: middle;
  width: 12px;
  height: 12px;
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#top-other h3 small {
  font-size: 1.4rem;
}

/* #top-news
------------------------------*/
#top-news {
  padding: 65px 0 110px 0;
  background: #f9f8f2;
}
#top-news h3 {
  width: 425px;
  margin: 0 auto;
  font-size: 4.2rem;
  font-weight: 500;
  margin-bottom: 45px;
  background: url(../img/top/news-ttl_left_deco.png) left center no-repeat, url(../img/top/news-ttl_right_deco.png) right center no-repeat;
}
#top-news article {
  text-align: left;
  border-bottom: 1px solid #eeebdf;
}
#top-news article a {
  padding: 30px 0 20px 0;
}
#top-news article:nth-child(1) {
  padding-top: 0;
}
#top-news article time {
  width: 110px;
  background: #ed927a;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 5px 5px 5px 23px;
  box-sizing: border-box;
  position: relative;
}
#top-news article time:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  margin: auto;
  content: '';
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#top-news article h4 {
  width: 950px;
  font-weight: 600;
}
#top-news article .category-label {
  gap: 5px 0;
}
#top-news article .category-label li {
  font-size: 1.2rem;
  padding: 0 8px;
  position: relative;
}
#top-news article .category-label li:before {
  width: 1px;
  height: 10px;
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: #635b2c;
}
#top-news article .category-label li:last-child:after {
  width: 1px;
  height: 10px;
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: #635b2c;
}
#top-news article a:hover h4 {
  text-decoration: underline;
}
#top-news .view-more {
  width: 120px;
  display: block;
  margin: 40px auto 0 auto;
  font-size: 1.6rem;
  font-weight: 500;
  box-sizing: border-box;
  padding: 0 3px 5px 10px;
  border-bottom: 1px solid;
}
#top-news .view-more span {
  position: relative;
}
#top-news .view-more span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  right: auto;
  margin: auto;
  content: '';
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-top: 1px solid #635b2c;
  border-right: 1px solid #635b2c;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*==========================================
footer
===========================================*/
#footer {
  background: #fff;
}
#footer .inbox {
  padding: 55px 0 10px 0;
}
#footer .ft-logo {
  width: 200px;
  display: block;
  margin: 0 auto 15px auto;
}
#footer .adr {
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 500;
  padding-left: 17px;
  background: url(../img/common/ft-pin_icon.png) left center no-repeat;
}
#footer .worktime {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 30px;
}
#footer .worktime span {
  background: #f9f8f2;
  display: inline-block;
  padding: 0 5px;
}
#footer .ft-btn {
  gap: 12px;
  margin-bottom: 30px;
}
#footer .instagram {
  display: block;
  width: 30px;
  margin: 0 auto 40px auto;
}
#footer .ft-nav li {
  font-size: 1.2rem;
  position: relative;
}
#footer .ft-nav li:before {
  width: 1px;
  height: 12px;
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: #635b2c;
}
#footer .ft-nav li a {
  display: block;
  padding: 0 12px;
}
#footer .ft-nav li a:hover {
  text-decoration: underline;
}
#footer .ft-nav li:first-child:before {
  background: none;
}

#copyright {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ed927a+0,7c76e1+100 */
  background: linear-gradient(to right, #ed927a 0%, #7c76e1 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  color: #fff;
  font-size: 1.1rem;
  padding: 5px 0;
  word-break: normal;
}
#copyright a {
  color: #fff;
  text-decoration: underline;
}

/*==========================================
サブビジュアル
===========================================*/
.lower-sv {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lower-sv h2 {
  width: 920px;
  margin: 0 auto;
  font-size: 5.6rem;
  font-weight: 500;
  color: #fff;
  padding: 50px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: relative;
}
.lower-sv h2:before {
  width: 103px;
  height: 119px;
  position: absolute;
  content: '';
  background: url(../img/sv/sv-ttl_deco.png) center/100% no-repeat;
  left: 0;
  bottom: -15px;
}

#concept-sv {
  background: url(../img/sv/sv-frame.png) bottom center/100% no-repeat, url(../img/sv/concept-sv.jpg) center/cover no-repeat;
}

#guide-sv {
  background: url(../img/sv/sv-frame.png) bottom center/100% no-repeat, url(../img/sv/guide-sv.jpg) center/cover no-repeat;
}

#menu-sv {
  background: url(../img/sv/sv-frame.png) bottom center/100% no-repeat, url(../img/sv/menu-sv.jpg) center/cover no-repeat;
}

#info-sv {
  background: url(../img/sv/sv-frame.png) bottom center/100% no-repeat, url(../img/sv/info-sv.jpg) center/cover no-repeat;
}

#news-sv {
  background: url(../img/sv/sv-frame.png) bottom center/100% no-repeat, url(../img/sv/news-sv.jpg) center/cover no-repeat;
}

#contact-sv {
  background: url(../img/sv/sv-frame.png) bottom center/100% no-repeat, url(../img/sv/contact-sv.jpg) center/cover no-repeat;
}

#complete-sv {
  background: url(../img/sv/sv-frame.png) bottom center/100% no-repeat, url(../img/sv/complete-sv.jpg) center/cover no-repeat;
}

#privacy-sv {
  background: url(../img/sv/sv-frame.png) bottom center/100% no-repeat, url(../img/sv/privacy-sv.jpg) center/cover no-repeat;
}

#site-sv {
  background: url(../img/sv/sv-frame.png) bottom center/100% no-repeat, url(../img/sv/site-sv.jpg) center/cover no-repeat;
}

#e404-sv {
  background: url(../img/sv/sv-frame.png) bottom center/100% no-repeat, url(../img/sv/e404-sv.jpg) center/cover no-repeat;
}

/*==========================================
共通タイトル
===========================================*/
.ttl01 {
  font-size: 4.2rem;
  font-weight: 500;
  color: #ed927a;
  border-bottom: 3px double #ed927a;
  margin-bottom: 30px;
  padding-bottom: 5px;
  letter-spacing: .04em;
}

.ttl02 {
  background: #ed927a;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 500;
  text-align: left;
  padding: 5px 15px;
  margin-bottom: 20px;
  letter-spacing: .04em;
}

/*==========================================
当店について
===========================================*/
/* #concept-about
------------------------------*/
#concept-about {
  background: url(../img/concept/about-btm_shape.png) bottom center/100% no-repeat, url(../img/concept/about-bg.png) bottom center no-repeat;
}
#concept-about h3 {
  width: 820px;
  margin: 0 auto 20px auto;
  font-size: 4.2rem;
  font-weight: 500;
  color: #ed927a;
  padding: 8px 0;
  background: url(../img/concept/about-ttl_left_deco.png) left center no-repeat, url(../img/concept/about-ttl_right_deco.png) right center no-repeat;
}
#concept-about h4 {
  width: 820px;
  margin: 0 auto 45px auto;
  border-top: 1px solid #eeebdf;
  border-bottom: 1px solid #eeebdf;
  font-size: 2.8rem;
  line-height: 1.5;
  padding: 15px 0;
  letter-spacing: .04em;
}
#concept-about p {
  margin-bottom: 30px;
}
#concept-about p:last-child {
  margin-bottom: 0;
}

/* #kodawari
------------------------------*/
#kodawari {
  background: url(../img/concept/kodawari-btm_bg.png) bottom center no-repeat;
}
#kodawari .kodawari-list-item {
  margin-bottom: 80px;
}
#kodawari .kodawari-list-item:last-child {
  margin-bottom: 0;
}
#kodawari .kodawari-list-item .kodawari-content {
  width: 620px;
}
#kodawari .kodawari-list-item h4 {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 0 0 5px 80px;
  border-bottom: 1px solid #ed927a;
  margin-bottom: 25px;
  position: relative;
}
#kodawari .kodawari-list-item h4:before {
  width: 74px;
  height: 90px;
  position: absolute;
  content: '';
  background: url(../img/concept/kodawari-subttl_deco.png) center/100% no-repeat;
  left: 0;
  bottom: -6px;
}
#kodawari .kodawari-list-item h4 span {
  color: #ed927a;
}

/* #greeting
------------------------------*/
#greeting .greeting-wrp {
  position: relative;
}
#greeting .owner-illust {
  position: absolute;
  left: 0;
  top: 0;
}
#greeting .greeting-content {
  width: 820px;
  margin-left: auto;
}
#greeting h4 {
  width: 290px;
  border-bottom: 1px solid #eeebdf;
  text-align: left;
  font-size: 2.4rem;
  font-weight: 500;
  color: #ed927a;
  padding: 0 5px 5px 60px;
  margin: 0 0 20px 100px;
  position: relative;
  box-sizing: border-box;
}
#greeting h4:before {
  width: 55px;
  height: 54px;
  position: absolute;
  content: '';
  left: 0;
  bottom: -6px;
  background: url(../img/concept/owner-name_deco.png) center/100% no-repeat;
}
#greeting .com-txt {
  background: url(../img/concept/greeting-btm_deco.png) right bottom no-repeat, #f9f8f2;
  box-sizing: border-box;
  padding: 30px 45px 45px 95px;
}
#greeting .com-txt p {
  margin-bottom: 30px;
}
#greeting .com-txt p:last-child {
  margin-bottom: 0;
}

/*==========================================
メニュー
===========================================*/
.menu-pagenav {
  gap: 40px;
}
.menu-pagenav li {
  width: 315px;
}
.menu-pagenav li .com-btn {
  width: 100%;
}

/* #menu-intro
------------------------------*/
#menu-intro .ttl01 {
  margin-bottom: 45px;
}
#menu-intro .menu-category {
  gap: 20px;
  margin-bottom: 50px;
}
#menu-intro .menu-category li {
  font-size: 1.8rem;
  font-weight: 500;
}
#menu-intro .menu-category li a {
  display: block;
  color: #ed927a;
  border: 1px solid #ed927a;
  padding: 13px 15px;
  background: #fff;
}
#menu-intro .menu-category li a span {
  padding-left: 25px;
  position: relative;
}
#menu-intro .menu-category li a span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: '';
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-top: 1px solid #ed927a;
  border-right: 1px solid #ed927a;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .3s;
}
#menu-intro .menu-category li a:hover {
  opacity: 1;
  color: #fff;
  background: #ed927a;
}
#menu-intro .menu-category li a:hover span:before {
  border-color: #fff;
}
#menu-intro .menu-category .current a {
  color: #fff;
  background: #ed927a;
}
#menu-intro .menu-category .current a span:before {
  border-color: #fff;
}
#menu-intro .menu-list-item {
  border: 1px solid #eeebdf;
  padding: 30px;
  margin-bottom: 40px;
}
#menu-intro .menu-list-item:last-child {
  margin-bottom: 0;
}
#menu-intro .menu-list-item .menu-thumb {
  width: 320px;
  height: 240px;
}
#menu-intro .menu-list-item .menu-thumb img {
  border-radius: 10px;
}
#menu-intro .menu-list-item .menu-content {
  width: 680px;
}
#menu-intro .menu-list-item .menu-content .menu-detail {
  text-align: left;
  margin-bottom: 30px;
}
#menu-intro .menu-list-item .menu-content .menu-item-course {
  margin-bottom: 25px;
}
#menu-intro .menu-list-item .menu-content .menu-item-course:last-child {
  margin-bottom: 0;
}
#menu-intro .menu-list-item .menu-content .menu-item-course dt {
  background: #f9f8f2;
  padding: 5px 15px;
  text-align: left;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 10px;
}
#menu-intro .menu-list-item .menu-content .menu-item-course dd {
  gap: 15px 20px;
}
#menu-intro .menu-list-item .menu-content .menu-item-course .menu-time {
  font-size: 1.6rem;
  font-weight: 500;
}
#menu-intro .menu-list-item .menu-content .menu-item-course .menu-price {
  font-size: 2rem;
  color: #ed927a;
  font-weight: 500;
}
#menu-intro .menu-list-item .menu-content .menu-item-course .menu-price small {
  font-size: 1.2rem;
}
#menu-intro .menu-list-item .menu-content .menu-item-course .menu-notes {
  width: 100%;
  padding-left: 10px;
  border-left: 4px solid #eeebdf;
  box-sizing: border-box;
  text-align: left;
}

/* #voice
------------------------------*/
#voice .voice-list-item {
  margin-bottom: 50px;
  background: #f9f8f2;
  padding: 20px;
  text-align: left;
  position: relative;
}
#voice .voice-list-item:before {
  width: 121px;
  height: 58px;
  position: absolute;
  content: '';
  background: url(../img/menu/voice-btm_deco.png) center/100% no-repeat;
  right: 0;
  bottom: -18px;
}
#voice .voice-list-item:last-child {
  margin-bottom: 0;
}
#voice .voice-list-item .voice-post-ttl {
  background: url(../img/menu/voice-ttl_icon.png) left 12px top 11px no-repeat, #fff;
  font-size: 2rem;
  color: #ed927a;
  margin-bottom: 10px;
  padding: 5px 15px 5px 45px;
}
#voice .voice-list-item .voice-age {
  border-left: 4px solid #ed927a;
  padding-left: 10px;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #ed927a;
}

/*==========================================
ご利用案内
===========================================*/
.guide-pagenav {
  gap: 40px;
}
.guide-pagenav li {
  width: 315px;
}
.guide-pagenav li .com-btn {
  width: 100%;
}

/* #step
------------------------------*/
#step .step-list-item {
  padding: 35px 0;
  border-bottom: 1px solid #eeebdf;
  position: relative;
}
#step .step-list-item:first-child {
  padding-top: 0;
}
#step .step-list-item:after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: -13px;
  width: 0;
  height: 0;
  border-style: solid;
  margin: 0 auto;
  border-width: 20px 21px 0 21px;
  border-color: #fed070 transparent transparent transparent;
}
#step .step-list-item:last-child:after {
  border: none;
}
#step .step-list-item .step-content {
  width: 820px;
}
#step .step-list-item .step-content dt {
  font-size: 2.8rem;
  font-weight: 500;
  border-bottom: 1px solid #eeebdf;
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
}
#step .step-list-item .step-content dt:before {
  width: 43px;
  height: 33px;
  position: absolute;
  content: '';
  background: url(../img/guide/step-subttl_deco.png) center/100% no-repeat;
  left: 0;
  bottom: 0;
}
#step .step-list-item .step-content dt .step-num {
  font-size: 3.6rem;
  color: #ed927a;
  margin-right: 10px;
}
#step .step-list-item .step-content .step-btn-list {
  gap: 15px;
}
#step .coconara-bnr {
  width: 920px;
  margin: 80px auto 0 auto;
  border: 1px solid #ed927a;
  box-sizing: border-box;
  background: url(../img/guide/coconara-bnr_bg.png) left -40px top -40px no-repeat;
  padding: 40px 0 35px 0;
  position: relative;
  box-shadow: 0 0 8px rgba(237, 146, 122, 0.5);
}
#step .coconara-bnr:before {
  width: 167px;
  height: 161px;
  position: absolute;
  content: '';
  background: url(../img/guide/coconara-bnr_left_deco.png) center/100% no-repeat;
  left: 10px;
  bottom: -20px;
}
#step .coconara-bnr:after {
  width: 264px;
  height: 247px;
  position: absolute;
  content: '';
  background: url(../img/guide/coconara-bnr_right_deco.png) center/100% no-repeat;
  right: -10px;
  bottom: -50px;
}
#step .coconara-bnr h4 {
  font-size: 2.8rem;
  letter-spacing: .04em;
  margin-bottom: 25px;
}
#step .coconara-bnr h4 span {
  color: #ed927a;
  font-size: 3.2rem;
}
#step .coconara-bnr .com-btn {
  position: relative;
  z-index: 10;
}

/* #faq
------------------------------*/
#faq .faq-list-item {
  padding: 30px 0;
  text-align: left;
  border-bottom: 1px solid #eeebdf;
}
#faq .faq-list-item:first-child {
  padding-top: 0;
}
#faq .faq-list-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
#faq .faq-list-item dl {
  width: 1045px;
  margin-left: auto;
}
#faq .faq-list-item dt, #faq .faq-list-item dd {
  position: relative;
}
#faq .faq-list-item dt:before, #faq .faq-list-item dd:before {
  position: absolute;
  left: -35px;
  font-size: 2rem;
  font-weight: 500;
}
#faq .faq-list-item dt {
  font-size: 2rem;
  color: #ed927a;
  margin-bottom: 15px;
}
#faq .faq-list-item dt:before {
  content: 'Q.';
  color: #ed927a;
  top: 0;
}
#faq .faq-list-item dd {
  background: #f9f8f2;
  padding: 15px;
}
#faq .faq-list-item dd:before {
  content: 'A.';
  color: #7c76e1;
  top: 8px;
}

/*==========================================
サロン情報
===========================================*/
#salon-info .com-dl .com-line-btn {
  margin-top: 15px;
}

/*==========================================
一覧ぺージ用カテゴリ(セレクトボックス)
===========================================*/
.category-select {
  overflow: hidden;
  width: 300px;
  margin: 0 0 45px auto;
  text-align: center;
  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: flex;
  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: "Shippori Mincho B1", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", 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 {
  padding: 10px;
  box-sizing: border-box;
}
.post-wrap .column-lists > li a:hover .more-btn {
  background: #fff;
  color: #ed927a;
}
.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: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
}
.post-wrap .column-lists .post-ttl time {
  color: #ed927a;
  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: 1rem;
}
.post-wrap .column-lists .post-ttl .category-label {
  width: 720px;
  display: flex;
  flex-wrap: wrap;
}
.post-wrap .column-lists .post-ttl .category-label li {
  border: 1px solid #ed927a;
  color: #fff;
  background: #ed927a;
  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.3rem;
  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: #ed927a;
  border: 1px solid #ed927a;
  box-sizing: border-box;
  padding: 5px 0;
  display: block;
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.post-wrap .column-lists .thumb {
  width: 210px;
  height: 200px;
}
.post-wrap .column-lists .post-area {
  width: 800px;
}
.post-wrap .post-content {
  padding: 0 20px 5px 20px;
  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: 1.1rem;
  text-align: left;
  width: 85px;
  padding: 3px 0;
  box-sizing: border-box;
}
.single-meta .category-label {
  width: 950px;
  font-size: 1rem;
  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 #ed927a;
  color: #ed927a;
  padding: 3px 10px;
  border-radius: 25px;
  display: block;
}
.single-meta .category-label li a:hover {
  opacity: 1;
  color: #fff;
  background: #ed927a;
}

/*----------------------------------
詳細ページのカテゴリー表示(テキストエリア下部)
----------------------------------*/
.single-category {
  max-width: 250px;
  min-width: 150px;
  margin-top: 10px;
  margin-left: auto;
  display: flex;
  align-items: baseline;
  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: flex;
  align-items: center;
  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: 0;
  right: 10px;
  color: #f00;
  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;
  box-sizing: border-box;
  font-family: "Shippori Mincho B1", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
}
#contact .contact-form select {
  padding: 5px;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-family: "Shippori Mincho B1", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
  color: #635b2c;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
}
#contact .contact-form #pc01,
#contact .contact-form #pc02 {
  width: 150px;
}
#contact .contact-form #date1,
#contact .contact-form #date2,
#contact .contact-form #date3 {
  width: 300px;
}
#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: 1.3rem;
  text-align: center;
  padding: 5px;
  display: block;
  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: #ed927a;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap p {
  background: #000;
}
#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: #000;
}
#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;
  box-sizing: border-box;
  font-family: "Shippori Mincho B1", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #ed927a;
  color: #ed927a;
  border-radius: 0;
}
#contact input[type='button']:hover,
#contact input[type='submit']:hover,
#contact .contact-submits-wrap button:hover {
  background: #ed927a;
  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;
}
#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;
  -moz-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%;
  -moz-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);
  -ms-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;
}

/*==========================================
プライバシーポリシー(LPフレーム時)
===========================================*/
/*==========================================
404.php
===========================================*/
#err-cont .txt-blc a {
  text-decoration: underline;
}
