@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: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-optical-sizing: auto;
  color: #333;
  line-height: 1.8;
  text-align: center;
  letter-spacing: .04em;
  font-size: 1.6rem;
  word-break: normal;
}

#wrapper {
  min-width: 1200px;
}

/*==========================================
PC表示で電話番号リンクを無効
===========================================*/
a[href^="tel:"] {
  pointer-events: none;
}

/*==========================================
PC非表示
===========================================*/
.pc-none {
  display: none !important;
}

/*==========================================
パンくずリスト
===========================================*/
div .bread {
  font-size: 1.4rem;
  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: #00a7d7;
}
div .bread li:after {
  content: " > ";
  padding: 0 2px;
  color: #999;
}
div .bread li:last-child:after {
  content: "";
}
div .bread li a {
  color: #999;
}
div .bread li a:hover {
  text-decoration: underline;
}

/*==========================================
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-column {
  flex-direction: column;
}

/*水平方向の揃え
=================================================*/
/*初期値
-----------------------*/
.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;
}

/*==========================================
サイトの標準横幅と内部余白
===========================================*/
.inbox {
  width: 1080px;
  margin: 0 auto;
}

.com-pd {
  padding: 125px 0;
}

.com-pt {
  padding-top: 125px;
}

.com-pb {
  padding-bottom: 125px;
}

.com-mb {
  margin-bottom: 125px;
}

/*==========================================
スマホ用ドロワー無効
===========================================*/
.drawer_menu {
  display: none;
}

#nav-toggle,
#global-nav {
  display: none;
}

.drawer_menu {
  display: none;
}

/*==========================================
header
===========================================*/
#header {
  padding: 0 15px 0 20px;
}
#header .hd-right {
  width: 600px;
  margin-left: auto;
}
#header .hd-info {
  gap: 0 15px;
  margin-bottom: 15px;
}
#header .hd-info .worktime {
  width: 140px;
  font-size: 1.2rem;
}
#header .hd-info .worktime dl {
  margin-bottom: 5px;
}
#header .hd-info .worktime dl:last-child {
  margin-bottom: 0;
}
#header .hd-info .worktime dl dt {
  width: 60px;
  background: #eee;
  margin-right: 5px;
}
#header .hd-info .worktime dl dd {
  width: 75px;
  text-align: left;
}

/*==========================================
nav
===========================================*/
#nav .nav-list-item {
  font-size: 1.6rem;
  font-weight: 700;
}
#nav .nav-list-item a {
  padding: 0 20px 10px 20px;
  display: block;
  color: #00a7d7;
  position: relative;
}
#nav .nav-list-item a:before {
  width: 100%;
  height: 5px;
  background: #cfedf2;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  opacity: 0;
}
#nav .nav-list-item a:hover {
  opacity: 1;
}
#nav .nav-list-item a:hover:before {
  opacity: 1;
}
#nav .current a:before {
  opacity: 1;
}

