@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/**PCとスマホの表示切り替え**/
@media screen and (min-width: 1024px) {
  /* Tablet, PC */
  .sp {
    display: none !important;
  }
  html {
    font-size: 100%;
  }
}
@media screen and (max-width: 1023px) {
  /* スマホ */
  .pc {
    display: none !important;
  }
  html {
    font-size: 62.5%;
  }
}
/**** 固定ページの不要な部分(ページタイトル・EDITリンク)を非表示 ****/
.entry-header,
.entry-footer {
	display: none;
}
/****全体****/
.header {
	display: none;
}
.content {
	width: 100%;
}
.footer {
	display: none;
}
.main {
	padding: 0;
}
.admin-pv  {
	display: none;
}
.wp-block-latest-posts.wp-block-latest-posts__list li {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
	gap: 1em;
}
body {
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans JP', sans-serif;
	background-color: transparent;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}
h1 {
  font-size: 2rem;
  letter-spacing: 2px;
}
h2 {
  font-size: 1.7rem;
}
a {
	text-decoration: none;
}
.center {
	text-align: center;
}
.gray-back {
	background-color: #f8f8f8;
}
.none {
	display: none;
}
.article h2 {
	background-color: transparent;
	color: #333333;
	font-size: 1.7rem;
}
.article h3 {
    background-color: #ffffff00;
    border-color: none;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: none;
}
.article h2, .article h3, .article h4, .article h5, .article h6 {
	margin: 0 auto;
	padding: 0;
}
.article p {
	margin: 0;
}
.article ul {
	margin: 0 auto;
}
.other-top-margin {
	margin-top: 200px;
}
@media screen and (max-width: 480px) {
    .article h2 {
        box-shadow: none;
    }
}
@media screen and (max-width: 834px) {
    main.main {
        padding: 0;
    }
}
@media screen and (max-width: 1023px) {
	.other-top-margin {
    margin-top: 70px;
	}
}
/**** ヘッダー ****/
.top-drawer-box {
	position: relative;
}
#main-visual img {
	width: 100%;
}
#top-name-wrap {
	position: absolute;
	z-index: 99;
	top: 3rem;
	display: grid;
	grid-template-columns: 40% 60%;
	width: 100%;
}
#other-top-name-wrap {
	display: grid;
	grid-template-columns: 40% 60%;
	width: 100%;
	margin: 3rem 0;
	align-items: center;
}
#menu-wrap {
	text-align: right;
	margin-right: 3rem;
}
#other-menu-wrap {
	text-align: right;
}
#top-name {
	margin-left: 3rem;
}
#top-name h1 {
	font-family: 'Noto Serif JP', serif;
	color: white;
	letter-spacing: 0.2rem;
}
#top-name h1 a {
	color: #ffffff;
}
#other-top-name h1 {
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 0.2rem;
	padding-left: 2rem;
}
#other-top-name h1 a {
	color: #000000;
}
#header-nav {
	margin-top: 15px;
	box-sizing: border-box;
	list-style: none;
}
.header-nav-box {
	display: inline-block;
	vertical-align: top;
	margin-left: 1.5rem;
}
.other-header-nav-box {
	display: inline-block;
	margin-left: 1.5rem;
}
.header-nav-box a {
	color: white;
	letter-spacing: 0.1rem;
	text-decoration: none;
	padding-bottom: 3px; /* 文字と下線に隙間を作る */
	display: block;
}
.other-header-nav-box a {
	color: #37373c;
	letter-spacing: 0.1rem;
	text-decoration: none;
	padding-bottom: 3px; /* 文字と下線に隙間を作る */
	display: block;
}
.header-nav-box a:after {
	content: '';
	width: 0;
	transition: all 0.3s ease;
	border-bottom: 2px solid white;
	display: block;
}
#other-header-nav {
	padding-right: 3rem;
}
.other-header-nav-box a:after {
	content: '';
	width: 0;
	transition: all 0.3s ease;
	border-bottom: 2px solid #37373c;
	display: block;
}
.header-nav-box a:hover:after {
	width: 100%;
	border-bottom: 2px solid white;
}
.other-header-nav-box a:hover:after {
	width: 100%;
	border-bottom: 2px solid #37373c;
}
#top-contact {
	position: absolute;
	bottom: 4rem;
	left: 4rem;
	z-index: 99;
}
#top-contact h2 {
	color: white;
	letter-spacing: 0.3rem;
}
#top-contact p {
	color: white;
	letter-spacing: 0.2rem;
	font-size: 1.2rem;
}
#contact-btn {
	margin-top: 3rem;
}
#contact-btn a {
	background-color: white;
	color: #37373c;
	border-radius: 46px;
	padding: 1rem 2rem;
	font-weight: 600;
	letter-spacing: 0.1rem;
}
@media screen and (max-width: 1023px) {
	#other-top-name-wrap {
		grid-template-columns: 64% 30%;
		width: 100%;
	}
	#top-name-wrap {
    grid-template-columns: 70% 30%;
	}
	#top-contact {
    bottom: 5rem;
    left: 3rem;
	}
}
/*SP-メニュー-*/
#nav-drawer {
  order: 1;
}
input#nav-input {
  display: none;
}
#hamburger {
width:3rem;
  height: auto;
}
/****閉じる用の薄黒カバー****/
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: .3s ease-in-out;
  background: rgba(0, 0, 0, 1)
}
#nav-input:checked ~ #nav-close {
  display: block; /*カバーを表示*/
  opacity: 0.5;
}
/****中身****/
#sp-nav-top {
	background-color: white;
}
#sp-header-nav-wrap {
	background-color: white;
	padding: 55px 0 40px 0;
}
#sp-header-nav a {
	font-size: 1.8rem;
	text-align: left;
	padding-left: 10%;
}
.sp-header-nav-class {
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
}
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: 90%;
  min-width: 365px;
  height: 100%;
  transition: .3s ease-in-out;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
}
#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%); /*中身を表示（右へスライド）*/
}
#sp-header-nav {
  display: grid;
  grid-template-rows: repeat(4, auto);
}
.sp-header-nav-class:link, .sp-header-nav-class:visited, .sp-header-nav-class:hover, .sp-header-nav-class:active {
  color: #37373c;
	font-weight: 600;
  text-decoration: none;
  text-align: center;
}
#sp-menu-icon-wrap {
	text-align: left;
	margin-left: 2.5rem;
}
#sp-menu-icon img {
	margin: 10px;
}
#sp-menu-name {
	font-family: 'Noto Serif JP', serif;
	text-align: left;
	margin-left: 3rem;
	margin-top: 3rem;
	font-weight: 600;
}
#sp-menu-name a {
	color: #37373c;
}
/****チェックボックス等は非表示に****/
.nav-unshown {
  display: none;
}
.batsu {
  display: block;
  width: 25px; /*枠の大きさ*/
  height: 25px; /*枠の大きさ*/
  position: absolute;
  right: 15px;
  top: 20px;
}
.batsu::before, .batsu::after {
  content: "";
  display: block;
  width: 100%; /*バツ線の長さ*/
  height: 2px; /*バツ線の太さ*/
  background: #37373c;
  transform: rotate(45deg);
  transform-origin: 0% 50%;
  position: absolute;
  top: calc(14% - 5px);
  left: 14%;
}
.batsu::after {
  transform: rotate(-45deg);
  transform-origin: 100% 50%;
  left: auto;
  right: 14%;
}

