@charset "utf-8";
/*----------------ID ----------------*/
#container {}
#header {}
#nav {}
#main {}
#footter {}
/*----------------フォント指定　----------------*/
body {
font-family: 'Noto Sans JP', sans-serif;
}
/*中途半端な改行を防ぐ*/
span.aks {
  display: inline-block;
}
/*協調*/
.em {}
.strong {}
.h1 .h2 {}
.h3 {}
.h4 {}
.h5 {}
.p {}
/*----------------カラー表示

茶色　#8C7252
ピンク　#ED949C
薄ピンク　#F4B9B9　
黄色　#FFF051
グレー　#BCBCBC
bg #FFF6EA



----------------*/
.c_b {
  color: #8C7252;
}
.c_p {
  color: #ED949C;
}
.c_y {
  color: #FFF051;
}
.c_g {
  color: #BCBCBC;
}
.bg_cy {
  background-color: #FEFFEA;
}
/*----------------class----------------*/
html {}
body {}
/*●●●●●●●●●●●●●●●●●●●●トップページ　メイン　CSS●●●●●●●●●●●●●●●●●●●●*/
.container {}
/*●●●●●●●●●●●●●●●●●●●● メニュー ●●●●●●●●●●●●●●●●●●●●*/
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 20%; /* サイドメニューの幅 */
  margin: auto;
}
.header_box {
  width: 80%;
  margin: auto;
  margin-top: 50px;
}
.logo {
  width: 100%;
}
.nav {
  width: 100%;
}
.nav ul {}
.nav li {
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  color: #8C7252;
  margin-top: 30px;
}
/*アンダーバーが左から右へスライド*/
.nav a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.nav a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #ED949C;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
  font-weight: normal;
}
.nav a:hover::after {
  transform: scale(1, 1);
  background: #ED949C;
}
.sns {
  margin-top: 40px;
}
.follow {
  text-align: center;
}
.sns_icon {
  margin-top: 20px;
}
.sns_icon ul {
  display: flex; /*定義するだけで、その直下の要素が並列になる*/
  flex-wrap: wrap; /*フレックスアイテムは折り返され、複数行で表示*/
}
.sns_icon li {
  /*計算式で値を設定*/
  width: calc(100%/4); /*←画像を横に4つ並べる場合*/
  padding: 0 5px; /*←画像の左右に5pxの余白を入れる場合*/
  box-sizing: border-box;
}
.contact_b {
  margin-top: 30px;
}
.contact_b p {
  height: 70px;
  display: grid;
  place-items: center;
  color: #fff;
}
.contact_b a {
  text-align: center;
  width: 100%;
  background-color: #ED949C;
  height: 70px;
  color: #fff;
  font-weight: bold;
  font-size: 1.3em;
  border-radius: 20px;
  letter-spacing: 0.2em;
  display: inline-block; /*ホバー時に文字が少し拡大する*/
  transition: .2s;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.contact_b a:hover {
  color: #ffffff;
  -webkit-transform: scale(1.1); /*ホバー時に文字が少し拡大する*/
  transform: scale(1.1);
}
/*================ メニュー　EdgeCSSハック ================*/
/*●●●●●●●●●●●●●●●●●●●● メイン ●●●●●●●●●●●●●●●●●●●●*/
.main {
  background-color: #FFF6EA;
  margin-left: 380px;
  width: 80%; /* メインコンテンツの幅 */
}
.slider {
  margin: auto;
  width: 85%;
}
/*----------------スライダー ----------------*/
/*スライダー001*/
.slider-001 {
  width: 100%;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  border-radius: 6px;
}
.slide-001 {
  width: 100%;
  flex-shrink: 0;
  position: relative;
  top: 0;
  left: 0;
  transition: all 0.6s ease-in-out;
}
.slide-content-001 {
  width: 100%;
  height: 600px;
}
.slide-content-001 img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 20px;
}
.prev-001, .next-001 {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  height: 30px;
  padding: 16px;
  margin-top: -20px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.2s ease;
  border-radius: 0 4px 4px 0;
  user-select: none;
}
.next-001 {
  right: 0;
  border-radius: 4px 0 0 4px;
}
.prev-001:hover, .next-001:hover {
  background-color: #F4B9B9;
}
.slide-caption-001 {
  color: white;
  font-size: 15px;
  padding: 0;
  position: absolute;
  bottom: 31px;
  width: 100%;
  text-align: center;
}
.numbertext {
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 8px 16px;
  position: absolute;
  top: 0;
}
.dots {
  height: 15px;
  padding: 0;
  position: absolute;
  bottom: 22px;
  width: 100%;
  text-align: center;
}
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 10px 4px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.2s ease;
}
.dot:hover {
  background-color: #FFF051;
}
/*---------------- スライダー 終了----------------*/
.main_content {
  margin: auto;
  width: 85%;
  margin-top: 50px;
}
.main_content h1 {
  text-align: center;
  line-height: 1.5em;
  font-size: 1.2em;
  letter-spacing: 0.05em;
}
/*---------------- お知らせ 開始----------------*/
.info {
  margin: auto;
  margin-top: 40px;
}
.sub_title {
  line-height: 1.5em;
  font-size: 1.5em;
  font-weight: bold;
}
.icon01 {
  vertical-align: middle;
  margin-right: 20px;
}
.info_box {
  width: 100%;
  margin: auto;
  display: flex; /*定義するだけで、その直下の要素が並列になる*/
  flex-wrap: wrap; /*フレックスアイテムは折り返され、複数行で表示*/
  margin-top: 30px;
  margin-bottom: 50px;
}
.info_inbox {
  background: #fff;
  border-radius: 20px;
  height: auto;
  margin: auto;
  padding: 20px;
  box-sizing: border-box;
  width: 48%;
}
.info_title {
  line-height: 1.5em;
  font-size: 1.5em;
  font-weight: bold;
  color: #ED949C;
  display: block;
  width: 90%;
  padding: 0 0 0 45px;
  /***左から5pxの上下中央に背景画像を配置*/
  background-position: left 5px center;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  /* 折り返しの対応*/
  overflow-wrap: break-word;
  background-image: url("../img/icon_bell.png");
}
.info_inbox01 {
  display: flex; /*横並び*/
}
.img_info {
  margin-top: 20px;
  display: flex; /*横並び*/
  width: 230px; /*画像サイズ指定*/
  padding: 0;
  overflow: hidden;
  position: relative;
}
.info_inbox01 p {
  margin-top: 20px;
  padding: 0 20px;
  font-size: 1.2em;
  letter-spacing: 0.05em;
  line-height: 1.2;
  width: 310px;
}
.info_gray {
  color: #BCBCBC;
  font-weight: bold;
  font-size: 0.8em;
  text-align: right;
}
/*---------------- お知らせ 終了----------------*/
/*●●●●●●●●●●●●●●●●●●●● フッターー ●●●●●●●●●●●●●●●●●●●●*/
.footer {
  background-color: #FFF051;
  padding: 45px 100px 10px;
  background-image: url("../img/fotter_bg.png");
  background-position: right 60px top 50px;
  background-repeat: no-repeat;
}
.footer_logo {}
.footer_box {
  margin-top: 45px;
}
.footer_box p {
  font-size: 1.2em;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.company {
  text-align: center;
  margin: auto;
  margin-top: 25px;
}
.company a {
  color: #8C7252;
}
.company a:hover {
  color: #8C7252;
}
/*●●●●●●●●●●●●●●●●●●●●サービスページCSS●●●●●●●●●●●●●●●●●●●●*/
/*---------------- 	ヘッダー画像　　開始----------------*/
.hed {
  position: relative;
}
.hed img {
  width: 100%;
}
.hed h2 {
  font-weight: bold;
  color: #fff;
  position: absolute;
  font-size: 2.5em;
  bottom: 30px;
  margin-left: 50px;
  text-shadow: 1px 2px 5px #8C7252;
}
/*---------------- 	ヘッダー画像　　終了----------------*/
/*---------------- 	タイトル文字　　開始----------------*/
.title_h3 {
  display: flex;
  margin-top: 50px;
  /* 上下左右中を央寄せ */
  justify-content: center;
  align-items: center;
}
.title_h3 h3 {
  font-size: 2.5em;
  margin-left: 30px;
}
.title_h3 p {
  font-size: 2.5em;
  margin-left: 30px;
  font-weight: bold;
}
/*---------------- 	タイトル文字　終了----------------*/
/*---------------- 	タイトルメニュー　　開始----------------*/
.title_menu {
  margin: auto;
  margin-top: 30px;
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 100px;
}
.title_menu ul {
  margin: auto;
  display: flex;
  flex-wrap: wrap; /*フレックスアイテムは折り返され、複数行で表示*/
  text-align: center;
  justify-content: space-between; /*子要素を等間隔にする*/
}
.title_menu li {
  font-size: 1.5em;
  font-weight: bold;
  background-color: #FFF051;
  margin-bottom: 30px;
  border-radius: 30px;
  text-align: center;
  padding: 10px 20px;
  width: 350px;
}
.title_menu li a {
  color: #8C7252;
}
/*---------------- 	タイトルメニュー　　終了----------------*/
/*---------------- 	サービスページ　コンテンツ詳細　開始----------------*/
.cont_detail {
  margin-top: 50px;
}
.cont_detail_01 {
  background-color: #fff;
  border-radius: 20px;
  padding: 35px 50px;
  margin-bottom: 50px;
}
.cont_detail_01 p {
  margin-left: 50px;
  font-weight: bold;
  font-size: 1.5em;
  height: 31px; /*アイコン高さ*/
  line-height: 31px; /*アイコン文字高さセンター揃え*/
  letter-spacing: 0.1em;
  color: #ED949C;
}
.cont_detail_02 {
  display: flex; /*横並び*/
  margin-top: 50px;
}


.cont_detail_02 .img {
  width: 400px; /*画像サイズ指定*/
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.cont_detail_p {
  line-height: 1.5em;
  margin: 0 0 0 50px;
  padding: 0 10px 0 0;
  font-size: 1.2em;
  letter-spacing: 0.1em;
}
.d_title_service01 {
  background-image: url("../img/icon_pc.png");
  background-repeat: no-repeat;
} /*サービスページアイコン*/
.d_title_service02 {
  background-image: url("../img/icon_price.png");
  background-repeat: no-repeat;
} /*料金めやすアイコン*/
.d_title_service03 {
  background-image: url("../img/icon_schedule.png");
  background-repeat: no-repeat;
} /*制作の流れアイコン*/
/*---------------- 	コンテンツ詳細　終了----------------*/
/*●●●●●●●●●●●●●●●●●●●●料金めやすCSS●●●●●●●●●●●●●●●●●●●●*/
/*---------------- 	タイトルメニュー　　開始----------------*/
.title_menu .pink_title {
  background-color: #ED949C;
  color: #fff;
}
.title_menu .pink_title a {
  color: #fff;
}
/*---------------- 	タイトルメニュー　　終了----------------*/
/*---------------- 	料金めやす　コンテンツ詳細　開始----------------*/
.cont_detail_p {}
.cont_detail_p p {
  font-weight: normal;
  font-size: 0.9em;
  color: #8C7252;
  margin: 30px 0;
  height: 100%;
}
.cont_price {
  margin: 50px 0;
}
.cont_price a {
  color: #ED949C;
}
.table_price {
  margin: 30px 0px;
  width: 100%;
  text-align: center;
}
.sample_b {
  display: block; /* ブロック要素にする */
  margin-top: 5px;
}
.sample_b a {
  color: #fff;
  background-color: #ED949C;
  font-size: 0.8em;
  padding: 2px 8px;
  letter-spacing: 0.05em;
}
.table_title {
  background: #FFF051;
  height: 100%;
}
.table_title td {
  padding: 10px;
  font-size: 1.3em;
  color: #8C7252;
  letter-spacing: 1em;
  font-weight: bold;
  vertical-align: middle;
  text-align: center;
}
.table_detail {
  text-align: center;
}
.table_detail01 {
  width: 35%;
  padding: 20px 10px;
  font-size: 1.2em;
  color: #8C7252;
  letter-spacing: 0.1em;
  font-weight: bold;
  vertical-align: middle;
  border: 1px #FFF051 dotted;
}
.table_detail02 {
  width: 40%;
  padding: 20px 10px;
  font-size: 1em;
  color: #8C7252;
  letter-spacing: 0.1em;
  vertical-align: middle;
  border: 1px #FFF051 dotted;
  line-height: 1.5em;
}
.table_detail03 {
  width: 25%;
  padding: 20px 10px;
  font-size: 1.4em;
  color: #ED949C;
  font-weight: bold;
  vertical-align: middle;
  border: 1px #FFF051 dotted;
}
.cont_price p {
  color: #8C7252;
  font-size: 1em;
  font-weight: normal;
  line-height: 1.5em;
}
.f_n_b1 /*フォント_太さ_カラー*/ {
  font-size: 0.9em;
  line-height: 2em;
  font-weight: normal;
}
.f_n_b2 /*フォント_太さ_カラー*/ {
  font-size: 0.7em;
  font-weight: normal;
  letter-spacing: 0.1em;
}
.f_b_p1 /*フォント_太さ_カラー*/ {
  color: #ED949C;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.2em;
}
.f_n_p08 /*フォント_太さ_カラー*/ {
  color: #ED949C;
  font-size: 0.8em;
  font-weight: normal;
  line-height: 1.2em;
}
/*---------------- 	料金めやす　コンテンツ詳細　終了----------------*/
/*●●●●●●●●●●●●●●●●●●●●制作の流れCSS●●●●●●●●●●●●●●●●●●●●*/
/*---------------- 	制作の流れ　コンテンツ詳細　開始----------------*/
.cont_flow {
  margin: 50px 0;
  width: 100%;
}
.flow_title {
  background-color: #FFF051;
  border-radius: 30px;
  text-align: center;
  padding: 10px 20px;
  margin: auto;
  color: #8C7252;
  font-weight: bold;
  font-size: 1.5em;
}
.flow_p {
  color: #8C7252;
  font-size: 1.1em;
  line-height: 1.5em;
  margin: auto;
  width: 100%;
  margin-top: 30px;
}
/*矢印　した向き*/
.triangle {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #BCBCBC;
  margin: auto;
  margin-top: 20px;
}
.cont_detail_a {
  line-height: 1.5em;
  margin: auto;
  font-size: 1.2em;
  letter-spacing: 0.1em;
  border: 2px solid #ED949C;
  padding: 10px;
  width: 80%
}
.cont_detail_a p {
  font-weight: normal;
  font-size: 0.9em;
  color: #8C7252;
  height: 100%;
}
.cont_detail_b {
  line-height: 1.5em;
  margin: auto;
  font-size: 1em;
  letter-spacing: 0.1em;
  border: 2px solid #ED949C;
  width: 95%;
  height: 100%;
}
.cont_detail_b p {
  font-weight: normal;
  font-size: 0.9em;
  color: #8C7252;
  width: 90%;
  margin: auto;
  padding: 10px;
}
.cont_detail_b_title {
  color: #fff;
  background: #ED949C;
  padding: 5px 10px;
  text-align: center;
}
/*---------------- 	制作の流れ　コンテンツ詳細　終了----------------*/
/*●●●●●●●●●●●●●●●●●●●●制作の流れCSS●●●●●●●●●●●●●●●●●●●●*/
/*---------------- 	制作者の経歴　開始----------------*/
.cont_detail_03 {
  background-color: #fff;
  border-radius: 20px;
  padding: 35px 50px;
  margin-bottom: 50px;
}
.cont_detail_03 ul {}
.circle {
  background-color: #FFF051;
  border-radius: 50%;
  text-align: center; /* ←文字を左右に中央揃え */
  line-height: 100px; /* ←文字を上下に中央揃え */
  width: 100px;
  height: 100px;
  margin-right: 30px;
}
.cont_detail_03 li {
  display: flex;
  align-items: center;
  line-height: 1.5em;
  font-size: 1.3em;
  letter-spacing: 0.1em;
  font-weight: bold;
  height: 100px;
  margin-bottom: 30px;
}
.cont_detail_04 {
  margin: auto;
  line-height: 1.5em;
  font-size: 1.2em;
  letter-spacing: 0.1em;
  width: 90%;
  height: 100%;
  color: #8C7252;
  font-weight: normal;
}
/*制作者のプロフィール*/
.profile {
  margin: auto;
  display: flex;
  align-items: flex-start;
}
.profile img {
  margin-right: 30px;
  width: 30%;
}
.table_profile {
  width: 70%;
}
.table_profile tr {}
.table_profile td {
  padding: 25px 10px;
  font-size: 1.2em;
  color: #8C7252;
  letter-spacing: 0.1em;
  font-weight: bold;
  vertical-align: middle;
}
/*リンク追加*/
.table_profile a {
  color: #F4B9B9;
}
.table_profile a hover {
  color: #F4B9B9;
}
/*リンク追加*/
.tp_1 {
  width: 20%;
  background-color: #FFF051;
  border: 1px #FFF dotted;
  text-align: center;
}
.tp_2 {
  width: 80%;
  border: 1px #FFF051 dotted;
}
/*私についてアイコン*/
.d_title_service_04 {
  background-image: url("../img/icon_albm.png");
  background-repeat: no-repeat;
}
.d_title_service_04 p {
  line-height: 1.5em;
  font-size: 1.2em;
  letter-spacing: 0.1em;
  width: 95%;
  height: 100%;
  color: #8C7252;
  font-weight: normal;
  margin: 30px 0 30px 50px;
}
/*---------------- 	制作者の経歴　終了----------------*/
/*●●●●●●●●●●●●●●●●●●●●	お問い合わせフォームへCSS●●●●●●●●●●●●●●●●●●●●*/
/*---------------- 	お問い合わせフォーム　文言　開始----------------*/
.contact_m {
  margin: 30px 0 20px 0;
  line-height: 1.5em;
  font-size: 1.2em;
  letter-spacing: 0.1em;
  color: #8C7252;
  font-weight: normal;
}
.text_08 {
  font-size: 0.8em;
  font-weight: normal;
}
.text_10 {
  font-size: 1em;
  font-weight: normal;
}
/*---------------- 	お問い合わせフォーム　文言　終了----------------*/
/*---------------- 	お問い合わせフォーム　入力部分　開始----------------*/
.title_menu_contact {
  margin: auto;
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: #FFF;
  border-radius: 30px;
  padding: 30px 50px;
}
.title_menu_contact p {
  font-size: 1.2em;
  letter-spacing: 0.1em;
  color: #8C7252;
  font-weight: normal;
  margin-bottom: 40px;
  line-height: 1.5em;
  position: relative;
  margin: 50px auto;
  width: 100%;
  min-height: 100%;
  z-index: 100;
  padding: 30px;
  background: #FFF;
  border-radius: 20px;
  border: 2px dotted #8C7252;
}
.title_menu_contact h1 {
  font-size: 1.5em;
  letter-spacing: 0.1em;
  color: #8C7252;
  font-weight: bold;
}
/** サブタイトル**/
.title_menu_contact h1:after {
  font-size: 1.1rem;
  color: #ED949C;
  content: 'お気軽にお問い合わせください。お問い合わせは無料です。';
  text-align: center;
  display: block;
  width: 100%;
}
.iconic {
  line-height: 1.3em;
  font-size: 1.2em;
  letter-spacing: 0.1em;
  color: #ED949C;
  font-weight: bold;
}
/** 送信ボタン **/
input[type=submit] {
  margin: 0 auto;
  cursor: pointer;
  color: #8C7252;
  font-size: 1rem;
  font-weight: bold;
  padding: 20px 10px;
  border: 1px solid #8C7252;
  background: #FFF051;
  border-radius: 10px;
  transition: all 0.2s linear;
}
input[type=submit]:hover {
  color: #8C7252;
  border-color: #8C7252;
  background: #FFF;
}
input[type=submit]:active, input[type=submit]:focus {
  position: relative;
  top: 1px;
  color: #8C7252;
  background: linear-gradient(top, rgba(234, 234, 234, 1) 0%, rgba(242, 242, 242, 1) 100%);
  box-shadow: 0px -1px 1px #FFF inset, 0 0 0px 5px #E0E0E0;
}
/** we remove the red glow around required fields since we are already using the red star */
input:required, textarea:required {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
/** テキストエリア**/
input:not([type="submit"]), textarea {
  outline: none;
  display: block;
  width: 90%;
  padding: 20px 30px;
  border: 1px dashed #DBDBDB;
  color: #8C7252;
  font-family: 'Droid Sans', Tahoma, Arial, Verdana sans-serif;
  font-size: 1em;
  border-radius: 2px;
  transition: background 0.2s linear, box-shadow 0.6s linear;
}
input:not([type="submit"]):active, textarea:active, input:not([type="submit"]):focus, textarea:focus {
  background: #F7F7F7;
  border: dashed 1px #969696;
  box-shadow: 2px 2px 7px #E8E8E8 inset;
}
input:not([type="submit"]) {
  height: 20px;
}
textarea {
  min-height: 150px;
  resize: vertical;
}
/* placeholder */ ::-webkit-input-placeholder {
  color: #BABABA;
  font-style: italic;
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #BABABA;
  font-style: italic;
}
/*ラベルをマウスオンした時に、色が変わるようなトランジッション*/
label {
  color: #7F7E7E;
  -webkit-transition: color 1s ease;
  -moz-transition: color 1s ease;
  transition: color 1s ease;
}
label:hover {
  color: #ED949C;
}
label:before {
  color: #C1BFBD;
  transition: color 1s ease;
}
label:hover:before {
  color: #969696;
  transition: color 1s ease;
}
p {
  margin-bottom: 20px;
}
.indication {
  color: #8C7252;
  font-size: 12px;
  font-style: italic;
  text-align: left;
  padding-left: 10px;
}
.required {
  color: #ED949C;
}
.form01 {
  margin: 0 auto 50px;
  width: 80%;
}
.f_1em {
  color: #8C7252;
  font-size: 1em;
  padding: 10px;
}
/*　********************　お問い合わせ　終了********************　*/
/*---------------- 	お問い合わせフォーム　入力部分　終了----------------*/
/*●●●●●●●●●●●●●●●●●●●●	サンクスページCSS●●●●●●●●●●●●●●●●●●●●*/
/*---------------- 	サンクスページ　開始----------------*/
.title_menu_thanks {
  margin: auto;
  margin-top: 30px;
  margin-bottom: 60px;
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 100px;
}
.title_menu_thanks p {
  color: #8C7252;
  font-size: 1.2em;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
/*---------------- 	サンクスページ　終了----------------*/
/*●●●●●●●●●●●●●●●●●●●●	ページトップへCSS●●●●●●●●●●●●●●●●●●●●*/
/*---------------- 	ページトップへ　開始----------------*/
#page_top {
  width: 100px;
  height: 60px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #FFF051;
  opacity: 0.8;
  border-radius: 15px;
}
#page_top a {
  position: relative;
  display: block;
  width: 100px;
  height: 60px;
  text-decoration: none;
}
#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #8C7252;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -25px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after {
  content: 'PAGE TOP';
  font-size: 13px;
  color: #8C7252;
  position: absolute;
  top: 30px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
/*---------------- 	ページトップへ　終了----------------*/