/*==========================================
mv
===========================================*/
#mv {
  position: relative;
  height: clamp(500px, 36.458vw, 700px);
  background: url(../img/top/mv/mv-base_bg.png) right bottom/37.5% no-repeat;
}
#mv h2 {
  width: 31.25%;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 4.1666%;
  margin: auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mv .mv-slide-wrp {
  width: 62.5%;
  height: 100%;
  position: relative;
}
#mv .mv-slide-wrp:before {
  width: 100%;
  height: 1200px;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  background: url(../img/top/mv/mv-frame.png) center top/100% no-repeat;
}
#mv .mv-slide-wrp .mv-free {
  position: absolute;
  right: -65px;
  bottom: -40px;
  z-index: 100;
}
#mv .mv-slide-wrp #top-slider {
  height: clamp(500px, 36.458vw, 700px);
  position: relative;
}
#mv .mv-slide-wrp #top-slider li {
  height: 100%;
}
#mv .mv-slide-wrp #top-slider li:nth-child(1) {
  background: url(../img/top/mv/slide01.jpg) center no-repeat;
  background-size: cover;
}
#mv .mv-slide-wrp #top-slider li:nth-child(2) {
  background: url(../img/top/mv/slide02.jpg) center no-repeat;
  background-size: cover;
}
#mv .mv-slide-wrp #top-slider li:nth-child(3) {
  background: url(../img/top/mv/slide03.jpg) center no-repeat;
  background-size: cover;
}
#mv .mv-slide-wrp #top-slider li:nth-child(4) {
  background: url(../img/top/mv/slide04.jpg) center no-repeat;
  background-size: cover;
}
#mv .mv-slide-wrp .bx-wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
#mv .mv-slide-wrp .bx-viewport {
  overflow: visible !important;
  margin: auto;
  text-align: center;
}
#mv .mv-slide-wrp .bx-pager {
  display: none;
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-cont {
  text-align: left;
}
.com-cont p {
  margin-bottom: 30px;
  line-height: 1.8;
  letter-spacing: 0;
}
.com-cont 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-mail-btn {
  width: 220px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0 5px 0 25px;
  font-size: 1.6rem;
  height: 60px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#07c5e1+0,02d4cd+100 */
  background: linear-gradient(to right, #07c5e1 0%, #02d4cd 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  position: relative;
  text-align: center;
  box-sizing: border-box;
}
.com-mail-btn:before {
  width: 20px;
  height: 14px;
  position: absolute;
  content: '';
  background: url(../img/common/mail_icon.png) center/100% no-repeat;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 1;
}

.com-tel-wrp .phone-num {
  font-size: 2.5rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  color: #0abcd6;
  line-height: 1;
  padding-left: 16px;
  background: url(../img/common/tel_icon.png) left center no-repeat;
}
.com-tel-wrp .tel-attention {
  display: block;
  line-height: 1;
}

.com-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  height: 60px;
  box-sizing: border-box;
  text-align: center;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#07c5e1+0,02d4cd+100 */
  background: linear-gradient(to right, #07c5e1 0%, #02d4cd 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.com-btn span {
  position: relative;
  transition: all .3s;
}
.com-btn span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40px;
  right: auto;
  margin: auto;
  content: '';
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .3s;
}
.com-btn:hover span:before {
  left: -30px;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-dl > dl {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #00a7d7;
}
.com-dl > dl:last-child {
  border-bottom: none;
}
.com-dl > dl > dt, .com-dl > dl > dd {
  box-sizing: border-box;
  text-align: left;
}
.com-dl > dl > dt {
  padding: 15px 10px;
  width: 180px;
  vertical-align: top;
  background: #ebfafb;
  color: #0abcd6;
  font-weight: 700;
}
.com-dl > dl > dd {
  width: 900px;
  padding: 15px 20px;
}
.com-dl > dl > dd .tel-attention {
  display: block;
}
.com-dl > dl > dd a[href^="mailto:"] {
  text-decoration: underline;
}

/*==========================================
index.php
===========================================*/
/* top-worry
-----------------------------*/
#top-worry {
  padding: 130px 0 70px 0;
  position: relative;
  z-index: 1;
}
#top-worry:before {
  width: 91.6666%;
  height: 460px;
  min-width: 1200px;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  z-index: -1;
  background: #07c5e1;
}
#top-worry h3 {
  font-size: 4.2rem;
  color: #00a7d7;
  font-weight: 500;
  margin-bottom: 20px;
}
#top-worry h3 span {
  font-size: 4.8rem;
  color: #0abcd6;
  position: relative;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#07c5e1+73,fff66e+73 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 73%, #fff66e 73%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
#top-worry .worry-wrp {
  background: url(../img/top/worry-house_illust.png) bottom 40px center no-repeat, linear-gradient(to bottom, #ebfafb 0%, #eeeeee 100%);
  padding: 35px 30px 277px 30px;
  margin-bottom: 110px;
  position: relative;
}
#top-worry .worry-wrp:before {
  width: 90px;
  height: 52px;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: -92px;
  margin: 0 auto;
  background: url(../img/top/worry-arr.png) center/100% no-repeat;
}
#top-worry .worry-wrp .worry-list {
  gap: 35px 20px;
}
#top-worry .worry-wrp .worry-list li {
  width: 240px;
  background: #fff;
  position: relative;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#top-worry .worry-wrp .worry-list li:before {
  width: 36px;
  height: 24px;
  position: absolute;
  content: '';
  background: url(../img/top/worry-li_arr.png) center/100% no-repeat;
  bottom: -24px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
#top-worry .worry-wrp .worry-list li:nth-child(4n - 1):before, #top-worry .worry-wrp .worry-list li:nth-child(4n):before {
  transform: scale(-1, 1);
}
#top-worry .worry-wrp .worry-list li em {
  color: #00a7d7;
}
#top-worry .worry-solution {
  color: #fff;
  font-size: 4.8rem;
  line-height: 1.5;
  font-weight: 500;
}
#top-worry .worry-solution:first-line {
  font-size: 4.2rem;
}
#top-worry .worry-solution span {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#07c5e1+73,fff66e+73 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 73%, #00d7df 73%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

