@charset "utf-8";
/*----------------カラー表示

茶色　#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 {
font-family: 'Noto Sans JP', sans-serif;

}
/*●●●●●●●●●●●●●●●●●●●●トップページ　メイン　CSS●●●●●●●●●●●●●●●●●●●●*/
.container {}
.header_box {
  width: 100%;
}
/*●●●●●●●●●●●●●●●●●●●● メニュー ●●●●●●●●●●●●●●●●●●●●*/
.header {
  left: 0;
  top: 0;
  width: 100%; /* サイドメニューの幅 */
  margin: auto;
}
.header_box {
  width: 100%;
  margin: auto;
  background: #FFF051;
}
.logo {
  width: 100%;
  padding-top: 10px;
  text-align: right;
}
.logo img {
  width: 60%;
  padding-right: 20px;
}
/***********


********/
.sns {
  margin: auto;
  width: 100%;
  height: 100%;
  border-top: 1px dotted #fff;
  padding: 0 0 20px;
}
.follow {
  margin: auto;
  width: 100%;
}
.follow img {
  display: none; /*非表示*/
  margin: auto;
  width: 80%;
}
.sns_icon {
  margin: auto;
  margin-top: 10px;
  width: 100%;

}
.sns_icon ul {
  display: flex; /*定義するだけで、その直下の要素が並列になる*/margin: auto;
	  width: 70%;
}
.sns_icon li {
  margin: auto;
  /*計算式で値を設定*/
  width: calc(100%/4); /*←画像を横に4つ並べる場合*/
  padding: 0 10px; /*←画像の左右に5pxの余白を入れる場合*/
  box-sizing: border-box;
}
.sns_icon img {
  width: 70%;
}
.contact_b {
  
  width: 100%;
	margin: 10px auto 0;
	text-align: center;
}
.contact_b p {
  margin: auto;
	 text-align: center;
	height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  width: 70%;
}
.contact_b a {
	  margin: auto;

  width:70%;
  background-color: #ED949C;
  height: 40px;
  color: #fff;
  font-weight: bold;
  font-size: 1.1em;
  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ハック ================*/
/* ----------------ハンバーガーマーク----------------*/
/*-ハンバーガーボタン　ボタンクリック前*/
.nav_toggle {
  display: block;
  position: relative;
  width: 1.75rem;
  height: 1.5rem;
  top: -40px;
  left: 30px;
}
.nav_toggle i {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #8C7252;
  position: absolute;
  transition: transform .5s, opacity .5s;
}
.nav_toggle i:nth-child(1) {
  top: 0;
}
.nav_toggle i:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.nav_toggle i:nth-child(3) {
  bottom: 0;
}
/*-ハンバーガーボタン　ボタンクリック後*/
.nav_toggle.show i:nth-child(1) {
  transform: translateY(10px) rotate(-45deg);
}
.nav_toggle.show i:nth-child(2) {
  opacity: 0;
}
.nav_toggle.show i:nth-child(3) {
  transform: translateY(-12px) rotate(45deg);
}
/* ----------------ハンバーガーマーク　終了----------------*/
/*メニューリストのCSS【クリック前】*/
.nav {
  position: fixed;
  top: 3rem;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s, visibility .5s;
  z-index: 10000; /*レイヤー重なり*/
	width: 90%;
}
/*メニューリストのCSS【クリック後　.showが追加されている】*/
.nav.show {
  opacity: 1;
  visibility: visible;
  width: 100%;
}
.nav_menu_li {
  background: rgba(255, 246, 234, 0.8); /*透過*/
  border-bottom: dotted 1px #8C7252;
  padding: 20px;
  font-size: 1em;
  width: 90%;
}
/*●●●●●●●●●●●●●●●●●●●● メイン ●●●●●●●●●●●●●●●●●●●●*/
.main {
  background-color: #FFF6EA;
  width: 100%; /* メインコンテンツの幅 */
}
.slider {
  margin: auto;
 
  width: 95%;
}
/*----------------スライダー ----------------*/
/*スライダー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: 100%;
}
.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.2em;
  font-size: 1em;
  letter-spacing: 0.05em;
}
/*---------------- お知らせ 開始----------------*/
.info {
  margin: auto;
  margin-top: 40px;
}
.sub_title {
  line-height: 1.3em;
  font-size: 1.1em;
  font-weight: bold;
}
.icon01 {
  vertical-align: middle;
  margin-right: 20px;
}
.info_box {
  width: 100%;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 50px;
}
.info_inbox {
  background: #fff;
  border-radius: 20px;
  height: auto;
  margin: auto;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 20px;
}
.info_title {
  line-height: 1.2em;
  font-size: 1em;
  font-weight: bold;
  color: #ED949C;
  display: block;
  width: 80%;
  padding: 0 0 0 40px;
  /***左から5pxの上下中央に背景画像を配置*/
  background-position: left 5px center;
  background-repeat: no-repeat;
  background-size: 20px;
  /* 折り返しの対応*/
  overflow-wrap: break-word;
  background-image: url("../img/icon_bell.png");
}
.info_inbox01 {
  margin: auto;
}
.img_info {
  margin: auto;
	text-align: center;
  margin-top: 20px;
  width: 100%; /*画像サイズ指定*/
}
.info_inbox01 p {
  margin: auto;
  margin-top: 20px;
  padding: 0 20px;
  font-size: 1em;
  letter-spacing: 0.05em;
  line-height: 1.2em;
  width: 80%;
}
.info_gray {
  color: #BCBCBC;
  font-weight: bold;
  font-size: 0.8em;
  text-align: right;
}
/*---------------- お知らせ 終了----------------*/
/*●●●●●●●●●●●●●●●●●●●● フッターー ●●●●●●●●●●●●●●●●●●●●*/
.footer {
  background-color: #FFF051;
  padding: 20px 20px 10px;
}
.footer_logo {
  width:100%;
}
.footer_logo img{  width: 70%;
}
.footer_box {
  margin-top: 20px;
}
.footer_box p {
  font-size: 1em;
  letter-spacing: 0.05em;
  line-height: 1.2em;
}
.company {
  text-align: center;
  margin: auto;
  margin-top: 25px;
  font-size: 0.8em;
  line-height: 1.2em;
}
.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: 1.5em;
  bottom: 10px;
  margin-left: 20px;
  text-shadow: 1px 2px 5px #8C7252;
}
/*---------------- 	ヘッダー画像　　終了----------------*/
/*---------------- 	タイトル文字　　開始----------------*/
.title_h3 {
  display: flex;
  margin-top: 50px;
  /* 上下左右中を央寄せ */
  justify-content: center;
  align-items: center;
}