/****footer****/
#footer-wrap {
	padding: 2rem;
}
#footer-ttl h1 {
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
}
#footer-ttl h1 a {
	color: #37373C;
}
.footer-nav-box {
	margin: 1rem 0;
}
.footer-nav-box a {
	font-size: 1.2rem;
	color: #37373c;
	font-weight: 600;
}
#follw-us {
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0.1rem;
}
.icon-box {
	margin: 0.7rem 0;
}
.icon-box img{
	vertical-align: middle;
	margin-right: 0.6rem;
}
.icon-box a {
	font-size: 1.1rem;
	font-weight: 600;
	color: #37373c;
	vertical-align: middle;
	letter-spacing: 0.1rem;
}
#copyright {
	margin-left: 2rem;
	letter-spacing: 0.1rem;
	color: #8a8a95;
}
.footer-image {
	width: 100%;
}
#sponser {
	margin-top: 2rem;
}
#sponser p {
	margin: 0;
	font-weight: bold;
}
.sponser-name {
	font-size: 0.8rem;
}
#sponser-ttl {
	font-size: 1rem;
}
#sponser-line {
	width: 10rem;
	margin: 0 0 0.5rem 0;
	border-style: none;
    border-top: 2px solid #37373c;
}
[class^="icon-"], [class*=" icon-"] {
	font-family: 'Noto Sans JP' !important;
}
@media screen and (min-width: 1024px) {
	#footer-wrap {
		display: grid;
		grid-template-columns: 55% 15% 30%;
	}
	#icon-grid {
		display: grid;
		grid-template-columns: repeat(2,50%);
	}
}
@media screen and (max-width: 1023px) {
	.footer-block {
		display: inline-block;
		width: 49%;
		vertical-align: top;
		margin-top: 3rem;
	}
	.icon-box {
		margin: 1rem 0;
	}
	.Follw-Us-txt {
		font-size: 10px;
	}
}
/****出版プロデュース：必ず売上をアップしてみせます****/
#top-uriage {
	margin: 7rem 0;
	background-image: url("https://laulea-tm.jp/wp-content/uploads/2021/11/グラフ.png");
	background-position: right;
	background-size:100% auto;
}
#top-uriage-box-wrap {
	margin-top: 2rem;
}
.top-uriage-box {
	margin: 4rem;
}
.top-uriage-box h2 {
	margin: 1rem 0;
}
.top-uriage-box p {
	font-weight: 600;
	letter-spacing: 0.1rem;
}