/* top-intro
-----------------------------*/
#top-intro {
  padding: 110px 0 235px 0;
  background: url(../img/top/intro-bg.png) left top/70.8333% no-repeat;
}
#top-intro .inbox {
  width: clamp(1080px, 91.6666%, 1760px);
}
#top-intro .intro-wrp {
  position: relative;
}
#top-intro .intro-content {
  width: 34.089%;
  min-width: 550px;
  min-height: 560px;
}
#top-intro .intro-content h3 {
  background: #fff;
  border-left: 7px solid #07c5e1;
  padding-left: 10px;
  font-size: calc(clamp(3rem, 1rem + 2.2vw, 4.2rem));
  margin-bottom: 20px;
  color: #00a7d7;
  font-weight: 500;
  line-height: 1.5;
}
#top-intro .intro-content h3 em {
  font-size: calc(clamp(3.6rem, 1.6rem + 2.2vw, 4.8rem));
}
#top-intro .intro-content h3 span {
  color: #fbb52e;
  font-size: calc(clamp(3.6rem, 1.6rem + 2.2vw, 4.8rem));
}
#top-intro .intro-content p {
  font-size: calc(clamp(1.3rem, 1.067rem + 0.3vw, 1.6rem));
}
#top-intro .intro-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  z-index: 1;
}
#top-intro .intro-img:before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  right: -9%;
  bottom: -12%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#cfedf2+0,fff66e+100 */
  background: linear-gradient(to right, #cfedf2 0%, #fff66e 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  z-index: -1;
}

/* top-beginner
-----------------------------*/
#top-beginner {
  padding: 195px 0 100px 0;
  background: url(../img/top/beginner-bg.png) right bottom 70px/26.302% no-repeat, #ebfafb;
  position: relative;
  z-index: 1;
}
#top-beginner:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 120px 240px 0 240px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  z-index: -1;
}
#top-beginner h3 {
  font-size: 4.8rem;
  color: #0abcd6;
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  font-weight: 500;
}
#top-beginner .inbox {
  width: 1180px;
  position: relative;
}
#top-beginner .inbox:before {
  width: 338px;
  height: 546px;
  position: absolute;
  content: '';
  right: 0;
  bottom: -100px;
  z-index: 10;
  background: url(../img/top/beginner-woman.png) center/100% no-repeat;
}
#top-beginner .beginner-content {
  width: 920px;
  background: rgba(207, 237, 242, 0.6);
  padding: 95px 50px 50px 50px;
  box-sizing: border-box;
  position: relative;
}
#top-beginner .beginner-content h4 {
  width: 620px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  background: #fff;
  font-size: 3rem;
  color: #00a7d7;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  padding: 10px 0 20px 0;
}
#top-beginner .beginner-content h4:before, #top-beginner .beginner-content h4:after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  display: inline-block;
}
#top-beginner .beginner-content h4:before {
  left: 0;
  top: 0;
  border-width: 50px 50px 0 0;
  border-color: #07c5e1 transparent transparent transparent;
}
#top-beginner .beginner-content h4:after {
  right: 0;
  bottom: 0;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #07c5e1 transparent;
}
#top-beginner .beginner-content h4 span {
  color: #fbb52e;
  font-size: 4.2rem;
}
#top-beginner .beginner-content p {
  width: 620px;
  margin: 0 auto 20px auto;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  position: relative;
}
#top-beginner .beginner-content p:before, #top-beginner .beginner-content p:after {
  width: 2px;
  height: 25px;
  position: absolute;
  content: '';
  background: #333;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#top-beginner .beginner-content p:before {
  left: 8px;
  transform: rotate(-25deg);
}
#top-beginner .beginner-content p:after {
  right: 8px;
  transform: rotate(25deg);
}
#top-beginner .beginner-content p span {
  color: #00a7d7;
  font-size: 2.8rem;
}
#top-beginner .beginner-content .beginner-list {
  gap: 35px;
}
#top-beginner .beginner-content .beginner-list li {
  font-size: 2.4rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 130px;
}
#top-beginner .beginner-content .beginner-list li:nth-child(3n) {
  position: relative;
}
#top-beginner .beginner-content .beginner-list li:nth-child(3n):after {
  width: 55px;
  height: 48px;
  position: absolute;
  content: '';
  right: 33px;
  bottom: -38px;
  background: url(../img/top/beginner-li_mark.png) center/100% no-repeat;
}
#top-beginner .beginner-content .beginner-list li em {
  color: #00a7d7;
}
#top-beginner .beginner-content .beginner-list li:nth-child(1) {
  background: url(../img/top/beginner-li01_bg.png) center/100% no-repeat;
}
#top-beginner .beginner-content .beginner-list li:nth-child(2) {
  background: url(../img/top/beginner-li02_bg.png) center/100% no-repeat;
}
#top-beginner .beginner-content .beginner-list li:nth-child(3) {
  background: url(../img/top/beginner-li03_bg.png) center/100% no-repeat;
}
#top-beginner .beginner-content .com-btn {
  width: 480px;
  margin: 30px auto 0 auto;
}