.title_h3 img{
	
	width: 50px;

}

.title_h3 h3 {
  font-size: 1.5em;
  margin-left: 20px;
}
.title_h3 p {

  font-size: 1.5em;
  margin-left: 20px;
  font-weight: bold;
	  /* 上下左右中を央寄せ */
  justify-content: center;
  align-items: center;
}
/*---------------- 	タイトル文字　終了----------------*/
/*---------------- 	タイトルメニュー　　開始----------------*/
.title_menu {
  margin: auto;
  margin-top: 30px;
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
}
.title_menu ul {
  margin: auto;
  text-align: center;
}
.title_menu li {
  margin: auto;
  font-size: 1.2em;
  font-weight: bold;
  background-color: #FFF051;
  margin-bottom: 15px;
  border-radius: 30px;
  text-align: center;
  padding: 10px 20px;
  width: 80%;
}

.title_menu li a{
	color: #8C7252;
	
}
/*---------------- 	タイトルメニュー　　終了----------------*/
/*---------------- 	サービスページ　コンテンツ詳細　開始----------------*/
.cont_detail {
  margin-top: 30px;
}
.cont_detail_01 {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 30px;
}
.cont_detail_01 p {
  margin-left: 50px;
  font-weight: bold;
  font-size: 1.2em;
  line-height:1.5em; /*アイコン文字高さセンター揃え*/
  letter-spacing: 0.1em;
  color: #ED949C;
  height: 100%;
}

.cont_detail_01 img{width: 31px;}/*アイコン文字高さ*/