@media screen and (min-width: 1024px) {
	#top-uriage-box-wrap {
		display: grid;
		grid-template-columns: repeat(3, 33%);
		max-width: 1500px;
		margin: 0 auto;
	}
	.top-uriage-box {
	margin: 4rem 2rem;
	}
	.top-uriage-box img {
	width: 100%;
	}
}
@media screen and (max-width: 1023px) {
	.top-uriage-box img {
    max-width: 270px;
    display: block;
    margin: auto;
		padding: 0 2rem;
	}
}
/****出版プロデュース：新刊・書籍一覧****/
.top-new-book-wrap {
	margin: 5rem 2rem;
}
/* 商品に見立てた枠 */
.top-new-book-box {
    background: #fafafa;
    width: 100%;
    height: auto;
    position: relative;
}
.top-new-book-box img {
	width: 60%;
	height: auto;
	margin-top: 20%;
	margin-left: 20%;
	margin-bottom: 15%;
}
.top-new-book-box p {
	font-weight: 600;
	letter-spacing: 0.1rem;
}
.book-name {
	color: #969797;
}
.top-new-book-box-name {
	padding: 0 2rem 3rem;
}
/* ラベル部分 左上に表示 */
.new-triangle::before {
    content: "";
    top: 0;
    left: 0;
    border-bottom: 7em solid transparent;
    border-left: 7em solid #e9a3a3; /* ラベルの色はここで変更 */
    position: absolute;
    z-index: 100;
}
.new-triangle::after {
    content: "NEW";
    display: block;
    top: 1rem;
    transform: rotate(-45deg);
    color: #fff; /* 文字色はここで変更 */
	font-size:1.5rem;
	font-weight: 600;
	letter-spacing:0.1rem;
    left: 0.4rem;
    position: absolute;
    z-index: 101;
}
#top-all-book-btn a {
	color: #37373c;
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: 0.1rem;
	border-radius: 46px;
	padding: 1rem 6rem;
	border: 2px solid #eee;
}
@media screen and (min-width: 1024px) {
	.top-new-book-wrap {
		max-width: 1500px;
		margin: 5rem auto;
		display: grid;
		grid-gap: 1rem;
		grid-template-columns: repeat(3,1fr);
		padding: 0 2rem;
	}
}
@media screen and (max-width: 1023px) {
	.top-new-book-wrap {
		display: grid;
		grid-gap: 1rem;
		grid-template-columns: repeat(2,1fr);
	}
	.top-new-book-box-name {
    padding: 0 2rem 1rem;
	}
	.top-new-book-box img {
    margin-bottom: 2%;
	}
	.new-triangle::before {
    border-bottom: 4em solid transparent;
    border-left: 4em solid #e9a3a3;
	}
	.top-new-book-box-name p {
		font-size: 8px;
        line-height: 1.4;
	}
}
/****出版プロデュース:タイトルのみ*****/
#top-book-text {
	max-width: 1150px;
	margin: 5rem auto;
	padding: 4rem;
}
.top-book-text-wrap {
	border-top: 2px solid #eee;
	padding: 0.7rem 2rem;
	letter-spacing: 0.1rem;
}
.bottom-line {
	border-bottom: 2px solid #eee;
}
.arrow{
    position: relative;
    display: inline-block;
    vertical-align: middle;
	text-decoration: none;
}
.arrow::before {
    position: absolute;
    top: 0;
    bottom: 0;
	right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.arrow::after {
    position: absolute;
    top: 0;
    bottom: 0;
	right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.book-ttl::before{
    width: 1.2rem;
    height: 2px;
    background: #37373c;
}
.book-ttl::after{
    width: 0.8rem;
    height: 0.8rem;
    border-top: 2px solid #37373c;
    border-right: 2px solid #37373c;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.book-ttl{
	width: 100%;
}
.book-ttl-wrap a {
	color: #37373c;
	font-weight: 600;
}
.book-ttl p {
	margin-right: 2rem;
}
@media screen and (min-width: 1024px) {
	.top-book-text-wrap {
	display: grid;
	grid-template-columns: 10% 90%;
}
}
/****お客様の声*****/
#customers-wrap {
	margin: 4rem 2rem;
}
.customers-box {
	margin: 10rem 0;
}
.customers-box-image {
	width: 100%;
}
.customers-box-image02 {
	width: 60%;
    margin-bottom: 20px;
}
.customers-voice_underline {
	border-bottom: 2px solid #298AB1;
      display: inline-block;
	font-size: 15px;
	font-weight:600;
}
.customers-voice_answer {
	padding: 10px 0 40px;
}
.customers-voice_answer02 {
	padding: 10px 0 0;
}
.customers-box-icon {
	width: 9rem;
	margin: 2rem 0 0;
}
.gold {
	color: #eead03;
	font-weight: 600;
	letter-spacing: 0.1rem;
	font-size: 1.2rem;
}
.customers-box h2 {
	letter-spacing: 0.1rem;
}
.author {
	font-weight: 600;
	font-size: 1.2rem;
}
.customers-voice {
	margin: 3rem 0;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.8rem;
	background-color: #f8f8f8;
	padding: 3rem 2.5rem;
    border-radius: 20px;
	text-align: left;
}
.kindle-btn {
	width: 80%;
	border: 1px solid #37373c;
	border-radius: 50px;
	padding: 1rem 0;
}
.kindle-btn a{
	color: #37373c;
	letter-spacing: 0.1rem;
}
.customers-voice-contact-btn {
	width: 80%;
	padding: 1rem 0;
	background-color: #ffa41c;
	border-radius: 50px;
}
.customers-voice-contact-btn a {
	color: white;
	letter-spacing: 0.1rem;
}
.btn-block {
	margin: 1rem auto;
}
@media screen and (min-width: 1024px) {
	#customers-wrap {
		max-width: 735px;
		margin: 4rem auto;
	}
	.btn-block {
		display: inline-block;
	}
	.kindle-btn {
	width: 17rem;
		margin: 0 0.5rem;
}
.customers-voice-contact-btn {
	width: 17rem;
	margin: 0 0.5rem;
	}
.customers-voice_underline {
	font-size: 21px;
	}
}
/****本の内容紹介*****/
.introduction-book-image {
	border: 1px solid #8a8a95;
}
.introduction-book-image img{
	width:60%;
	height: 100%;
	margin-left: 20.5%;
}
#introduction-wrap {
	padding: 5rem;
}
.introduction-book-name {
	color: #969797;
}
.kindle-orange-btn {
	background-color: #ffa41c;
	color: white;
	border-radius: 35px;
	margin: 2rem 5rem;
	padding: 1.5rem 0;
	text-align: center;
	font-size: 1.2rem;
	letter-spacing: 0.1rem;
}
#introduction-book-text {
	line-height: 2rem;
}
#introduction-book-text p {
	margin-bottom: 20px;
}
#introduction-book-text-wrap02 h2 {
	letter-spacing: 0.2rem;
	margin-bottom: 30px;
}
#introduction-book-text-wrap01 {
	padding: 0 5rem 5rem 5rem;
}
.introduction-book-ttl {
	margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
	#introduction-wrap {
		max-width: 1400px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: 55% 45%;
	}
	.introduction-book-ttl {
		padding: 0 5rem 0 3rem;
		letter-spacing: 0.1rem;
		line-height: 3rem;
	}
	.kindle-orange-btn {
	margin: 1rem;
		padding: 0.5rem 0;
}
	#introduction-book-text-wrap01 {
		max-width: 1400px;
		margin: 0 auto;
	}
	#introduction-book-text-wrap02 {
		width: 60%;
	}
}
/****お問い合わせページ*****/
.Form {
	margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
.Form h1 {
	margin: 2rem 0;
}
.form-box {
	display: inline-block;
}
.Form-Item-Label {
	width: 15rem;
}
.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 3rem;
  display: inline-block;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 1.1rem;
}
.Form-Item {
  border-top: 1px solid #ddd;
  padding: 2rem 1rem;
  width: 100%;
	display: flex;
	align-items: center;
}
.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 15rem;
  display: block;
  letter-spacing: 0.05em;
  background: #5bc8ac;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
}
.Form-Item-Input {
	height: 1.5rem;
}
.Form-Item-Input {
	width: 55%;
}
.ns-box {
	width: 60%;
	text-align: center;
margin: 100px auto;
}
.ns-box p {
	font-size: 1.5rem;
}
.ns-sentence {
text-align: center;
margin: 100px 0;
}
.container input[type="submit"] {
    border-image: none;
}
/****** 会社概要 ******/
.company {
	margin-top: 200px;
}
.company-table {
	max-width: 895px;
	margin: auto;
	padding: 5rem 2rem;
}
.company-table__ttl {
	color: #108ABB;
	font-weight: bold;
	width: 18%;
    font-size: 1.2rem;
}
.company-table__about {
	 font-size: 1.2rem;
}
.company-table__rows {
	height: 5rem;
	vertical-align: top;
}
.company-table{
    border-spacing: 0px 20px;
}
.MVV-wrap {
	max-width: 1268px;
	margin: 100px auto;
	padding: 0 50px;
}
.MVV-box {
	display: flex;
	align-items: center;
	margin-bottom: 50px;
}
.MVV-box img {
	width: 153px;
	height: auto;
}
.MVV-box__txtbox {
	background-color: #DDEBF2;
	padding: 20px 50px 20px 100px;
	width: 100%;
	border-radius: 19px;
	margin-left: -90px;
	z-index: -1;
}
.MVV-box__txtbox > ul >li {
	font-size: 20px;
	font-weight: 500;
}
table tr:nth-of-type(2n+1) {
    background-color: #ffffff;
}
table:not(.has-border-color) :where(th, td) {
    border: none;
}
table tr:nth-child(even) {
    background: none;
}
.main figure.wp-block-table {
    max-width: 800px;
}
.wp-block-table .has-fixed-layout {
	table-layout: auto;
}
.company-table_blue {
	color: #1B66F5;
	white-space: nowrap;
	font-weight: 600;
}
.osusume-slider {
	margin-bottom: 300px;
}
@media screen and (max-width: 1023px) {
	.company {
    margin-top: 100px;
	}
	.company-table__rows {
    height: 3rem;
	}
	.company-table {
    padding: 0rem 2rem;
	}
	.MVV-wrap {
    margin: 50px auto;
    padding: 0 20px 0 10px;
	}
	.MVV-box img {
    width: 75px;
	}
	.MVV-box__txtbox {
    padding: 10px 15px 10px 35px;
    margin-left: -42px;
    z-index: -1;
	}
	.MVV-box__txtbox > ul >li {
		font-size: 11px;
	}
	.MVV-box {
    margin-bottom: 30px;
	}
	.osusume-slider {
	margin-bottom: 100px;
	}
}
/****** 料金プラン ******/
.rate-plan-wrap {
	max-width: 1267px;
	margin: 200px auto;
	padding: 0 100px;
}
.rate-plan-ttl {
	text-align: center;
}
.rate-plan-ttl  h2 {
	border-bottom: 3px solid #298AB1;
      display: inline-block;
	font-size:45px;
}
.rate-plan-txt-wrap {
	margin: 80px auto 0;
	max-width: 575px;
	font-weight: 600;
}
.plan-content-wrap {
	margin: 150px auto;
	padding: 80px 100px 40px;
	background: #DDEBF2;
	border-radius: 80px;
}
.plan-content-wrap02 {
	margin: 150px auto 0;
	padding: 80px 100px 1px;
	background: #DDEBF2;
	border-radius: 80px 80px 0 0;
}
.plan-content-ttl-wrap h3 {
	font-size: 27px;
}
.plan-content-ttl-wrap {
	display: flex;
	justify-content: space-between;
	padding: 0 10px;
}
.mojisuu {
	font-size: 16px;
	font-weight: 400;
	margin-left: 30px;
}
.plan-content-ttl-wrap p {
	font-size: 27px;
	margin: 0;
}
.price-space {
	font-size: 16px;
	margin: 0 10px 0 30px;
}
.plan-content-wrap_hr {
	 width: 100%;
    height: 10px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1) 13px, transparent 14px, transparent 20px);
    background-repeat: repeat-x;
    background-size: 22px 3px;
    background-position: left bottom;
    padding-top: 10px;
}
.plan-content-txt {
	padding: 0 10px;
}
.plan-content-txt_size {
	font-size: 14px;
}
.plan-content-list-wrap {
	margin: 50px auto 80px;
	display: flex;
	justify-content: space-between;
}
.plan-content-list-wrap p {
	font-size: 22px;
	font-weight: 500;
	margin: 0;
}
.plan-content-list-maru {
	color: #298AB1;
	font-size: 23px;
    margin-right: 10px;
}
.plan-content-list-space {
	margin-left: 38px;
}
.plan-content-lasttxt-wrap {
	text-align: right;
}
.plan-content-wrap03 {
	margin: 0 auto;
	padding: 50px 100px 1px;
	background: rgba(230, 230, 230, 0.17);
	border-radius: 0 0 80px 80px;
}
.plan-content-txt02 {
	font-size: 16px;
	font-weight: 600;
}
.newpage-btn-wrap{
	width: 100%;
	text-align: center;
	margin: 150px auto 200px;
}
.newpage-btn {
	padding: 30px 80px;
	border: 1px solid #000000;
	border-radius: 50px;
	font-weight: 500;
	font-size: 20px;
	letter-spacing: 0.1em;
	color: #000000;
	background-color: #ffffff;
}
.nagare-image-wrap {
	margin-top: 180px;
	margin-bottom: 200px;
	text-align: center;
}
@media screen and (max-width: 1023px) {
	.rate-plan-wrap {
    margin: 100px auto;
    padding: 0px 30px;
	}
	.rate-plan-ttl h2 {
    border-bottom: 2px solid #298AB1;
    font-size: 20px;
	}
	.rate-plan-txt-wrap {
    margin: 50px auto 0;
    max-width: 362px;
	}
	.plan-content-ttl-wrap {
    flex-direction: column;
    padding: 0 10px;
    align-items: center;
	}
	.plan-content-wrap {
    margin: 80px auto;
    padding: 40px 15px 40px;
    border-radius: 25px;
		max-width: 500px;
	}
	.plan-content-ttl-wrap h3 {
    font-size: 18px;
	}
	.plan-content-ttl-wrap p {
    font-size: 18px;
    margin: 20px 0 0;
	}
	.mojisuu {
    font-size: 14px;
    margin-left: 5px;
    margin-right: 5px;
	}
	.plan-content-txt {
    font-size: 14px;
	}
	.plan-content-txt_size {
    font-size: 10px;
	}
	.plan-content-wrap_center {
		max-width: 300px;
		margin: 0 auto;
	}
	.plan-content-list-wrap {
    margin: 50px auto;
    flex-direction: column;
		max-width: 300px;
	}
	.plan-content-list-wrap p {
    font-size: 15px;
	}
	.plan-content-list-maru {
    font-size: 15px;
    margin-right: 5px;
	}
	.plan-content-lasttxt-wrap {
    text-align: center;
	}
	.plan-content-list-space {
    margin-left: 20px;
	}
	    .plan-content-wrap02 {
        margin: 80px auto 0;
        padding: 40px 15px 1px;
        border-radius: 25px 25px 0 0;
        max-width: 500px;
        background: #DDEBF2;
    }
	.plan-content-wrap03 {
    padding: 20px 15px 1px;
    border-radius: 0 0 25px 25px;
		max-width: 500px;
	}
	.plan-content-txt02 {
    font-size: 11px;
	}
	.newpage-btn-wrap {
    margin: 50px auto;
	}
	.newpage-btn {
    padding: 12px 47px;
    font-size: 15px;
    letter-spacing: 0.05em;
	}
	.nagare-image-wrap {
		margin-top: 50px;
		margin-bottom: 80px;
	}
}
/****** 他社比較 ******/
.comparison {
	background-color: #F7F7F7;
	width: 100%;
}
.comparison-wrap {
	max-width: 1267px;
	margin: 0 auto;
	padding: 200px 150px;
}
.comparison-table {
	margin: 100px auto;
	background-color: #ffffff;
	border-radius: 25px 25px;
}
.comparison-table__ttl  {
	background-color: rgba(41 138 177 / 57%); 
	padding: 15px 30px;
	&:first-child {
		border-radius: 25px 25px 0 0;
	}
}
.comparison-table__ttl h3 {
	font-size: 27px;
}
.comparison-table__txt {
	display: grid;
   grid-template-columns: 55% 40%;
	grid-gap: 5%;
	font-size: 22px;
	font-weight: 500;
	max-width: 880px;
	margin: 50px auto;
	padding: 0 30px;
}
.comparison-table__txt01 {
	font-size: 20px;
}
.comparison-table__txt02 {
	font-size: 20px;
	font-weight: 400;
}
.comparison-table__bottom {
	padding-bottom: 50px;
}
.rate-plan-ttl h2 {
	border-radius: 0;
}
.hikaku-img {
	display: flex;
    gap: 50px;
    flex-direction: row;
    max-width: 1267px;
    margin: 100px auto;
    padding: 0 150px;
	}