/* top-business
-----------------------------*/
#top-business {
  padding: 90px 0 100px 0;
  background: url(../img/top/business-bg.png) center/cover no-repeat;
}
#top-business h3 {
  font-size: 4.8rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 170px;
}
#top-business .business-wrp {
  width: 860px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 70px 15px 45px 15px;
  box-sizing: border-box;
  position: relative;
}
#top-business .business-wrp .business-list {
  position: absolute;
  left: 0;
  right: 0;
  top: -125px;
  width: 830px;
  margin: 0 auto;
  gap: 20px;
}
#top-business .business-wrp .business-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 180px;
  padding: 15px;
  box-sizing: border-box;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#00a7d7+0,3873ea+100 */
  background: linear-gradient(to bottom, #00a7d7 0%, #3873ea 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
#top-business .business-wrp .business-list li .business-icon {
  flex: 1 0 auto;
  margin-bottom: 5px;
}
#top-business .business-wrp .business-list li .business-list-txt {
  color: #fff;
  font-size: 2.4rem;
  display: block;
  line-height: 1.5;
  font-weight: 500;
  flex: 1 0 auto;
}
#top-business .com-btn {
  width: 480px;
  margin: 40px auto 0 auto;
}

/* top-case
-----------------------------*/
#top-case {
  padding: 115px 0 120px 0;
  background: url(../img/top/case-bg.png) left bottom/47.9166% no-repeat;
  position: relative;
  z-index: 1;
}
#top-case:before {
  width: 85.41666%;
  height: clamp(420px, 36vw, 740px);
  position: absolute;
  content: '';
  z-index: -1;
  right: 0;
  bottom: 0;
  background: rgba(235, 250, 251, 0.55);
}
#top-case .inbox {
  width: clamp(1080px, 91.1458%, 1750px);
  margin: 0 0 0 auto;
}
#top-case .case-ttl-wrp {
  width: 23.8636%;
  color: #fff;
  background: #07c5e1;
  padding: 75px 3.385%;
  box-sizing: border-box;
}
#top-case .case-ttl-wrp h3 {
  font-size: calc(clamp(3.8rem, 2.133rem + 2.22vw, 4.8rem));
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff66e;
  margin-bottom: 15px;
}
#top-case .case-ttl-wrp .view-more {
  color: #fff;
  font-size: 1.6rem;
}
#top-case .case-ttl-wrp .view-more:hover {
  text-decoration: underline;
}
#top-case .case-ttl-wrp .view-more span {
  position: relative;
  transition: all .3s;
}
#top-case .case-ttl-wrp .view-more span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  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);
  transition: all .3s;
}
#top-case .case-img-wrp {
  width: 65.909%;
}
#top-case .case-img-wrp .swiper-slide {
  width: 100%;
  height: clamp(480px, 33.333vw, 640px);
}
#top-case .case-img-wrp .case-img-list {
  gap: 15px 1.832%;
  margin-top: 25px;
}
#top-case .case-img-wrp .case-img-list li {
  width: 18.5344%;
  height: clamp(80px, 6.2495vw, 120px);
}