.cont_detail_02 {
  margin-top: 30px;
}
.cont_detail_02 img {
  width: 100%;
  margin: auto;
}
.cont_detail_p {
  line-height: 1.2em;
  margin: 20px;
  font-size: 1em;
  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;
	 line-height: 1.2em;
  color: #8C7252;
  margin: 10px 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_price {
  margin: 30px 0px;
  width: 100%;
  text-align: center;
	
}

.table_price th,td{
   
}
.table_title {
  background: #FFF051;
  height: 100%;
}
.table_title td {
  padding: 10px;
  font-size: 1.1em;
  color: #8C7252;

  font-weight: bold;
  vertical-align: middle;
		text-align: center;
}
.table_detail {
  text-align: center;
}
.table_detail01 {
  width: 35%;
  padding: 10px 5px;
  font-size: 1em;
	line-height: 1.2em;
  color: #8C7252;
  font-weight: bold;
  vertical-align: middle;
  border: 1px #FFF051 dotted;
}
.table_detail02 {
  width: 40%;
  padding: 10px 5px;
  font-size: 0.9em;
	line-height: 1.1em;
  color: #8C7252;
  vertical-align: middle;
  border: 1px #FFF051 dotted;
  line-height: 1.5em;
}
.table_detail03 {
  width: 25%;
  padding: 10px 5px;
  font-size: 1.2em;
	line-height: 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: 1em;
  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: 20px 0;
  width: 100%;
}
.flow_title {
  background-color: #FFF051;
  border-radius: 30px;
  text-align: center;
  padding: 10px;
  margin: auto;
  color: #8C7252;
  font-weight: bold;
  font-size: 1.2em;
}
.flow_p {
  color: #8C7252;
  font-size: 1em;
  line-height: 1.3em;
  margin: auto;
  width: 100%;
  margin-top: 20px;
}
/*矢印　した向き*/
.triangle {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #BCBCBC;
  margin: auto;
  margin-top: 20px;
}
.cont_detail_a {
  line-height: 1.3em;
  margin: auto;
  font-size: 1em;
  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%;
	margin: auto;
	width: 100%;
}
.cont_detail_b {
  line-height: 1.5em;
  margin: auto;
  font-size: 1em;
  letter-spacing: 0.1em;
  border: 2px solid #ED949C;
  width: 100%;
  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: 30px;
  margin-bottom: 30px;
}
.cont_detail_03 ul {}
.circle {
display:none;
}
.cont_detail_03 li {
  display: flex;
  align-items: center;
  line-height: 1.3em;
  font-size: 1.1em;
  letter-spacing: 0.1em;
  font-weight: bold;
  height: 100%;
  margin-bottom:20px;
	text-decoration:underline;
text-decoration-color:#FFF051;
	
	
}
.cont_detail_04 {
  margin: auto;
  line-height: 1.2em;
  font-size: 1em;
width: 90%;
  height: 100%;
  color: #8C7252;
  font-weight: normal;
}
/*制作者のプロフィール*/
.profile {
  margin: auto;
  text-align: center;
}
.profile img {
  margin: auto;
  width: 60%;
  margin-bottom: 20px;
}
.table_profile {
  width: 100%;
}
.table_profile tr {}
.table_profile td {
  padding: 25px 10px;
  font-size: 1em;
  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.3em;
  font-size: 1em;
  
  width: 90%;
  height: 100%;
  color: #8C7252;
  font-weight: normal;
  margin: 15px 10px 15px 45px;
}
/*---------------- 	制作者の経歴　終了----------------*/
/*●●●●●●●●●●●●●●●●●●●●	お問い合わせフォームへ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: 20px;
  margin-bottom: 20px;
  background-color: #FFF;
  border-radius: 30px;
  padding: 15px 10px;
	width: 90%;
}
.title_menu_contact p {
  font-size: 1em;
  margin: auto;
  letter-spacing: 0.1em;
  color: #8C7252;
  font-weight: normal;
  margin-bottom: 40px;
  line-height: 1.3em;
  position: relative;
  margin: 20px auto;
  width: 80%;
  min-height: 100%;
  z-index: 100;
  padding: 30px;
  background: #FFF;
  border-radius: 20px;
  border: 2px dotted #8C7252;
}
.title_menu_contact h1 {
  font-size: 1.2em;
  letter-spacing: 0.1em;
  color: #8C7252;
  font-weight: bold;
}
/** サブタイトル**/
.title_menu_contact h1:after {
  font-size: 1rem;
  color: #ED949C;
  content: 'お気軽にお問い合わせください。お問い合わせは無料です。';
  text-align: center;
  display: block;
  width: 100%;
}
.iconic {
  line-height: 1.2em;
  font-size: 1em;
  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: 80%;
  padding: 20px;
  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: 300px;
  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: auto;
  width: 100%;
}
.f_1em {
  color: #8C7252;
  font-size: 1em;
  padding: 10px;
}
/*　********************　お問い合わせ　終了********************　*/
/*---------------- 	お問い合わせフォーム　入力部分　終了----------------*/
/*●●●●●●●●●●●●●●●●●●●●	サンクスページCSS●●●●●●●●●●●●●●●●●●●●*/
/*---------------- 	サンクスページ　開始----------------*/
.title_menu_thanks {
  margin: auto;
  margin-top: 20px;
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 20px;
  padding: 10px 30px;
}
.title_menu_thanks p {
  color: #8C7252;
  font-size: 1em;
  line-height: 1.3em;
  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;
  z-index: 1000; /*レイヤー重なり*/
}
#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;
}
/*---------------- 	ペ