.hikaku-img img {
	width: 100%;
    height: auto;
}
.denshi-txt-wrap {
	max-width: 1267px;
	margin: 200px auto;
	padding: 0 150px;
}
.speechBubble {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
  padding: 24px 16px;
  border-radius: 9999px;
  background-color: #298ab1;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
}
.speechBubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 30px 15px 0 15px;
  border-color: #298ab1 transparent transparent;
  translate: -50% 100%;
}
.denshi-txt {
	text-align: center;
	margin-top: 100px;
	line-height: 2;
}
.denshi-txt p {
	font-size: 22px;
	font-weight: 600;
}
.denshi-txt-line {
	font-size: 32px;
	border-bottom: 10px solid #FED84F;
}
.denshi-txt-p-top {
	padding-top: 100px;
}
.denshi-txt-red {
	text-align: center;
	margin-top: 100px;
}
.denshi-txt-red p {
	font-size: 22px;
	font-weight: 600;
	color: #FF3B00;
}
@media screen and (max-width: 1023px) {
	.comparison-wrap {
	margin: 0 auto;
    padding: 70px 25px;
	}
	.comparison-table__ttl h3 {
    font-size: 16px;
	}
	.comparison-table__ttl {
    padding: 10px 20px;
		&:first-child {
		border-radius: 20px 20px 0 0;
		}
	}
	.comparison-table {
		margin: 70px auto 0;
		border-radius: 20px 20px;
	}
	.comparison-table__txt {
    font-size: 12px;
    margin: 15px auto;
		padding: 0 15px;
	}
	.comparison-table__txt01 {
    font-size: 10px;
	}
	.comparison-table__txt02 {
		font-size: 10px;
	}
	.comparison-table__bottom {
	padding-bottom: 20px;
	}
	.hikaku-img {
	display: flex;
    gap: 30px;
    flex-direction: column;
    max-width: 400px;
    margin: 50px auto 100px;
    padding: 0 50px;
	}
	.speechBubble {
		padding: 16px 16px;
		font-size: 15px;
	}
	.speechBubble::after {
		border-width: 15px 10px 0 10px;
	}
	.denshi-txt-wrap {
		max-width: 600px;
		margin: 50px auto;
        padding: 0 20px;
	}
	.denshi-txt {
    margin-top: 20px;
    line-height: 1.8;
	}
	.denshi-txt p {
    font-size: 14px;
	}
	.denshi-txt-line {
    font-size: 19px;
    border-bottom: 5px solid #FED84F;
	}
	.denshi-txt-p-top {
    padding-top: 50px;
	}
	.denshi-txt-red p {
		font-size: 15px;
	}
	.denshi-txt-red {
    margin-top: 70px;
	}
}
/****** 新HOME******/
.new-home-strongpoint-wrap {
	margin: 200px auto;
	padding: 0 50px;
	text-align: center;
}
.new-home-strongpoint-wrap h2 {
	font-weight: 800;
	font-size: 32px;
}
.new-home-strongpoint img {
	width: 100%;
	height: auto;
}
.new-home-strongpoint {
	display: flex;
    gap: 50px;
    flex-direction: row;
    max-width: 1280px;
    margin: 80px auto;
    padding: 0 50px;
}
.PC-new-home-strongpoint-wrap {
	max-width: 1100px;
	margin: 100px auto;
	padding: 0 120px;
}
.PC-new-home-strongpoint-wrap_box {
	display: grid;
	align-items: center;
	grid-template-columns: 24% 36% 32%;
    gap: 4%;
}
.PC-new-home-strongpoint-wrap_box img{
	width: 100%;
	height: auto;
}
.PC-new-home-strongpoint-wrap_box p {
	font-weight: 500;
}
.PC-new-home-strongpoint-wrap_box_hr {
	 width: 100%;
    height: 5px;
	background-color: #E6E6E6;
	margin: 80px 0 100px;
}
.new-home-voice-wrap {
	margin: 200px auto;
}
.new-home-voice-wrap h2 {
	text-align: center;
}
.new-home-voice-contents {
	background-color: #E6E6E6;
}
.new-home-voice-contents-wrap {
	display: flex;
	gap: 80px;
	max-width: 1280px;
	margin: 60px auto;
	padding: 80px;
}
.new-home-voice-contents-wrap img {
	width: 100%;
	height: auto;
}
.new-home-link {
	max-width: 1000px;
	margin: 200px auto;
	padding: 0 100px;
}
.new-home-link-wrap {
	display: flex;
	gap: 30%;
}
.new-home-link-image {
	text-align: center;
}
.new-home-link-image img {
	width: 100%;
	height: auto;
}
.new-home-link-image p {
	color: #000000;
	font-size: 22px;
	font-weight: 500;
}
.new-home-sns {
	background: #DDEBF2;
	margin: 200px auto;
	padding: 100px 80px;
}
.new-home-sns h2 {
	text-align: center;
}
.new-home-sns-link {
	background: #ffffff;
	width: 255px;
	height: 70px;
	border-radius: 23px;
}
.new-home-sns-link a {
	display: flex;
	justify-content: center;
	gap: 20px;
	align-items: center;
	padding-top: 15px;
}
.new-home-sns-link p {
	letter-spacing: 0.1em;
	color: #222222;
	font-weight: 500;
	margin-bottom: 0;
}
.new-home-sns-wrap {
	display: flex;
    gap: 70px;
    margin: 80px auto;
    max-width: 900px;
}
.blog-box {
	max-width: 900px;
	margin: 0 auto;
	border: 2px solid #E6E6E6;
	border-radius: 20px;
	padding: 30px 30px;
}
.wp-block-latest-posts__post-date {
	white-space: nowrap;
}
.newpage-btn-wrap a:hover{
	color: #000000;
}
@media screen and (max-width: 1023px) {
	.new-home-strongpoint-wrap h2 {
    font-size: 20px;
	}
	.new-home-strongpoint-wrap {
    margin: 100px auto;
	}
	.new-home-strongpoint {
    gap: 20px;
    flex-direction: column;
    max-width: 300px;
    margin: 80px auto;
		padding: 0 0px;
	}
	.Strengths {
		padding: 0 50px;
	}
	.new-home-strongpoint p {
		font-size: 12px;
		font-weight: 500;
		margin-bottom: 50px;
		text-align: justify;
	}
	.new-home-voice-wrap {
    margin: 100px auto;
	}
	.new-home-voice-contents-wrap {
		flex-direction: column;
	gap: 50px;
	margin: 60px auto;
	padding: 60px 0;
		max-width: 275px;
	}
	.new-home-link-wrap {
    flex-direction: column;
    gap: 80px;
	}
	.new-home-link-image p {
    font-size: 17px;
	}
	.new-home-link {
    max-width: 200px;
    margin: 150px auto;
    padding: 0 ;
	}
	.new-home-sns {
    margin: 150px auto;
    padding: 80px 20px;
	}
	.new-home-sns-wrap {
    flex-direction: column;
    gap: 40px;
    margin: 60px auto 0;
	}
	.new-home-sns-link {
    width: 300px;
    height: 65px;
    margin: auto;
	}
	.new-home-sns-link p {
    font-size: 14px;
	}
	.new-home-sns-link a {
		padding-top: 11px;
	}
	.wp-block-latest-posts__post-title {
		font-size: 10px;
	}
	.blog-box {
	padding: 15px 10px;
	}
}