/* top-news
-----------------------------*/
#top-news {
  padding: 115px 0 110px 0;
}
#top-news .news-ttl-wrp {
  width: 240px;
}
#top-news .news-ttl-wrp h3 {
  font-size: 4.8rem;
  font-weight: 500;
  color: #0abcd6;
  margin-bottom: 10px;
}
#top-news .news-list {
  width: 800px;
  background: #f5f5f5;
  padding: 10px 25px 30px 25px;
  box-sizing: border-box;
}
#top-news .news-list .news-list-item {
  text-align: left;
  border-bottom: 1px solid #fff;
}
#top-news .news-list .news-list-item:last-child {
  border-bottom: none;
}
#top-news .news-list .news-list-item a {
  padding: 12px 0;
}
#top-news .news-list .news-list-item time {
  width: 110px;
  color: #fff;
  padding: 5px 5px 5px 15px;
  box-sizing: border-box;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  background: #07c5e1;
  position: relative;
}
#top-news .news-list .news-list-item time:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  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);
  transition: all .3s;
}
#top-news .news-list .news-list-item h4 {
  width: 610px;
  font-size: 1.5rem;
}
#top-news .news-list .news-list-item .category-label {
  gap: 5px;
  margin-top: 5px;
}
#top-news .news-list .news-list-item .category-label li {
  background: #fff;
  font-size: 1.2rem;
  color: #00a7d7;
  padding: 0 5px;
}
#top-news .news-list .news-list-item:hover h4 {
  text-decoration: underline;
}

/*==========================================
footer
===========================================*/
#footer {
  border-top: 1px solid #cfedf2;
}
#footer .inbox {
  padding: 45px 0 15px 0;
}
#footer .ft-logo {
  display: block;
  width: 159px;
  margin: 0 auto 25px auto;
}
#footer .ft-info {
  gap: 20px;
  margin-bottom: 20px;
}
#footer .worktime {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 15px;
}
#footer .worktime span {
  background: #eee;
  display: inline-block;
  padding: 0 5px;
}
#footer .ft-adr {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 20px;
}
#footer .ft-adr span {
  padding-left: 15px;
  background: url(../img/common/ft-pin_icon.png) left center no-repeat;
}
#footer .ft-ofc {
  display: block;
  width: 320px;
  margin: 0 auto 25px auto;
}
#footer .ft-nav li {
  font-size: 1.2rem;
  font-weight: 500;
  position: relative;
}
#footer .ft-nav li:before {
  width: 1px;
  height: 12px;
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  background: #aad9ed;
}
#footer .ft-nav li:first-child:before {
  background: none;
}
#footer .ft-nav li a {
  padding: 0 15px;
  color: #00a7d7;
  display: block;
}
#footer .ft-nav li a:hover {
  text-decoration: underline;
}

#copyright {
  background: #07c5e1;
  word-break: normal;
  color: #fff;
  padding: 5px 0;
}
#copyright small {
  font-size: 1.1rem;
}
#copyright a {
  color: #fff;
  text-decoration: underline;
}

/*==========================================
sv
===========================================*/
.lower-sv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
}
.lower-sv h2 {
  font-size: 4.8rem;
  color: #fff;
  font-weight: 500;
}
.lower-sv h2 span {
  padding: 0 20px;
  line-height: 1.5;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#07c5e1+0,02d4cd+100 */
  background: linear-gradient(to right, #07c5e1 0%, #02d4cd 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  display: inline-block;
}

#beginner-sv {
  background: url(../img/sv/beginner-sv.jpg) center/cover no-repeat;
}

#business-sv {
  background: url(../img/sv/business-sv.jpg) center/cover no-repeat;
}

#case-sv {
  background: url(../img/sv/case-sv.jpg) center/cover no-repeat;
}

#info-sv {
  background: url(../img/sv/info-sv.jpg) center/cover no-repeat;
}

#faq-sv {
  background: url(../img/sv/faq-sv.jpg) center/cover no-repeat;
}

#news-sv {
  background: url(../img/sv/news-sv.jpg) center/cover no-repeat;
}

#contact-sv {
  background: url(../img/sv/contact-sv.jpg) center/cover no-repeat;
}

#complete-sv {
  background: url(../img/sv/complete-sv.jpg) center/cover no-repeat;
}

#privacy-sv {
  background: url(../img/sv/privacy-sv.jpg) center/cover no-repeat;
}

#site-sv {
  background: url(../img/sv/site-sv.jpg) center/cover no-repeat;
}

#e404-sv {
  background: url(../img/sv/e404-sv.jpg) center/cover no-repeat;
}

/*==========================================
共通タイトル
===========================================*/
.ttl01 {
  font-size: 4.8rem;
  color: #0abcd6;
  font-weight: 500;
  border-bottom: 10px solid #07c5e1;
  margin-bottom: 15px;
}

.ttl02 {
  text-align: left;
  font-size: 3.2rem;
  font-weight: 500;
  color: #0abcd6;
  border-left: 10px solid #0abcd6;
  padding-left: 10px;
  margin-bottom: 10px;
}

/*==========================================
beginner.php
===========================================*/
/* beginner-info
----------------------------*/
#beginner-info {
  padding-bottom: 60px;
}
#beginner-info h3 {
  font-size: 4.8rem;
  font-weight: 500;
  color: #0abcd6;
  margin-bottom: 30px;
  line-height: 1.5;
}
#beginner-info h3 span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 2.4rem;
  padding: 5px 0;
  border-top: 5px solid #0abcd6;
  border-bottom: 5px solid #0abcd6;
}
#beginner-info h3 em {
  color: #fbb52e;
}
#beginner-info h4 {
  background: #07c5e1;
  color: #fff;
  font-weight: 500;
  font-size: 2.4rem;
  margin-bottom: 20px;
}
#beginner-info .info-content {
  width: 610px;
}
#beginner-info .info-img img {
  box-shadow: 20px 20px #ebfafb;
}

/* beginner-sign
----------------------------*/
#beginner-sign h3 {
  font-size: 4.8rem;
  color: #0abcd6;
  margin-bottom: 10px;
  font-weight: 500;
}
#beginner-sign .sign-wrp {
  background: #ebfafb;
  padding: 75px 0;
  position: relative;
}
#beginner-sign .sign-wrp:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 45px 0 45px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
}
#beginner-sign .sign-leadtxt {
  background: #fff;
  width: 640px;
  margin: 0 auto 50px auto;
  padding: 20px;
  box-sizing: border-box;
}
#beginner-sign .sign-list {
  width: 900px;
  margin: 0 auto;
  gap: 40px 135px;
}
#beginner-sign .sign-list li {
  width: 210px;
}
#beginner-sign .sign-list li .sign-txt {
  display: block;
  font-size: 2.4rem;
  color: #00a7d7;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 5px;
}

/* beginner-choose
----------------------------*/
#beginner-choose {
  padding: 95px 0 135px 0;
}
#beginner-choose .choose-list li {
  text-align: left;
  margin-bottom: 25px;
  padding-bottom: 30px;
  border-bottom: 1px solid #cfedf2;
}
#beginner-choose .choose-list li:last-child {
  margin-bottom: 0;
}
#beginner-choose .choose-list li h4 {
  font-size: 3.2rem;
  font-weight: 500;
  position: relative;
  padding-left: 60px;
  margin-bottom: 5px;
}
#beginner-choose .choose-list li h4 .choose-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#07c5e1+0,02d4cd+100 */
  background: linear-gradient(to right, #07c5e1 0%, #02d4cd 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
#beginner-choose .choose-list li h4 em {
  color: #00a7d7;
}
#beginner-choose .choose-list li .choose-content {
  background: #ebfafb;
  padding: 15px;
}
#beginner-choose .choose-business {
  background: url(../img/beginner/business-bg.jpg) center/cover no-repeat;
  position: relative;
  padding: 50px 165px 65px 165px;
  margin-top: 120px;
}
#beginner-choose .choose-business:before {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  border: 5px solid #fff;
  box-sizing: border-box;
}
#beginner-choose .choose-business p {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 25px;
}
#beginner-choose .choose-business p span {
  color: #fff66e;
  font-size: 4.2rem;
}
#beginner-choose .choose-business .com-btn {
  width: 720px;
  margin: 0 auto;
  background: #fff;
  color: #00a7d7;
  position: relative;
  z-index: 10;
}
#beginner-choose .choose-business .com-btn span:before {
  border-color: #00a7d7;
}

/*==========================================
business.php
===========================================*/
/* business-intro
-----------------------*/
#business-intro {
  padding-bottom: 60px;
  background: url(../img/business/intro-bg.png) left bottom/45.8333% no-repeat;
}
#business-intro h3 {
  margin-bottom: 10px;
}
#business-intro h3 .sub {
  background: #07c5e1;
  color: #fff;
  font-size: 2.4rem;
  display: inline-block;
  padding: 5px 15px;
  box-shadow: 6px 6px #fff66e;
}
#business-intro h3 .sub em {
  color: #fff66e;
}
#business-intro h3 .main {
  display: block;
  font-size: 4.8rem;
  font-weight: 500;
  color: #0abcd6;
}
#business-intro h3 .main em {
  color: #fbb52e;
}
#business-intro .intro-content {
  border: 1px solid #cfedf2;
  padding: 45px;
  text-align: center;
  margin-bottom: 25px;
}
#business-intro .intro-map {
  position: relative;
}
#business-intro .intro-map .map-content {
  width: 800px;
  min-height: 336px;
}
#business-intro .intro-map .map-content h4 {
  background: #ebfafb;
  font-size: 2.4rem;
  font-weight: 500;
  padding: 2px 10px;
  color: #0abcd6;
  margin-bottom: 15px;
}
#business-intro .intro-map .map-content p span {
  font-size: 1.8rem;
  font-weight: 500;
}
#business-intro .intro-map .map-img {
  position: absolute;
  right: 0;
  top: 0;
}