/****** ueda-lp ******/
.ueda-lp_container01{
	margin: 0 5%;
}
.ueda-lp_container01 img{
	width: 100%;
}
.ueda-lp_container02 {
	text-align: center;
	margin-top: 100px;
}
.ueda-lp_container02 img {
	width: 50%;
}
.ueda-lp_container03 {
	background-color: #FDFBF5;
	display:flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	padding: 50px 10px;
}
.kettenn{
	width: 40%;
}
.wakayamasama-image {
		width: 40%;
	}
.ueda-lp_container04 {
	max-width: 1000px;
	background-color: transparent;
    background-image: linear-gradient(0deg, #73D7FF 0%, #00A1E1 82%);
	text-align: center;
	margin: 150px auto 0;
}
.ueda-lp_container04_ttl {
	color: white;
	font-size: 50px;
	font-weight: 900;
	padding: 10px 0;
}
.ueda-lp_container05 {
	background-color: #F8FDFF;
	max-width: 1000px;
	margin: 0 auto -1.8em;
}
/* 共通のコンテナレイアウト（65:35で横並び） */
.ueda-lp_container05 {
    display: flex;
    align-items: center;
    justify-content: space-between;
	gap: 40px;
	padding: 50px;
}
.ueda-lp_container05_text-box p {
	font-size: 16px;
	color: #818282;
}
/* 左側のテキスト（70%） */
.ueda-lp_container05_text-box {
    width: 65%;
    text-align: left;
}
/* 見出しのスタイル */
.ueda-lp_container05_text-box h3 {
    font-size: 32px;
    margin-bottom: 10px;
	color: #00A1E0;
}
.highlight {
    font-size: 42px;
    font-weight: bold;
	margin-right: 10px;
}
/* 黄色の下線 */
.ueda-lp_container05_underline {
    width: 100%;
    height: 5px;
    background-color: #FEEF01;
    margin-bottom: 12px;
}
/* 右側の画像（30%） */
.ueda-lp_container05_image-box {
    width: 35%;
    display: flex;
    justify-content: center;
}

.ueda-lp_container05_image-box img {
    max-width: 100%;
    height: auto;
}
/* Amazonリンクボタン */
.ueda-lp_container06-wrap {
	background-color: #FDFBF5;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0;
	padding: 50px 0;
}
.ueda-lp_container06_link-button {
            display: flex;
            align-items: center;
            background-color: #D10D09;
            color: white;
            padding: 10px 20px;
            border-radius: 55px 55px 55px 55px;
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
        }
.ueda-lp_container06_link-button img {
            width: 18px;
            height: 18px;
            margin-right: 10px;
	margin-top: 7px;
	filter: invert(1) grayscale(100%) brightness(1000%);
        }
/* container07 */
.ueda-lp_container07 {
	max-width: 1000px;
	margin: 100px auto;
}
.ueda-lp_container07 p {
	color: #838383;
	line-height: 2.5;
	margin-bottom: 20px;
}
.ueda-lp_underline {
	text-decoration: underline;
	font-size: 22px;
}
.ueda-lp_container08 {
	background-color: transparent;
    background-image: linear-gradient(0deg, #73D7FF 0%, #00A1E1 82%);
	text-align: center;
}
.ueda-lp_container08_ttl {
	color: white;
    font-size: 40px;
    font-weight: 900;
    padding: 20px 0;
}
.ueda-lp_container09 {
            border: 2px solid #ccc;
            padding: 40px 40px 10px;
            width: fit-content;
            background-color: #fdfbf5;
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
	border-radius: 7px;
    max-width: 800px;
    margin: 50px auto;
        }
.ueda-lp_container09_item {
            display: flex;
            align-items: baseline;
            margin-bottom: 30px;
	font-size: 23px;
        }
.ueda-lp_container09_check {
            display: inline-block;
            width: 20px;
            height: 20px;
            position: relative;
            margin-right: 25px;
        }
.ueda-lp_container09_check::before {
            content: '';
            position: absolute;
            top: -10px;
	        left: 4px;
            width: 11px;
            height: 22px;
            border: solid #FF81A5;
            border-width: 0 6px 6px 0;
            transform: rotate(45deg);
        }
.ueda-lp_container10 {
	text-align: center;
	margin: 200px auto 50px;
	max-width: 1000px;
}
.ueda-lp_container10_ttl {
	color: #FF81A5;
	font-size: 40px;
	font-weight: 900;
}
.ueda-lp_container11-wrap {
	margin: auto;
    max-width: 600px;
}
.ueda-lp_container11 {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }

.ueda-lp_container11_item {
      display: flex;
      align-items: center;
      gap: 3px;
    }

.ueda-lp_container11_item img {
      width: 40px;  /* 画像サイズを調整 */
      height: auto;
    }

.ueda-lp_container11_item p {
      font-size: 23px;
      margin: 0;
    }
.ueda-lp_container12 {
	margin: 200px 0 0;
}
.ueda-lp_container12 img {
	width: 100%;
}
.ueda-lp_container13 {
	max-width: 1000px;
	margin: 50px auto;
	color: #7B7B7B;
}
.ueda-lp_container13 p {
	margin-bottom: 20px;
}
.ueda-lp_container14 {
	max-width: 600px;
      margin: 20px auto;
      padding: 40px;
      border: 2px dotted #333;
      border-radius: 15px;
    }
.ueda-lp_container14_chapter {
      margin-bottom: 15px;
    }

.ueda-lp_container14_chapter p {
      font-size: 20px;
      margin-bottom: 10px;
      font-weight: 900;
    }
.profile-container {
      background-color: #0E78A2;
      color: #fff;
      text-align: center;
      padding: 50px 20px;
	margin-top: 100px;
    }

    .profile-content {
      width: 80%;
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .profile-title {
      font-size: 24px;
      font-weight: bold;
      position: relative;
      padding-bottom: 10px;
      margin-bottom: 20px;
    }

    .profile-title::after {
      content: "";
      display: block;
      width: 100%;
      height: 2px;
      background-color: #fff;
      position: absolute;
      bottom: 0;
      left: 0;
    }

    .profile-text {
      font-size: 16px;
      line-height: 1.6;
    }
.ueda-lp_container15-wrap {
	background-color: white;
}
@media screen and (max-width: 1023px) {
	.ueda-lp_container02 img {
	width: 80%;
	}
	.ueda-lp_container02 {
    margin-top: 45px;
	}
	.kettenn {
    width: 80%;
	}
	.wakayamasama-image {
		width: 60%;
	}
	.ueda-lp_container04_ttl {
	font-size: 20px;
	}
	.ueda-lp_container04 {
		margin: 70px auto 0;
		max-width: 475px;
	}
	.ueda-lp_container05 {
		flex-flow: column;
		padding: 50px 0;
		max-width: 475px;
	}
	.ueda-lp_container05_reverse {
		flex-flow: column-reverse;
	}
	.ueda-lp_container05_text-box {
		width: 90%;
	}
	.highlight {
    font-size: 29px;
    margin-right: 0px;
	}
	.ueda-lp_container05_text-box h3 {
    font-size: 20px;
    display: flex;
    flex-flow: column;
    text-align: center;
	}
	.ueda-lp_container05_image-box {
    width: 80%;
	}
	.ueda-lp_container06-wrap {
    padding: 30px 0;
	}
	.ueda-lp_container06_link-button {
		font-size: 12px;
	}
	.ueda-lp_container07 {
    max-width: 540px;
    margin: 70px auto;
    padding: 0 20px;
	}
	.ueda-lp_container07 p {
    line-height: 1.5;
		font-size: 12px;
	}
	.ueda-lp_underline {
    font-size: 18px;
	}
	.ueda-lp_container08_ttl {
    font-size: 20px;
    line-height: 1;
	}
	.ueda-lp_container09_item {
	font-size: 16px;
        }
	.ueda-lp_container10_ttl {
		font-size: 20px;
	}
	.ueda-lp_container10 {
    margin: 80px auto 0px;
    max-width: 440px;
	}
	.ueda-lp_container11-wrap {
    max-width: 440px;
	}
	.ueda-lp_container11_item p {
    font-size: 16px;
	}
	.ueda-lp_container12 {
    margin: 80px 0 0;
	}
	.ueda-lp_container13 {
    max-width: 600px;
    padding: 0 20px;
	}
	.ueda-lp_container13 p {
	font-size: 12px;
	}
	.ueda-lp_container14 {
    max-width: 342px;
    padding: 20px 20px 10px;
	}
	.ueda-lp_container14_chapter p {
		font-size: 12px;
	}
	.profile-text {
    font-size: 12px;
	}
}