/* business-sec
-----------------------*/
#business-sec {
  padding: 60px 0 55px 0;
}
#business-sec .business-wrp {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #cfedf2;
  position: relative;
}
#business-sec .business-wrp:last-child {
  margin-bottom: 0;
}
#business-sec .business-wrp .business-content {
  width: 630px;
  margin-left: auto;
  min-height: 320px;
}
#business-sec .business-wrp .business-img {
  position: absolute;
  left: 0;
  top: 0;
}

/* business-strength
-----------------------*/
#business-strength {
  padding: 55px 0 160px 0;
  background: url(../img/business/strength-bg.png) left top 55px/100% no-repeat;
}
#business-strength .strength-wrp {
  position: relative;
  margin-bottom: 80px;
}
#business-strength .strength-wrp:last-child {
  margin-bottom: 0;
}
#business-strength .strength-wrp .strength-content {
  width: 570px;
  min-height: 360px;
}
#business-strength .strength-wrp .strength-content h4 {
  font-size: 3.2rem;
  font-weight: 500;
  border-bottom: 1px solid #07c5e1;
  position: relative;
  padding-left: 65px;
  color: #0abcd6;
}
#business-strength .strength-wrp .strength-content h4 em {
  color: #fbb52e;
  font-size: 4.2rem;
}
#business-strength .strength-wrp .strength-content h4 .strength-num {
  position: absolute;
  left: 0;
  top: 15px;
  width: 50px;
  height: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#07c5e1+0,02d4cd+100 */
  background: linear-gradient(to right, #07c5e1 0%, #02d4cd 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
#business-strength .strength-wrp .strength-img {
  position: absolute;
  top: 0;
}
#business-strength .strength-wrp .strength-img img {
  box-shadow: 17px 17px #07c5e1;
}
#business-strength .strength-wrp:nth-of-type(odd) .strength-content {
  margin-left: auto;
}
#business-strength .strength-wrp:nth-of-type(odd) .strength-img {
  left: 0;
}
#business-strength .strength-wrp:nth-of-type(even) .strength-img {
  right: 0;
}

/*==========================================
case.pho
===========================================*/
.archive-tag-list {
  background: #ebfafb;
  padding: 30px 135px;
  gap: 15px;
  margin-bottom: 50px;
}
.archive-tag-list .tag-list-item {
  font-size: 1.6rem;
  font-weight: 700;
}
.archive-tag-list .tag-list-item a {
  display: inline-block;
  padding: 10px 25px 10px 50px;
  color: #fff;
  background: #07c5e1;
}
.archive-tag-list .tag-list-item a span {
  position: relative;
  transition: all .3s;
}
.archive-tag-list .tag-list-item a span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  right: auto;
  margin: auto;
  content: '';
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .3s;
}
.archive-tag-list .tag-list-item a:hover {
  opacity: 1;
  background: #fff;
  color: #07c5e1;
}
.archive-tag-list .tag-list-item a:hover span:before {
  border-color: #07c5e1;
}
.archive-tag-list .tag-list-item.current a {
  background: #fff;
  color: #07c5e1;
}
.archive-tag-list .tag-list-item.current a span:before {
  border-color: #07c5e1;
}

/* case-archive
-------------------------*/
#case-archive .case-list {
  gap: 45px 60px;
}
#case-archive .case-list .case-list-item {
  width: 320px;
}
#case-archive .case-list .case-list-item a {
  display: block;
}
#case-archive .case-list .case-list-item .case-img {
  width: 100%;
  height: 320px;
  overflow: hidden;
}
#case-archive .case-list .case-list-item .case-img .img-eff {
  width: 100%;
  height: 100%;
  transition-duration: .3s;
}
#case-archive .case-list .case-list-item a:hover {
  opacity: .9;
}
#case-archive .case-list .case-list-item a:hover .img-eff {
  transform: scale(1.1);
}
#case-archive .case-list .case-list-item figcaption {
  text-align: left;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 5px 0 5px 20px;
  background: url(../img/case/case-check_icon.png) left top 10px no-repeat;
}
#case-archive .case-list .case-list-item .category-label {
  gap: 5px;
}
#case-archive .case-list .case-list-item .category-label li {
  font-size: 1.2rem;
  font-weight: 700;
  background: #07c5e1;
  color: #fff;
  padding: 0 5px;
}

/* case-single
-------------------------*/
#case-single .ttl02 {
  font-size: 1.8rem;
  border-width: 6px;
}
#case-single .gallery-wrp {
  border-top: 1px solid #cfedf2;
  border-bottom: 1px solid #cfedf2;
  padding: 25px 30px;
  margin-bottom: 80px;
}
#case-single .gallery-wrp .gallery-list {
  gap: 30px;
}
#case-single .gallery-wrp .gallery-list li {
  width: 320px;
  height: 320px;
}
#case-single .gallery-wrp .gallery-list li:first-child {
  width: 800px;
  height: 480px;
}
#case-single .after-wrp {
  position: relative;
}
#case-single .after-wrp:before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -55px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 32px 40px 0 40px;
  border-color: #fff66e transparent transparent transparent;
}
#case-single .case-data {
  margin-top: 35px;
}
#case-single .case-data dl {
  margin-bottom: 7px;
}
#case-single .case-data dl:last-child {
  margin-bottom: 0;
}
#case-single .case-data dl dt {
  width: 180px;
  color: #0abcd6;
  font-weight: 700;
  background: #ebfafb;
  padding: 10px 15px;
  box-sizing: border-box;
  text-align: left;
}
#case-single .case-data dl dd {
  width: 880px;
  padding: 10px 15px;
  text-align: left;
}
#case-single .case-comment {
  margin-top: 35px;
}
#case-single .case-comment .comment {
  text-align: left;
}
#case-single .category-label {
  gap: 5px;
}
#case-single .category-label li a {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
  background: #07c5e1;
  display: block;
  padding: 0 5px;
}

/*==========================================
info.php
===========================================*/
/* info-greeting
-------------------------*/
#info-greeting {
  padding-bottom: 85px;
}
#info-greeting .greeting-wrp {
  position: relative;
}
#info-greeting .greering-content {
  width: 660px;
  min-height: 360px;
  margin-left: auto;
}
#info-greeting .greering-content h4 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 2.4rem;
  padding-left: 10px;
  border-left: 6px solid #07c5e1;
}
#info-greeting .greering-content h4 small {
  margin-right: 10px;
  font-size: 1.8rem;
  color: #0abcd6;
}
#info-greeting .greeting-img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
#info-greeting .greeting-img:before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  right: -30px;
  bottom: -30px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#cfedf2+0,fff66e+100 */
  background: linear-gradient(to right, rgba(207, 237, 242, 0.4) 0%, rgba(255, 246, 110, 0.4) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  z-index: -1;
}

/* info
-------------------------*/
#info {
  padding: 85px 0 135px 0;
}
#info .info-tbl {
  margin-bottom: 30px;
}

/*==========================================
一覧ぺージ用カテゴリ(セレクトボックス)
===========================================*/
.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: "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;
}

/*==========================================
news.php
===========================================*/
.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: #00a7d7;
}
.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: #00a7d7;
  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 #00a7d7;
  color: #fff;
  background: #00a7d7;
  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: 1.4rem;
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: #00a7d7;
  border: 1px solid #00a7d7;
  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 #00a7d7;
  color: #00a7d7;
  padding: 3px 10px;
  border-radius: 25px;
  display: block;
}
.single-meta .category-label li a:hover {
  opacity: 1;
  color: #fff;
  background: #00a7d7;
}

/*----------------------------------
詳細ページのカテゴリー表示(テキストエリア下部)
----------------------------------*/
.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.php
===========================================*/
#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: 18px;
  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: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
#contact .contact-form select {
  padding: 5px;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  color: #333;
  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: #00a7d7;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap p {
  background: #fbb52e;
}
#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: #fbb52e;
}
#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: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #00a7d7;
  color: #00a7d7;
  border-radius: 0;
}
#contact input[type='button']:hover,
#contact input[type='submit']:hover,
#contact .contact-submits-wrap button:hover {
  background: #00a7d7;
  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.php
===========================================*/
#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;
}
