@charset "UTF-8";
/* CSS Document */
/*共通*/
/*フォント*/
body{
    line-height: 1.5rem;
    text-size-adjust: 100%;
 　　-webkit-text-size-adjust: 100%;/*Chrome,Safari*/
 　　-ms-text-size-adjust: 100%;/*EgdeMobile*/
 　　-moz-text-size-adjust: 100%;/*firefox*/
	font-family: "Zen Kaku Gothic New", sans-serif!important;
}
img{
	max-width: 100%;
    height: auto;
}
a {
	text-decoration: none!important;
	color: black;
}
ul {
    list-style: none;
    padding: 0;
}
.clear{
	clear: both;
}
/*/////////////動き///////////////////////////////////////*/
/*========= 下からフェードインで出てくる===============*/
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1650ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
/*========= 時間差をつけて順番に動作===============*/
/*全共通*/
.box{
  opacity: 0;
}
/*========= 下から上へ===============*/
.box-02.displayed{
  animation-delay: 0.3s;
}
.box-03.displayed{
  animation-delay: 0.6s;
}
.box-04.displayed{
  animation-delay: 0.9s;
}
.box-05.displayed{
  animation-delay: 1.2s;
}
.displayed{
  animation: fadeUp 1s forwards;
}
@keyframes fadeUp{
  0%{
	  opacity:0;
	  transform: translateY(0px);
	}
100%{
	opacity:1;
	transform: translateY(-30px);
	}
}
/*========= 左から右へ===============*/
.box-02_l-r.displayed_lr{
  animation-delay: 0.3s;
}
.box-03_l-r.displayed_lr{
  animation-delay: 0.6s;
}
.box-04_l-r.displayed_lr{
  animation-delay: 0.9s;
}
.box-05_l-r.displayed_lr{
  animation-delay: 1.2s;
}
.box-06_l-r.displayed_lr{
  animation-delay: 1.5s;
}
.displayed_lr{
  animation: fade_lr 1s forwards;
}
@keyframes fade_lr{
  0%{
	  opacity:0;
	  transform: translateX(-100%);
	}
100%{
	opacity:1;
	transform: translateX(0%);
	}
}
/*========= テキストの動き流れるように１文字ずつ出現（左から右） ===============*/
/*全共通*/
.slide-in {
  overflow: hidden;
    display: inline-block;
}
.slide-in_inner {
  display: inline-block;
}
.leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}
.slideAnimeLeftRight {
  animation-name:slideTextX100;
  animation-duration:1.8s;
  animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes slideTextX100 {
  from {
	transform: translateX(-100%); /*要素を左の枠外に移動*/
	opacity: 0;
  }
  to {
	transform: translateX(0);/*要素を元の位置に移動*/
	opacity: 1;
  }
}
.slideAnimeRightLeft {
	animation-name:slideTextX-100;
	animation-duration:1.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes slideTextX-100 {
  from {
  transform: translateX(100%);/*要素を右の枠外に移動*/
	opacity: 0;
  }
  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}
/*中央構えの際に追加*/
.center-slide-in-leftAnime {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/*========= 左から右のスライドアニメーション ===============*/
.leftAnime-slide {
	opacity: 0;
	transform: translateX(-100%); /* 初期状態では左に移動させる */
	transition: opacity 1.3s ease-in-out, transform 1.3s ease-in-out;
}
.slideAnimeLeftRight-slide {
	transform: translateX(0); /* 右に移動させる */
	opacity: 1;
}
/*========= ボタンの動き　もっちり動===============*/
.mocchiri {
    animation: mocchiri 3s infinite;
}
@keyframes mocchiri {
    0% {
        transform: scale(1, 0.8);
    }
    20% {
        transform: scale(0.8, 1.1);
    }
    95% {
        transform: scale(1, 1);
    }
    100% {
        transform: scale(1, 0.8);
    }
}
/*ボタンの動き　拡大縮小で動く*/
.cv_btn {
  margin: 0 auto;
}
.cv_btn .banner_btn {
	animation: anime1 0.9s ease 0s infinite alternate;
	transform-origin:center;
    color: #fff;
}
@keyframes anime1 {
  from {
    transform: scale(0.9,0.9);
  }
  to {
    transform: scale(1,1);
  }
}
/*/////////////Gナビ/////////////*/
/*gナビ全体*/
.header-pc {
    width: 100%;
    margin: 0 auto;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9999999;
}
@media (max-width: 1366px){
.header-pc {
    display: none;
}
}
/*gナビの帯*/
.header-inner {
    position: relative;
    left: 0;
    width: 100%;
    height: 94px;
	background-color:#fff;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
    border-bottom: 2px solid #FF4E34;
}
/*ロゴ*/
.header-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 30px;
    height: 100%;
    pointer-events: auto;
    margin-right: 100px;
}
@media (max-width: 1700px){
.header-logo {
    margin-right: 35px;
	padding-left: 15px;
}
}
@media (max-width: 1440px){
.header-logo {
    margin-right: 20px;
    width: 250px;
	padding-left: 20px;
}
}
/*左側ナビ*/
.header-nav {
    display: flex;
    opacity: 1;
}
@media (max-width: 1165px){
.header-nav {
    padding-right: 20px;
}
}
@media (max-width: 1025px){
.header-nav {
    padding-right: 15px;
}
}
.header-nav > ul,.header-nav-left > ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
/*ナビメニュー　文字*/
.header.header-item {
    margin-right: 30px;
    font-weight: 500;
}
@media (max-width: 1440px){
.header.header-item {
    margin-right: 15px;
}
}
/*ナビメニュー　文字リンク*/
.header-link {
    position: relative;
    color: #313233;
    display: block;
    padding-top: 34px;
	height: 94px;
    -webkit-transition: color 0.5s ease-out;
    transition: color 0.5s ease-out;
}
@media (max-width: 1500px){
.header-link {
    font-size: 14px;
}
}
a.header-link:hover {
    color: #ff4f34;
    transition: color 0.5s ease-out;
}
/*右側ナビ*/
nav.header-nav-left ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex; /* 横並びにするため */
}

nav.header-nav-left ul li {
    position: relative; /* ::beforeを使用するために必要 */
    display: flex;
    align-items: center;
}
nav.header-nav-left ul li a:hover{
    color: #ff4f34;
    transition: color 0.5s ease-out;
}
nav.header-nav-left ul li:nth-of-type(2)::before {
    content: '';
    position: absolute;
    left: -3px; /* 縦線を左端に配置 */
    top: 50%; /* 縦線を中央揃えにするため */
    transform: translateY(-50%); /* 縦線を中央揃えにするため */
    width: 2.5px;
    height: 52px;
    background-color: #E4E4E4;
}
.header-square-button a {
    display: flex;
    align-items: center;
    text-decoration: none; /* デフォルトのリンクスタイルを無効にする */
    color: inherit; /* 親要素の色を継承する */
    padding: 10px 20px;
    flex-direction: column;
    gap: 5px;
    font-size: 13px;
	font-weight: 500;
}
li.header-influencer {
    border-radius: 25px;
    border: 2px solid #000;
    background: #E9FF61;
    padding: 12px;
    padding: 12px 25px;
    font-size: 13px;
    color: #000;
    font-weight: 500;
    margin-top: 18px;
}
li.header-influencer:hover{
	animation: shine 1s;
}
@keyframes shine {
  0% { background: #e4f76f; }
  10% { background: #f8ffce; }
  100% { background: #e4f76f; }
}
li.header-square-botton {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 94px;
    justify-content: center;
	font-size: 13px;
	font-weight: 500;
    color: #000;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 5px 5px;
    gap: 5px;
}
.header-square-button a img{
    width: 40px;
    height: 40px;
}
li.header-square-botton::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
li.header-square-botton:hover {
  color: #fff;
}
li.header-square-botton:hover::after {
  transform: scale(1, 1);
}
li.header-square-botton:hover {
  color: #fff;
}
.header-login{
    margin-left: 38px;
}
@media (max-width: 1607px){
.header-login{
    margin-left: 15px;
}
}
/*//////////////////////////SPナビ//////////////////////////*/
.header-sp{
	display: none;
}
@media (max-width: 1366px){
.header-sp{
	display:block;
}
}
.header-spmenu_r {
    position: relative;
    float: right;
}
.header-logotext-sp {
    margin: 16px 0 0 15px;
	width: 300px;
}
@media (max-width: 767px){
.header-logotext-sp {
    margin: 20px 0 0 20px;
    width: 161px;
}
}
.header-sp {
	position: fixed;
	left: 0;
	width: 100%;
	height: 70px;
	background-color: #fff;
	z-index: 100;
    border-bottom: 2px solid #FF4E34;
    margin-top: -30px;
}
.header-sp-kaso{
    margin-top: 0px;
}
#menu-wrapper {
    overflow: hidden;
    max-width: 100%;
    cursor: pointer;
    margin-top: -46px;}
@media (max-width: 767px){
#menu-wrapper {
    margin-top: -37px;
}
}
@media (max-width: 1366px){
#menu-wrapper #hamburger-menu {
    position: relative;
    width: 25px;
    height: 20px;
    margin: 16px;
	float: right;
}
}
@media (max-width: 767px){
#menu-wrapper #hamburger-menu {
    margin-top: 15px;
}
}
#menu-wrapper #hamburger-menu span {
    opacity: 1;
    left: 0;
    display: block;
    width: 100%;
    height: 3px;
	border-radius: 15px;
    color: black;
    background-color:#FF2929;;
    position: absolute;
    transform: rotate(0deg);
    transition: .4s ease-in-out;
}
@media (max-width: 767px){
#menu-wrapper #hamburger-menu span {
	height: 3px;
}
}
#menu-wrapper #hamburger-menu span:nth-child(1) {
    top: -4px;
}
#menu-wrapper #hamburger-menu span:nth-child(2) {
    top: 7px;
}
#menu-wrapper #hamburger-menu span:nth-child(3) {
    top: 18px;
}
#menu-wrapper #hamburger-menu.open span:nth-child(1) {
    transform: translateY(6px) rotate(128deg);
}
@media (max-width: 767px){
#menu-wrapper #hamburger-menu.open span:nth-child(1) {
    transform: translateY(12px) rotate(129deg);
}
}
#menu-wrapper #hamburger-menu.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-60px);
}
#menu-wrapper #hamburger-menu.open span:nth-child(3) {
    transform: translateY(-15px) rotate(-128deg);
}
@media (max-width: 767px){
#menu-wrapper #hamburger-menu.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-131deg);
}
}
#menu-container .menu-list {
    padding-right: 0;
    position: absolute;
    width: 400px;
    max-width: 400px;
	background: #EFEFEF;
    z-index: 999;
    height: 100%;
    position: fixed;
    right: -100%;
    height: 100vh;
    overflow-y: auto;
    margin-top: 13px;
    padding: 31px 0px 15vw;
}
@media (max-width: 767px){
#menu-container .menu-list {
    width: 100%;
    max-width: 100%;
    margin-top: 21px;
    padding: 31px 0px 130px;
}
}
.sp-nav-contents {
    display: flex;
    justify-content: space-evenly;
}
li.sp-square-botton img{
	width: 40px;
	height: 40px;
}
li.sp-square-botton{
    font-size: 15px;
    font-weight: 500;
	color: #FF4E34;
    display: flex;
    width: 160px;
    height: 110px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    background: #FFF;
    border: 2px solid #FF4E34;
    border-radius: 10px;
    margin-bottom: 30px;
}
@media (max-width: 360px){
li.sp-square-botton{
    width: 140px;
    height: 95px;
}
}
@media (max-width: 320px){
li.sp-square-botton{
    width: 125px;
}
}
li.sp-square-botton:hover{
    background: #eae7e6;
    transition: color 0.5s ease-out;
}
.sp-nav-bottom-login li.sp-square-botton {
    margin: 28px 0px 28px 13px;
}
.sp-nav-bottom-login li.sp-square-botton:hover{
	border: solid 1px #3DB6BE;
	transition: 0.3s ease-in-out;
	background: #FFF;
}
.sp-nav-bottom-application li.sp-square-botton{
    margin: 28px 13px 28px 0px;
}
.sp-nav-bottom-application li.sp-square-botton:hover{
	border: solid 1px #FF2929;
	transition: 0.3s ease-in-out;
	background: #FFF;
}
.sp-nav-bottom-login a li,.sp-nav-bottom-application a li{
	background: #FFF!important;
}
.col-6.sp-nav-bottom-l {
    padding-right: 10px;
}
.col-6.sp-nav-bottom-r {
    padding-left: 10px;
}
span.sp-square-botton-omoushikomi {
    color: #FF2929;
    font-size: 15px;
    font-weight: 600;
}
li.sp--influencer {
    border-radius: 25px;
	border: 2px solid #000;
    background: #E9FF61;
    padding: 12px;
    padding: 12px 25px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    margin-top: 28px;
    text-align: center;
    width: 88%;
    margin: auto;
    margin-bottom: 45px;
}
li.sp--influencer:hover{
	animation: shine 1s;
}
#menu-container .menu-list li.accordion-toggle {
    font-size: 16px;
    padding: 10px 20px;
	text-transform: uppercase;
    border-top: 1px solid #dbdcd2;
}
#menu-container .menu-list li a{
	display: block;
	color: #000;
}
#menu-container .menu-list li a:hover{
	color: #ff4f34;
	transition: color 0.5s ease-out;
}
a.sp-nav-small {
    color: #6F6F6F!important;
    font-size: 12px;
    font-weight: 500;
}
a.sp-nav-small:hover{
	color: #ff4f34!important;
}
li.sp-nav-smallgrop_1{
    display: flex;
    justify-content: center;
    padding-top: 30px;
}
li.sp-nav-smallgrop_2{
    display: flex;
    justify-content: center;
    padding-top: 12px;
}
@media (max-width: 767px){
li.sp-nav-smallgrop_1,li.sp-nav-smallgrop_2{
    padding: 0px 0px 15px;
}
}
li.sp-nav-smallgrop_1 a:nth-child(1),li.sp-nav-smallgrop_2 a:nth-child(1){
	margin-right: 23px;
}
.accordion-toggle, .accordion-content {
    cursor: pointer;
    font-size: 16px;
    position: relative;
    letter-spacing: 1px;
}
.accordion-content {
    display: none;
}
.accordion-toggle a:before, .accordion-toggle a:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 30px;
    width: 15px;
    height: 2px;
    margin-top: -1px;
    background-color: #5a5858;
    transform-origin: 50% 50%;
    transition: all 0.3s ease-out;
}
.accordion-toggle a:before {
    transform: rotate(-90deg);
    opacity: 1;
    z-index: 2;
}
.accordion-toggle.active-tab {
  background: #ff7512;
  transition: all 0.3s ease;
}
.accordion-toggle a.active:before {
    transform: rotate(0deg);
    background: #fff !important;
}
.accordion-toggle a.active:after {
    transform: rotate(180deg);
    background: #fff !important;
    opacity: 0;
}
#menu-container .menu-list li.sp-nav-p{
    font-weight: 400;
    margin-bottom: 31px;
	text-align: center;
}
@media (max-width: 767px){
#menu-container .menu-list li.sp-nav-p{
    margin-bottom: 30px;
}
}
/*////////////メイン画像////////////*/
body {
    margin: 0;
    padding: 0;
    background: url('img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    overflow-x: hidden;
}
.main-img-content {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: url('img/main-bg-pc.jpg') no-repeat center center;
	background-size: cover;
	z-index: 1;
	transition: color 0.5s;
	color: black; /* 初期のテキスト色を黒に設定 */
}
.main-img-content.scrolled {
	position: absolute;
	top: auto;
	bottom: 0;
	width: 100%;
}
.main-text {
    color: black; /* 初期のテキスト色を黒に設定 */
	transition: color 0.5s;
}
.main-text.color-changed {
    color: white; /* スクロール後のテキスト色を白に設定 */
}
span.gray-moji.color-changed,rt.rt-red.color-changed{
    color: white;
}
.content {
    padding-top: 100vh; /* コンテンツがメイン画像の下から始まるようにオフセットを設定 */
    z-index: -1;
    position: relative;
}
img.content-scroll {
    width: 100%;
    height: auto;
}
.main-img-content {
    padding-top: 94px;
}
@media (max-width: 1250px){
.main-img-content {
    padding-top: 61px;
}
}
.main-img {
	 position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%; /* 親要素の幅に対する割合 */
	height: auto; /* アスペクト比を保つ */
}
/*メインタイトル*/
.main-text {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -48%);
    text-align: center;
    width: 100%;
}
@media (max-width: 767px){
.main-text {
/*    transform: translate(-50%, -66%);*/
}
}
/*台東区の中小企業の味方*/
.main-text-small-title {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 3px;
}
@media (max-width: 991px){
.main-text-small-title {
    font-size: 20px;
}
}
@media (max-width: 767px){
.main-text-small-title {
    font-size: 4.5vw;
}
}
/*台東区でいちばんPRが強い*/
.fade-text {
    font-weight: 700;
    font-size: 3vw;
	letter-spacing: 7px;
}
@media (max-width: 991px){
.fade-text {
    font-size: 3.5vw;
}
}
@media (max-width: 767px){
.fade-text {
    font-size: 8.5vw;
}
}
/*で・が*/
span.small-moji {
   font-size: 2.5vw;
}
@media (max-width: 767px){
span.small-moji {
    font-size: 6vw;
}
}
/*「」*/
span.gray-moji {
    color: #D4D4D4;
    font-size: 87px;
    font-weight: 900;
}
@media (max-width: 1024px){
span.gray-moji {
    font-size: 60px;
}
}
@media (max-width: 991px){
span.gray-moji {
	font-size: 40px;
}
}
@media (max-width: 767px){
span.gray-moji {
    color: #000;
    font-size: 8vw;
}
}
/*PR*/
span.main-englishmoji {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-size: 102.75px;
}
@media (max-width: 1024px){
span.main-englishmoji {
    font-size: 78px;
}
}
@media (max-width: 991px){
span.main-englishmoji {
    font-size: 60px;
}
}
@media (max-width: 767px){
span.main-englishmoji {
    font-size: 15vw;
}
}
/*宣伝*/
rt.rt-red {
    color: #FF2100;
    font-size: 23px;
    font-weight: 600;
}
@media (max-width: 1024px){
rt.rt-red {
	font-size: 17px;
}
}
@media (max-width: 767px){
rt.rt-red {
    color: #000;
    font-size: 3.5vw;
    margin-left: -10px;
}
}
/*ロゴ*/
p.main-logo {
    width: 36%;
    margin: auto;
}
@media (max-width: 767px){
p.main-logo {
    width: 56%;
}
}
/*活字メディア×動画メディア×パートナーメディア*/
.main-text-small-subtitle1,.main-text-small-subtitle2{
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1.54px;
}
@media (max-width: 1024px){
.main-text-small-subtitle1,.main-text-small-subtitle2{
    font-size: 16px;
}
}
@media (max-width: 767px){
.main-text-small-subtitle1,.main-text-small-subtitle2{
     font-size: 4.5vw;
}
}
.main-text-small-subtitle1{
     margin-top: 47px; 
}
@media (max-width: 767px){
.main-text-small-subtitle1{
    margin-top: 47px;
    background: #FFC10D;
    color: #FFF;
    letter-spacing: 1.199px;
    padding: 3px 0px;
    font-size: 3vw;
}
}
/*最高のPR効果*/
span.big-moji {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 5.78px;
}
@media (max-width: 1024px){
span.big-moji {
    font-size: 28px;
}
}
@media (max-width: 767px){
span.big-moji {
    font-size: 6vw;
}
}
/*////////////コンテンツ////////////*/
header {
	height: 100px;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	display: flex;
	align-items: center;
}
section {
	margin-top: 130px; /* ヘッダーの高さ + 余白 */
}
@media (max-width: 767px){
section {
	margin-top: 20px; /* ヘッダーの高さ + 余白 */
}
}
h2 {
	margin-top: 0;
}
/*バナー*/
.banner-bg {
	background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjM5OCIgdmlld0JveD0iMCAwIDE5MjAgMzk4IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMCAwSDE5MjBWMzE5LjE3TDk2MCAzOThMMCAzMTkuMTdWMFp6IiBmaWxsPSIjRkY0RTM0Ii8+Cjwvc3ZnPg==');
	background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    padding: 42px 0 60px;
    position: relative;
}
@media (max-width: 430px){
.banner-bg {	
	background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1ODkuNSIgaGVpZ2h0PSI0MDAiIHZpZXdCb3g9IjAgMCA1ODkuNSA0MDAiIGZpbGw9Im5vbmUiPgoKPHBhdGggZD0iTTAgMEg1ODkuNVYzNjBMMjk0Ljc1IDQwMEwwIDM2MFYwWiIgZmlsbD0iI0ZGNEUzNCIvPgo8L3N2Zz4K') no-repeat;
    padding: 10px 0px 23px;
    background-position: bottom center;
}
}
.banner-title {
    color: #FBFF29;
    text-align: center;
    font-size: 35px;
    font-weight: 700;
}
@media (max-width: 767px){
.banner-title {
	font-size: 5.4vw;
}
}
@media (max-width: 430px){
.banner-title {
	font-size: 8.4vw;
}
}
@media (max-width: 375px){
.banner-title {
	font-size: 7.4vw;
}
}
.banner-contents {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 17px;
}
@media (max-width: 767px){
.banner-contents {
    margin-top: 5px;
    justify-content: space-between;
    align-items: stretch;
}
}
@media (max-width: 767px){
img.cheapest-price {
    width: auto;
    height: 100px;
}
}
@media (max-width: 576px){
img.cheapest-price {
    height: 110px;
}
}
@media (max-width: 430px){
img.cheapest-price {
    height: 80px;
}
}
@media (max-width: 375px){
img.cheapest-price {
	height: 68px;
	margin-left: 16%;
}
}
@media (max-width: 320px){
img.cheapest-price {
	height: 53px;
}
}
.banner-contents-title1 {
    color: #FFF;
    text-align: center;
    font-family: "Zen Kaku Gothic New";
    font-size: 55px;
    font-style: normal;
    font-weight: 700;
    margin-left: 15px;
}
.banner-contents-title1 p{
    margin-bottom: 0rem;
}
@media (max-width: 767px){
.banner-contents-title1 {
	font-size: 8.5vw;
}
}
@media (max-width: 576px){
.banner-contents-title1 {
	font-size: 11vw;
}
}
@media (max-width: 430px){
.banner-contents-title1 {
	font-size: 11.5vw;
}
}
@media (max-width: 425px){
.banner-contents-title1 {
	font-size: 11vw;
	margin-left: 0px;
}
}
.banner-contents-title2 {
    color: #FFF;
    text-align: center;
    font-family: "Zen Kaku Gothic New";
    font-size: 42.052px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: -24px;
    letter-spacing: 0.05em;
}
@media (max-width: 767px){
.banner-contents-title2 {
    font-size: 7.5vw;
    margin-top: -36px;
}
}
@media (max-width: 576px){
.banner-contents-title2 {
    font-size: 7.5vw;
}
}
@media (max-width: 430px){
.banner-contents-title2 {
    margin-top: -25px;
}
}
@media (max-width: 375px){
.banner-contents-title2 {
    font-size: 6.5vw;
}
}
@media (max-width: 320px){
.banner-contents-title2 {
    margin-top: -9px;
}
}
.banner-contents-title2 span{
    font-size: 73px;
}
@media (max-width: 767px){
.banner-contents-title2 span{
    font-size: 14vw;
}
}
span.ten-thousand-yen {
    font-size: 48.849px;
}
@media (max-width: 767px){
span.ten-thousand-yen {
    font-size: 39px;
}
}
.banner-contents-btn{
    display: block;
    margin:auto;
    text-align: center;
    margin-top: 16px;
    background: #FFF;
    width: 36%;
    border-radius: 45.898px;
}
@media (max-width: 1199px){
.banner-contents-btn{
    width: 45%;
}
}
@media (max-width: 991px){
.banner-contents-btn{
    width: 60%;
}
}
@media (max-width: 767px){
.banner-contents-btn{
    width: 100%;
    height: 108px;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNjEiIGhlaWdodD0iMTA4IiB2aWV3Qm94PSIwIDAgMzYxIDEwOCI+PHBhdGggZD0iTTAgMEwzNjEgNy41OTgxM2UtMDZWODJMMTgwLjk1OSAxMDhMMCA4MlYwWiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==') no-repeat;
    background-size: cover;
    background-position: bottom center;
    padding-top: 12px;
    border-radius: 0px;
    cursor: pointer;
    position: relative;;
    margin-top: 6px;
    line-height: 2em;
}
}
@media (max-width: 375px){
.banner-contents-btn{
    padding-top: 13px;
}
}
.banner-contents-btn span{
    color: #FF4E34;
    font-size: 27px;
    font-weight: 600;
}
@media (max-width: 767px){
.banner-contents-btn span{
    font-size: 6vw!important;
    font-weight: 500;
}
}
@media (max-width: 430px){
.banner-contents-btn span{
    font-size: 9vw!important;
}
}
span.ten-thousand-yen-small {
    font-size: 25px;
    font-weight: 600;
}
@media (max-width: 430px){
span.ten-thousand-yen-small {
    font-weight: 500;
}
}
span.bannerbig-number {
    padding: 5px 30px;
    font-size: 17px;
    border-radius: 45.898px;
    font-weight: 700;
}
@media (max-width: 767px){
span.bannerbig-number {
    font-size: 4vw!important;
    padding: 0px;
}
}
@media (max-width: 430px){
span.bannerbig-number {
    font-size: 5vw!important;
    padding: 0px;
}
}
/*/////////////////////////コンテンツ/////////////////////////*/
/*めぐりるに加盟するとおこること*/
.happens-top {
    color: #1789CA;
    font-family: "Zen Kaku Gothic Antique";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}
.happens-top-text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8em;
}
@media (max-width: 1199px){
.happens-top-text {
    margin-left: 0%;
}
}
@media (max-width: 767px){
.happens-top-text {
    margin: 10px 0px 0px;
    font-size: 15px;
}
}
img.happens-img {
    margin-top: 20px;
}
@media (max-width: 767px){
img.happens-img {
    margin: 0px 0px 20px;
}
}
/*めぐりるに加盟するメリット*/
.merit-bg {
    margin-top: -200px;
    background: #F8F8F8;
    padding: 50px 0px 130px;
}
@media (max-width: 767px){
.merit-bg {
	margin-top: -100px;
	padding: 94px 0px 50px;
}
}
.merit-bg2 {
    margin-top: -200px;
    padding: 50px 0px 0px;
}
@media (max-width: 767px){
.merit-bg2 {
    margin-top: 0px;
}
}
.top-content {
    margin: 80px 0px 53px;
}
@media (max-width: 767px){
.top-content {
    margin-top: 20px;
}
}
.h3-title {
    color: #FF4E34;;
    text-align: center;
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 600;
}
h2.h2-title {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
}
@media (max-width: 991px){
h2.h2-title {
    font-size: 25px;
}
}
@media (max-width: 767px){
h2.h2-title {
    font-size: 21px;
}
}
h2.h2-title.h2-title-2 {
    display: flex;
    justify-content: center;
    align-items: center;
}
h2.h2-title.h2-title-2 p{
	color: #000;
	font-size: 30px;
	font-weight: 500;
    margin: 0px 0px 0px 15px;
}
@media (max-width: 767px){
h2.h2-title.h2-title-2 p{
    font-size: 21px;
}
}
@media (max-width: 320px){
h2.h2-title.h2-title-2 p{
    font-size: 17px;
}
}
.h2-title-2-text.h2-title-2-text-sp {
	display: none;
}
@media (max-width: 767px){
.h2-title-2-text.h2-title-2-text-sp {
    display:block;
    color: #000;
    font-size: 25px;
    font-weight: 500;
    margin: 0px;
    text-align: center;
}
}
.benefits-membership-grop {
    font-size: 30px;
    text-align: center;
    margin-top: 35px;
    font-weight: 700;
    color: #FF4E34;
}
@media (max-width: 767px){
.benefits-membership-grop {
    margin-top: 22px;
    line-height: 1.5em;
}
}
@media (max-width: 320px){
.benefits-membership-grop {
    font-size: 25px;
}
}
.benefits-membership-grop span{
    font-size: 55px;
    font-weight: 600;
	border-bottom: solid 4px #FF4E34;
    font-family: Montserrat!important;
}
@media (max-width: 991px){
.benefits-membership-grop span{
    font-size: 50px;
}
}
@media (max-width: 767px){
.benefits-membership-grop span{
    border-bottom: solid 4px transparent;
}
}
@media (max-width: 320px){
.benefits-membership-grop span{
    font-size: 35px;
}
}
@media (max-width: 767px){
span.benefits-membership-grop-sp {
    font-family: "Zen Kaku Gothic New", sans-serif !important;
    font-size: 46px;
}
}
@media (max-width: 320px){
span.benefits-membership-grop-sp {
    font-size: 33px;
}
}
.merit-content {
    display: flex;
    justify-content: space-between;
    margin-top: 37px;
}
@media (max-width: 767px){
.merit-content {
    flex-direction: column;
}
}
.merit-item {
    width: 23.5%;
}
@media (max-width: 767px){
.merit-item {
    width: 100%;
}
}
@media (max-width: 767px){
.container.container-sp-no {
    padding-right: 0px;
    padding-left: 0px;
}
}
.merit-item-price {
    color: #32C4D7;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
@media (max-width: 767px){
.merit-item-price {
    margin-left: 15px;
}
}
.merit-item-price span{
	font-size: 14px;
}
.merit-item-text {
    color: #000;
    font-size: 14px;
	font-weight: 500;
    margin-top: 5px;
}
@media (max-width: 991px){
.merit-item-text {
    font-size: 13px;
}
}
@media (max-width: 767px){
.merit-item-text {
	margin: 5px 15px 24px 15px;
    font-size: 15px;
}
}
.merit-item-text span{
	color: #7C7C7C;
	text-decoration-line: underline;
}
.merit-item-price_2 {
    margin-top: 24px;
    color: #32C4D7;
    font-size: 20px;
    font-weight: 500;
	margin-bottom: 0.5rem;
}
@media (max-width: 767px){
.merit-item-price_2 {
	margin-left: 15px;
}
}
.merit-item-price_2 span{
	font-size: 14px;
}
.merit-contente_2 {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 767px){
.merit-contente_2 {
    flex-direction: column;
}
}
/*なぜ台東区で一番PRがつよい？*/
.why-bg {
	padding: 100px 0px 60px;
    margin-top: -50px;
}
@media (max-width: 767px){
.why-bg {
    padding: 80px 0px 30px;
    margin-top: 0px;
}
}
@media (max-width: 767px){
.row.whytext-grop {
    margin-right: 0px;
    margin-left: 0px;
}
}
@media (max-width: 767px){
.col-12.col-md-5.why-img-with {
    padding-right: 0px;
    padding-left: 0px;
}
}
.whytext-grop {
    margin-top: 70px;
}
@media (max-width: 767px){
.whytext-grop {
    margin-top: 20px;
}
}
.whytext-grop-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8em;
    margin-left: -4%;
}
@media (max-width: 1199px){
.whytext-grop-text {
    margin-left: 0%;
}
}
@media (max-width: 767px){
.whytext-grop-text {
    margin: 10px 0px 0px;
    font-size: 15px;
}
}
/*こんな方におすすめ*/
.recommended-bg {
    margin-top: -100px;
    padding: 100px 0px 30px;
}
@media (max-width: 991px){
.recommended-bg {
    margin-top: 34px;
}
}
@media (max-width: 767px){
.recommended-bg {
    margin-top: -50px;
}
}
.recommended-grop {
    border-radius: 10px;
    background: #F8F8F8;
    margin: 30px 0px;
    padding: 40px;
}
@media (max-width: 767px){
.recommended-grop {
    background: transparent;
    margin: 30px 0px;
    padding: 0px;
}
}
/*他社比較*/
.comparison-bg {
    background: #F3F3F3;
    padding: 100px 0px;
}
@media (max-width: 991px){
.comparison-bg {
    padding: 60px 0px;
}
}
@media (max-width: 767px){
.comparison-bg {
    padding: 2px 0px 60px;
}
}
.comparison-img{
    margin-top: 50px;
}
@media (max-width: 991px){
.comparison-img {
    display: none;
}
}
.recommended-grop-title {
    background: #32C4D7;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 8px 0px;
}
.recommended-text-contents {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 991px){
.recommended-text-contents {
	flex-direction: column;
}
}
ul.recommended-item {
    margin-bottom: 0rem;
}
@media (max-width: 767px){
ul.recommended-item {
    margin-left: 8%;
}
}
ul.recommended-item li{
	padding-top: 25px;
	font-weight: 500;
}
@media (max-width: 1199px){
ul.recommended-item li{
    font-size: 13px;
}
}
ul.recommended-item li span{
	color: #717171;
	font-size: 14px;
    margin-left: 6.5%;
}
@media (max-width: 991px){
ul.recommended-item li span{
	margin-left: 4.5%;
}
}
@media (max-width: 767px){
ul.recommended-item li span{
    margin-left: 0%;
}
}
i.fa-regular.fa-square {
    background: #FFF;
    color: #868484;
}
@media (max-width: 767px){
i.fa-regular.fa-square {
    background: #FFF;
    color: #868484;
	margin-left: -8%;
	font-size: 20px;
}
}
p.recommended-text-red {
    color: #FF4E34;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
}
@media (max-width: 991px){
p.recommended-text-red {
    font-size: 25px;
}
}
@media (max-width: 767px){
p.recommended-text-red {
    font-size: 3vw;
    margin-bottom: 0.2rem;
}
}
@media (max-width: 430px){
p.recommended-text-red {
    font-size: 4.3vw;
}
}
@media (max-width: 320px){
p.recommended-text-red {
    font-size: 4vw;
}
}
p.recommended-text-small {
    font-size: 13px;
    color: #565656;
    text-align: center;
}
/*こんなお悩みはお持ちでないでしょうか？*/
.problems-bg{
	background-image:url("../img/worries-bg.png");
	background-repeat: no-repeat;
	background-size: cover;
    height: 725px;
/*    height: 37.8vw;*/
    padding-top: 8vw;
	margin-top: 30px;
    position: relative;
}
@media (max-width: 1440px){
.problems-bg{
    height: 41vw;
}
}
@media (max-width: 991px){
.problems-bg{
    height: 48vw;
}
}
@media (max-width: 767px){
.problems-bg{
    background-image: url(../img/worries-bg-sp.png);
	background-size: cover;
	height: 195vw;
	padding-top: 77px;
	margin-top: 0px;
}
}
@media (max-width: 430px){
.problems-bg{
	height: 207vw;
}
}
@media (max-width: 320px){
.problems-bg{
	padding-top: 55px;
}
}
img.worries-img {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0%);
    bottom: 0px;
}
@media (max-width: 1440px){
img.worries-img {
    width: 73vw;
}
}
@media (max-width: 1199px){
img.worries-img {
    width: 68vw;
}
}
@media (max-width: 991px){
img.worries-img {
    width: 88vw;
}
}
@media (max-width: 767px){
img.worries-img {
    width: 100%;
    left: 50%;
}
}
/*運営メディア*/
.media-bg {
    margin: -100px 0px 115px;
    padding: 100px 0px 30px;
}
@media (max-width: 767px){
.media-bg {
    margin: 0px;
    padding: 64px 0px 30px;
}
}
.media-grop-contents {
    display: flex;
    margin-top: 52px;
    justify-content: space-between;
}
@media (max-width: 767px){
.media-grop-contents {
    flex-direction: column;
    margin-top: 20px;
}
}
@media (max-width: 767px){
.media-grop-contents.media-grop-contents-partner{
    flex-direction: row;
    flex-wrap: wrap;
 	width: 100%;
}
}
.media-grop-contents div {
    width: 90.5%;
    display: block;
    margin: auto;
	text-align: center;
}
@media (max-width: 767px){
.media-grop-contents div {
    width: 100%;
}
}
@media (max-width: 767px){
img.media-img-main.d-block.d-md-none {
    width: 100%;
}
}
@media (max-width: 1199px){
img.media-img {
    width: 210px;
	height: auto;
}
}
@media (max-width: 991px){
img.media-img {
    width: 156px;
	height: auto;
}
}
@media (max-width: 767px){
 .media-grop-contents.media-grop-contents-partner .media-grop{
    width: 50%;
    margin: 0;
	padding: 10px;
	box-sizing: border-box;
	text-align: center;
}
.media-grop-contents.media-grop-contents-partner .media-grop img{
    width: 100%;
    height: auto;
 }
}
p.media-title {
    font-size: 14px;
    font-weight: 400;
	padding-top: 5px;
}
@media (max-width: 767px){
p.media-title {
    color: #8F8F8F;
}
}
p.media-item-text {
    font-weight: 400;
    margin-top: 32px;
    text-align: center;
    line-height: 1.8em;
}
@media (max-width: 767px){
p.media-item-text {
	margin: 16px 0px 40px;
	text-align: left;
}
}
/*パートナーメディア様*/
.media-grop-contents2 {
    display: flex;
    margin-top: 35px;
    justify-content: center;
}
@media (max-width: 767px){
.media-grop-contents2 {
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
}
}
@media (max-width: 767px){
.media-grop-contents2.media-grop-contents-partner{
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 0px;
}
}
@media (max-width: 767px){
.media-grop-contents2.media-grop-contents-partner img{
	width: 100%;
	height: auto;
}
}
.media-grop-contents2 div {
	 margin: 0px 7px;
}
@media (max-width: 767px){
.media-grop-contents2 div.media-grop{
	width: 50%;
	margin: 0;
	padding: 5px;
	box-sizing: border-box;
	text-align: center;
}
}
@media (max-width: 767px){
.media-grop-contents2 div img{
    width: 100%;
	height: auto;
}
}
@media (max-width: 767px){
.media-grop-contents2.media-grop-contents-partner div .media-grop{
	width: 50%;
	margin: 0;
	padding: 5px;
	box-sizing: border-box;
	text-align: center;
}
}
.partner-media-bg {
    margin-bottom: 125px;
}
@media (max-width: 991px){
.partner-media-bg {
    margin-bottom: 25px;
}
}
p.media-title-partner {
    font-size: 14px;
    font-weight: 400;
	padding-top: 5px;
	text-align: center;
}
@media (max-width: 767px){
p.media-title-partner {
    color: #393939;
}
}
/*バナー　水色*/
.banner-bg-blue{
 	background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjM5OCIgdmlld0JveD0iMCAwIDE5MjAgMzk4IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMCAwSDE5MjBWMzE5LjE3TDk2MCAzOThMMCAzMTkuMTdWMFp6IiBmaWxsPSIjMzJDNEQ3Ii8+Cjwvc3ZnPg==');
	background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    padding: 42px 0 60px;
    position: relative;
}
@media (max-width: 430px){
.banner-bg-blue{
	background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1ODkuNSIgaGVpZ2h0PSI0MDAiIHZpZXdCb3g9IjAgMCA1ODkuNSA0MDAiIGZpbGw9Im5vbmUiPgoKPHBhdGggZD0iTTAgMEg1ODkuNVYzNjBMMjk0Ljc1IDQwMEwwIDM2MFYwWiIgZmlsbD0iIzMyQzRENyIvPgo8L3N2Zz4K') no-repeat;
	padding: 18px 0px 23px;
	background-position: bottom center;
}
}
span.bannerbig-number.bannerbig-number-blue {
    color: #00AEC5;
}
span.bannerbig-number.bannerbig-number-blue span{
    color: #00AEC5;
}
/*加入特典*/
.benefits-bg {
    background: #F8F8F8;
/*
    padding: 130px 0px;
    margin-top: -90px;
*/
    padding: 170px 0px 130px;
    margin-top: -230px;
}
@media (max-width: 991px){
.benefits-bg {
	padding: 115px 0px;
}
}
@media (max-width: 767px){
.benefits-bg {
	padding: 55px 0px 40px;
	margin-top: -40px;
}
}
.benefits-logo {
    margin: auto;
    display: block;
}
@media (max-width: 767px){
.benefits-logo {
    margin-top: 0px;
}
}
h2.h2-title span{
	font-size: 60px;
	font-weight: 900;
	color: #FF2100;
}
@media (max-width: 767px){
h2.h2-title span{
	font-size: 42px;
}
}
h3.h3-title.h3-title-big {
    font-size: 22px;
}
h3.h3-title.h3-title-big {
    font-size: 22px;
    border-bottom: 3px solid #FF2100;
    padding-bottom: 5px;
    margin-top: 20px;
	color: #FF2100;
	font-family: "Zen Kaku Gothic New";
}
@media (max-width: 767px){
h3.h3-title.h3-title-big {
    font-size: 18px;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 0rem;
}
}
@media (max-width: 375px){
h3.h3-title.h3-title-big {
    font-size: 16px;
}
}
@media (max-width: 320px){
h3.h3-title.h3-title-big {
    font-size: 14px;
}
}
.benefits-contents-grop {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 767px){
.benefits-contents-grop {
    flex-direction: column;
}
}
.benefits-contents-grop-contents {
	display: inline-flex;
    padding: 30px 25px;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    border-radius: 10px;
    background: #FFF;
    margin-top: 45px;
	width: 48%;
	align-items: center;
}
@media (max-width: 767px){
.benefits-contents-grop-contents {
	width: 100%;
	background: transparent;
	margin-top: 17px;
	padding: 0px;
    gap: 7px;
}
}
.benefits-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0rem;
}
@media (max-width: 767px){
.benefits-title {
    font-size: 12px;
}
}
.benefits-title.benefits-title-red {
	color: #F00;
}
.benefits-title.benefits-title-blue {
	color: #009E99;
}
.benefits-text {
    font-weight: 400;
    margin-top: 9px;
}
@media (max-width: 767px){
.benefits-text {
	font-size: 15px;
}
}
span.benefits-influencer-red {
    color: #F00;
    font-family: "Zen Kaku Gothic New";
    font-size: 13px;
    font-weight: 400;
}
/*加入特典その2-*/
img.benefits-logo2 {
    margin: auto;
    display: block;
    margin-top: 73px;
}
@media (max-width: 767px){
img.benefits-logo2 {
    margin-top: 33px;
}
}
.benefits-contents-grop-contents-img {
    display: inline-flex;
    margin-top: 45px;
    width: 520px;
    height: 320px;
}
@media (max-width: 1199px){
.benefits-contents-grop-contents-img {
    width: 46%;
    height: 263px;
}
}
@media (max-width: 991px){
.benefits-contents-grop-contents-img {
	width: 50%;
	height: 220px;
}
}
@media (max-width: 767px){
.benefits-contents-grop-contents-img {
	width: 100%;
	height: auto;
    margin-top: 18px;
}
}
.benefits-contents-grop-contents-text{
    display: inline-flex;
	margin-top: 45px;
	flex-direction: column;
    width: 47%;
}
@media (max-width: 767px){
.benefits-contents-grop-contents-text{
	width: 100%;
	margin-top: 18px;
}
}
.benefits-text2 {
    font-weight: 400;
    line-height: 1.7em;
	margin-bottom: 30px;
}
@media (max-width: 767px){
.benefits-text2 {
	margin-bottom: 0px;
}
}
.youtube-btm {
    border-radius: 67px;
    background: #F00;
    font-weight: 700;
    color: #FFF;
    text-align: center;
	width: 286px;
    padding: 15px 0px;
}
@media (max-width: 767px){
.youtube-btm {
	width: 95%;
	margin: auto;
	padding: 12px 0px;
}
}
i.fa-brands.fa-youtube {
    padding-right: 5px;
}
/*YouTubeのスライダー*/
.slider-gallery-beside .slick-slide {
	width: 330px;
 	 height: auto;
	position: relative;
	overflow: hidden;
    margin: 0 10px;
}
.slider-gallery-beside .slick-slide img {
	display: block;
	width: 100%;
	height: 100%;
 	 object-fit: cover;
    margin-top: 71px;
}
@media screen and (max-width:767px) {
.slider-gallery-beside .slick-slide img {
    margin-top: 25px;
}
}
.row.btn-2-mt {
    margin-top: 150px;
}
@media screen and (max-width:1199px) {
.row.btn-2-mt {
    margin-top: 100px;
}
}
/*加入特典その3-*/
.benefits3-logo {
    display: flex;
	font-weight: 500;
}
.benefits3-logo img{
    width: 139px;
    margin-right: 15px;
}
@media screen and (max-width:320px) {
.benefits3-logo img{
    width: 120px;
    margin-right: 10px;
}
}
table.benefits3-item {
    margin-top: 18px;
    font-weight: 500;
}
table.benefits3-item td:nth-of-type(1) {
	width: 23%;
}
@media screen and (max-width:991px) {
table.benefits3-item td:nth-of-type(1) {
	width: 42%;
}
}
@media screen and (max-width:767px) {
table.benefits3-item td:nth-of-type(1) {
	width: 39%;
	padding-right: 10px;
}
}
@media screen and (max-width:360px) {
table.benefits3-item td:nth-of-type(1) {
	width: 40%;
}
}
@media screen and (max-width:320px) {
table.benefits3-item td:nth-of-type(1) {
	font-size: 14px;
}
}
table.benefits3-item td:nth-of-type(2) {
	color: #FF2100;
	font-size: 23px;
	font-weight: 500;
}
@media screen and (max-width:320px) {
table.benefits3-item td:nth-of-type(2) {
	font-size: 21px;
}
}
table.benefits3-item td span{
	font-weight: 400;
	color: #000;
}
@media screen and (max-width:767px) {
table.benefits3-item td span{
	font-size: 16px;
}
}
@media screen and (max-width:767px) {
.benefits3-table-sp {
    display: flex;
	width: 90%;
	padding: 22px 28px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    border: 3px solid #FFC10D;
    background: #FFF;
    margin: auto;
    margin-top: 20px;
}
}
@media screen and (max-width:375px) {
.benefits3-table-sp {
    width: 100%;
}
}
@media screen and (max-width:320px) {
.benefits3-table-sp {
    padding: 22px 15px;
}
}
/*加入特典その5*/
.benefits5-text {
    font-weight: 500;
    margin-bottom: 0rem;
}
.benefits5-text-red {
    color: #FF2100;
    font-size: 27px;
    font-weight: 500;
}
@media screen and (max-width:991px) {
.benefits5-text-red {
    margin-bottom: 0.5rem;
    font-size: 23px;
}
}
@media screen and (max-width:767px) {
.benefits5-text-red {
    margin-bottom: 0.5rem;
}
}
@media screen and (max-width:320px) {
.benefits5-text-red {
	font-size: 20px;
}
}
.benefits5-text-red span{
	font-size: 41.638px;
    font-weight: 700;
}
@media screen and (max-width:320px) {
.benefits5-text-red span{
    font-size: 35px;
}
}
/*料金について*/
.price-bg {
    margin: -100px 0px 84px;
    padding: 100px 0px 0px;
}
@media screen and (max-width:767px) {
.price-bg {
    margin: 0px 0px 30px;
    padding: 65px 0px 0px;
}
}
.price-logo {
    display: flex;
    margin: auto;
    text-align: center;
    margin-top: 48px;
    font-size: 21px;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}
.price-logo img {
    margin-right: 10px;
}
table.price-item {
    width: 40%;
	margin: auto;
    margin: 24px auto 14px;
}
@media screen and (max-width:1199px) {
table.price-item {
    width: 50%;
}
}
@media screen and (max-width:991px) {
table.price-item {
    width: 80%;
}
}
@media screen and (max-width:767px) {
table.price-item {
    width: 100%;
}
}
table.price-item tr{
	border-top: solid 1px #C6C6C6;
}
table.price-item tr:nth-of-type(3){
	border-bottom: solid 1px #C6C6C6;
}
table.price-item td:nth-of-type(1) {
    width: 40%;
    color: #645D5C;
    font-size: 22px;
    font-weight: 500;
    padding: 23px 26px 23px 37px;
}
@media screen and (max-width:767px) {
table.price-item td.price-grop {
    padding: 28px 10px 32px 10px;
}
}
@media screen and (max-width:767px) {
table.price-item td:nth-of-type(1) {
	padding: 30px 10px 30px 10px;
	width: 33%;
	font-size: 18px;
}
}
@media screen and (max-width:360px) {
table.price-item td:nth-of-type(1) {
	padding: 30px 0px 30px 10px;
}
}
@media screen and (max-width:320px) {
table.price-item td:nth-of-type(1) {
	padding: 30px 0px 30px 10px;
	font-size: 16px;
}
}
table.price-item td:nth-of-type(2) {
	color: #FF2100;
	font-size: 30px;
	font-weight: 500;
}
table.price-item td span{
    font-weight: 500;
    color: #000;
    font-size: 25px;
}
table.price-item td.black-text{
	color: #000;
}
@media screen and (max-width:767px) {
table.price-item td.black-text{
    font-size: 25px;
}
}
@media screen and (max-width:375px) {
table.price-item td.black-text{
    font-size: 22px;
}
}
@media screen and (max-width:360px) {
img.price-arrow-price-img {
    width: 63%;
}
}
.price-note {
    width: 38%;
    margin: auto;
    font-size: 13px;
    font-weight: 500;
}
@media screen and (max-width:1199px) {
.price-note {
    width: 50%;
}
}
@media screen and (max-width:991px) {
.price-note {
    width: 80%;
}
}
@media screen and (max-width:767px) {
.price-note {
	color: #645D5C;
	width: 100%;
}
}
/*よくある質問*/
.faq-container {
    margin-top: 65px;
}
@media screen and (max-width:767px) {
.faq-container {
    margin-top: 30px;
}
}
.qa-bg {
    background: #FF4E34;
    padding: 102px 0px 72px;
}
@media screen and (max-width:767px) {
.qa-bg {
    padding: 80px 0px 30px;
}
}
h3.h3-title.h3-title-white {
    color: #fff;
}
h2.h2-title.h2-title-white{
    color: #fff;
}
.faq-contents {
    margin: 23px 0px;
	font-family: "Noto Sans JP";
	font-weight: 400;
}
@media (max-width: 767px) {
.faq-contents {
    margin:0px;
}
}
span.faq-q {
	color: #FF4E34;
	font-family: Montserrat;
	font-size: 30px;
	font-weight: 500;
	margin-right: 15px;
}
.accordion-item {
	width: 100%;
	margin: 0 auto;
}
.accordion-header {
	transition: ease-in-out 100ms;
}
.accordion-wrap {
	background: #FFF;
	box-shadow: 0px 1px 8.3px 0px rgba(179, 194, 206, 0.33);
	margin-bottom: 30px;
	border-radius: 10px;
	padding: 17px 23px;
	cursor: pointer;
	position: relative;
}
@media (max-width: 767px) {
.accordion-wrap {
	margin-bottom: 23px;
}
}
.accordion-wrap-q {
	display: flex;
	width: 90%;
	align-items: center;
}
.accordion-wrap-icon {
position: absolute;
right: 25px;
top: 30px;
}
@media (max-width: 767px) {
.accordion-wrap-icon {
	right: 13px;
}
}
.accordion-text {
display: none;
border-radius: 10px;
background: #FFECEB;
padding: 10px 15px;
margin-top: 20px;
}
.fa {
transition: transform 300ms ease-in-out;
}
.rotate-fa {
transform: rotate(45deg);
}

i.fas.fa-plus {
	float: right;
	line-height: 0px;
	margin: auto;
	text-align: center;
	padding-top: 10px;
	color: #FF2929;
}
@media (max-width: 767px) {
	i.fas.fa-plus {
		padding-top: 3px;
	}
}
@media (max-width: 767px) {
	.accordion-header .fa {
		line-height: 3px;
	}
}
i.fas.fa-minus::before{
	color: #FF2929;
}
.accordion-no-bar {
	border-bottom: 0;
}
@media (max-width: 767px) {
	p.qa_a.font_Noto-bold {
		font-size: 13px;
	}
}
/*Q*/
.aq-text {
	list-style-type: none !important;
	padding-left: 1em !important;
	text-indent: -1em !important;
	margin-bottom: 0rem;
}
@media (max-width: 991px) {
	.aq-text {
		font-size: 20px;
		padding-left: 0em !important;
		text-indent: 0em !important;
	}
}
@media (max-width: 767px) {
	.aq-text {
		font-size: 13px;
	}
}
@media (max-width: 767px) {
	.aq-text {
		line-height: 1rem;
	}
}
.aq-text img {
	margin-right: 15px;
}
@media (max-width: 767px) {
	.aq-text img {
		margin-right: 3px;
	}
}

/*Q　テキスト*/
span.accordion-header {
	font-size: 14px;
	font-weight: 400;
}
@media (max-width: 767px) {
span.accordion-header {
	line-height: 1.5rem;
}
}
@media (max-width: 991px) {
p.accordion-header {
	font-size: 16px;
}
}
@media (max-width: 425px) {
p.accordion-header {
	font-size: 3.2vw;
}
}
@media (max-width: 375px) {
p.accordion-header {
	font-size: 13px;
}
}
p.aq-text.llg_q_text {
	color: #93cf30;
}
p.q-text {
	list-style-type: none !important;
    line-height: 1.7em;
	margin-bottom: 0rem;
	font-size: 14px;
}
@media (max-width: 991px) {
p.q-text {
	font-size: 13px;
}
}
span.qa_a {
	font-size: 15px;
	line-height: 1.5rem;
}
@media (max-width: 991px) {
span.qa_a {
	font-size: 13px;
	line-height: 1.3rem;
}
}
/*////////////////フッター//////////////*/
.footer {
    background: #F8F8F8;
    padding: 65px 0px 0px;
}
@media (max-width: 767px) {
.footer {
    padding: 60px 0px 0px;
}
}
.footer-title {
    color: #FF4E34;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 17px;
}
@media (max-width: 320px) {
.footer-title {
    font-size: 16px;
}
}
a.footer-logo img{
	display: block;
	margin: auto;
	width: 294px;
    height: auto;
}
@media (max-width: 767px) {
a.footer-logo img{
	width: 75%;
    height: auto;
}
}
.footer-menu-botton {
    display: flex;
    justify-content: space-between;
	margin-top: 110px;
}
@media (max-width:991px){
.footer-menu-botton {
	margin-top: 70px;
}
}
@media (max-width:767px){
.footer-menu-botton {
    flex-direction: column;
    margin: 50px 0px;
}
}
.footer-menu-botton-grop {
    display: flex;
	color: #fff;
}
.footer-menu-botton-grop.footer-application-grop-send {
    border-radius: 10px;
    background: #FF2929;
    display: inline-flex;
    padding: 18px 33px;
    align-items: center;
    gap: 90px;
	justify-content: space-around;
}
.footer-text {
    margin-left: -15%;
}
.footer-menu-botton-grop.footer-application-grop-send:hover{
    background: #ff7d7d;
    transition: all .5s ease;
}
.footer-menu-botton-grop.footer-application-grop-mail {
    border-radius: 10px;
    background: #000;
    display: inline-flex;
    padding: 18px 33px;
    align-items: center;
    gap: 90px;
	justify-content: space-around;
}
.footer-menu-botton-grop.footer-application-grop-mail:hover{
	background: #474747;
    transition: all .5s ease;
}
@media (max-width:991px){
.footer-menu-botton-grop.footer-application-grop-send,.footer-menu-botton-grop.footer-application-grop-mail{
    gap: 40px;
}
}
@media (max-width:767px){
.footer-menu-botton-grop.footer-application-grop-send,.footer-menu-botton-grop.footer-application-grop-mail{
    gap: 40px;
    width: 100%;
	justify-content: space-between;
}
.footer-menu-botton-grop.footer-application-grop-send{
	margin-bottom: 20px;
}
}
span.footer-e {
    color: #FFF;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 700;
}
span.footer-j {
    color: #FFF;
    font-size: 25px;
    font-weight: 500;
}
@media (max-width:1199px){
span.footer-j {
    font-size: 21px;
}
}
@media (max-width:991px){
span.footer-j {
    font-size: 16px;
}
}
@media (max-width:1199px){
img.footer-application-icon {
    width: 50px;
}
img.footer-contact-icon {
    width: 50px;
}
}
i.fa-solid.fa-chevron-right.footer-arrow-icon{
    font-size: 30px;
}
@media (max-width:991px){
i.fa-solid.fa-chevron-right.footer-arrow-icon{
    font-size: 20px;
}
}
.footer-nav-content {
    display: flex;
    justify-content: space-evenly;
    width: 80%;
    margin: 30px auto 55px;
	color: #6F6F6F;
    font-family: "Noto Sans JP";
    font-size: 12px;
    font-weight: 500;
}
@media (max-width:991px){
.footer-nav-content {
    width: 100%;
}
}
@media (max-width:767px){
.footer-nav-content {
    display: none;
}
}
.footer-nav-content a{
    color: #6F6F6F;
}
.footer-nav-content a:hover{
    color: #ff4d35;
    transition: color 0.5s ease-out;
}
/*コピーライト*/
.cope-text {
	background: #848484;
    text-align: center;
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 0rem;
    padding: 7px 0px;
    color: #fff;
}
@media (max-width: 991px){
p.cope-text {
	font-size: 12px;
}
}
@media (max-width: 767px){
p.cope-text {
	padding: 5px 0.5px;
    padding-bottom: 70px;
    margin-top: 65px;
}
}
@media (max-width: 1199px){
p.cope-text-top {
    margin-bottom: 100px;
}
}
@media (max-width: 991px){
p.cope-text-top {
    margin-bottom: 90px;
}
}
@media (max-width: 767px){
p.cope-text-top {
    margin-bottom: 60px;
}
}
/*下からナビ*/
@media (max-width: 767px) {
#nav8 {
    z-index: 1;
	position: fixed;
    bottom: -60px;
    left: 0;
    width: 100%;
    color: #fff;
    height: 65px;
	background: #FF2929;
    padding: 11px 0px;
}
}
#nav8 .inner {
    width: 100%;
    margin: 0;
    padding: 0;
    min-width: 320px;
}
#nav8  a {
	color: #FF2929;;
	font-size: 12px;
	font-weight: 500;
}
#nav8 .inner a {
    display: block;
    padding: 8px;
	text-align: center;
}
.f_banner_box {
    display: block;
    margin: auto;
    text-align: center;
}
.footer-nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.footer-nav-item {
    width: 45%;
	justify-content: center;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
    border-radius: 65px;
	background: #FFF;
}
@media screen and (max-width: 375px){
.footer-nav-item {
    width: 47%;
}
}
.footer-nav-itembox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}
.footer-nav-item img{
    width: 25px;
	height: 25px;
}
/*//////////////////////////下層//　////////////////////////*/
/*下層フッター*/
.footer.footer-kaso {
    background: #fff;
    margin-top: 110px;
}
@media screen and (max-width: 767px){
.footer.footer-kaso {
    padding: 60px 0px 0px;
    margin-top: 50px;
}
}
/*/////////会社概要/////////*/
.kaso-bg {
    background: #FAFAFA;
    padding: 200px 0px 0px;
}
@media screen and (max-width: 1199px){
.kaso-bg {
    padding: 150px 0px 0px;
}
}
@media screen and (max-width: 767px){
.kaso-bg {
    padding: 120px 0px 0px;
}
}
/*下層タイトル*/
h2.h2-title-kaso {
    text-align: center;
    font-size: 21px;
    margin-top: 8px;
}
.company_box-contents {
    background-color: #fff;
    width: 65%;
    margin: 80px auto 110px;
}
@media screen and (max-width: 1199px){
.company_box-contents {
    width: 63%;
}
}
@media screen and (max-width: 991px){
.company_box-contents {
    width: 80%;
}
}
@media screen and (max-width: 767px){
.company_box-contents {
    width: 100%;
    margin: 30px auto 60px;
}
}
table.company_box {
    width: 90%;
	margin:auto;
    font-size: 14px;
    font-weight: 400;
}
@media screen and (max-width: 767px){
table.company_box {
	width: 90%;
}
}
table.company_box th{
    font-size: 14px;
    font-weight: 400;
    padding: 29px 5% 20px 0px;
    vertical-align: middle;
    width: 30%;
}
table.company_box td{
    border: 0px solid transparent;
    text-align: left;
    padding: 30px 0px;
    color: #4D4D4D!important;
}
@media screen and (max-width: 767px){
table.company_box th,table.company_box td{
    display: block;
    width: 100%;
    padding: 10px 0px 10px;
}
}
@media screen and (max-width: 767px){
table.company_box th{
    font-weight: 500;
}
}
tr.company-line {
    border-bottom: solid 1px #E6E6E6;;
}
tr.company-line:nth-of-type(6) {
    border-bottom: solid  transparent;
    padding-bottom: 35px;
}
/*特定商法*/
tr.company-line.company-line-on:nth-of-type(6) {
    border-bottom: solid 1px #E6E6E6;;
}
tr.company-line.company-line-off:nth-of-type(9) {
    border-bottom: solid  transparent;
}
tr.company-line th.company-mt:nth-of-type(1),tr.company-line td.company-mt:nth-of-type(1){
    padding-top: 20px;
}
@media screen and (max-width: 767px){
tr.company-line td.company-mt:nth-of-type(1){
    padding: 10px 0px 10px;
}
}
table.company_box td.company-bm{
    padding-bottom: 35px;
}
.footer-nav-content-kaso {
    display: flex;
    justify-content: space-evenly;
    width: 80%;
    margin: 52px auto 38px;
	color: #6F6F6F;
    font-family: "Noto Sans JP";
    font-size: 12px;
    font-weight: 500;
}
@media (max-width:991px){
.footer-nav-content-kaso {
    width: 100%;
}
}
@media (max-width:767px){
.footer-nav-content-kaso {
    display: none;
}
}
.footer-nav-content-kaso a{
    color: #6F6F6F;
}
.footer-nav-content-kaso a:hover{
	color: #3DB6BE;
	transition: color 0.5s ease-out;
}
/*/////////プライバシーポリシー/////////*/
.privacy-context{
    font-size: 14px;
    font-weight: 400;
    margin: 70px 0px 58px;
}
@media (max-width:767px){
.privacy-context {
    font-size: 13px;
    margin: 30px 0px 60px;
}
}
.privacy-title {
    font-weight: 500;
    margin-top: 37px;
}
li.privacy-text-mt {
    margin-top: 37px;
}
ul.privacy-textbox {
    padding-left: 1em;
    text-indent: -1em;
}
ul.privacy-otoiawase {
    color: #000;
    text-align: right;
}
/*/////////利用規約/////////*/
.terms-of-service-context{
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 58px;
}
.terms-of-service-context_3{
    margin-bottom: 125px;
}
@media (max-width:767px){
.terms-of-service-context_3{
    margin-bottom: 58px;
}
}
@media (max-width:767px){
.terms-of-service-context,.terms-of-service-context_3{
    font-size: 13px;
}
}
.terms-of-service-title {
    font-size: 18px;
    font-weight: 500;
    border-left: solid 5px #FF4E34;;
    padding-left: 10px;
    margin-top: 47px;
}
@media (max-width:767px){
.terms-of-service-title {
    font-size: 16px;
    border-left: solid 3px #FF4E34;;
}
}
.terms-of-service-subtitle {
    font-weight: 500;
    margin-top: 37px;
}
@media (max-width:767px){
.terms-of-service-subtitle {
    margin-top: 25px;
}
}
li.terms-of-service-text-mt {
    margin-top: 37px;
}
ul.terms-of-service-textbox {
    padding-left: 1em;
    text-indent: -1em;
}

tr.company-line.company-line-on {
    border-bottom: solid 1px #E6E6E6;
}
div#tokusyo {
    padding-top: 100px;
}
.company_box-contents.company_box-contents_boxbox {
    margin-bottom: 0px;
}
/*フォーム*/
/*お問い合わせ*/
#mailform.mailform-mr-top{
	background-color: #fff;
	color: #000;
	width: 80%;
	margin: auto;
	margin-top: 80px;
    padding: 50px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
}
@media screen and (max-width:991px) {
#mailform.mailform-mr-top{
	width: 100%;
}
}
@media screen and (max-width:767px) {
#mailform.mailform-mr-top{
	margin-top: 30px;
    padding: 30px 10px 5px 10px;
}
}
.mailform-title {
    font-weight: 900;
    font-size: 20px;
    text-align: center;
	padding-bottom: 35px;
	border-bottom:dotted 1px #646464;
}
@media screen and (max-width:767px) {
.mailform-title {
    padding-bottom: 5px;
}
}
dl.contact-list {
    display: flex;
    justify-content: flex-start;
	border-bottom:dotted 1px #646464;
}
@media screen and (max-width:767px) {
dl.contact-list {
    flex-direction: column;
    align-items: flex-start;
}
}
dd.contact-list_content ul{
    margin-bottom: 0rem;
}
dl.contact-list dt{
    width: 30%;
    align-items: center;
	padding: 12px 0px 20px 20px;
	line-height: 1.3em;
}
@media screen and (max-width:767px) {
dl.contact-list dt{
    padding: 0px;
    width: 100%;
    font-size: 15px;
}
}
span.from-red {
    color: #FF4874;
    font-size: 13px;
}
@media screen and (max-width:767px) {
span.from-red {
    font-size: 11px;
}
}
dl.contact-list dd{
    margin-bottom: 0.5rem;
    padding: 10px;
    width: 70%;
}
@media screen and (max-width:767px) {
dl.contact-list dd{
    padding: 10px 0px;
    width: 100%;
    font-size: 13px;
}
}
input.small.yuubin_small {
    margin-bottom: 10px;
    height: 50px;
}
@media screen and (max-width:1199px) {
input.small.yuubin_small {
    height: 35px;
}
}
@media screen and (max-width:767px) {
input.small.yuubin_small {
    height: 30px;
}
}
span.form-jidou {
    margin-left: 10px;
    font-size: 13px;
}
input.from-medium {
    width: 70%;
    height: 50px;
}
@media screen and (max-width:1199px) {
input.from-medium {
    height: 35px;
}
}
@media screen and (max-width:767px) {
input.from-medium {
    width: 100%;
    height: 30px;
}
}
input.from-long {
    width: 100%;
    height: 50px;
}
@media screen and (max-width:1199px) {
input.from-long {
	height: 35px;
}
}
textarea.js-form-required.from-textarea {
    width: 100%;
}
@media screen and (max-width:991px) {
textarea.js-form-required.from-textarea {
    height: 150px;
}
}
input.contact-btn {
    border-radius: 50px;
    border: solid 1px #000;
    background-color: #000;
    color: #fff;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 18px;
    text-align: center;
    padding: 10px 15px;
    margin: 20px 15px 0px 15px;
    font-weight: 600;
}
@media screen and (max-width:1199px) {
input.contact-btn {
    font-size: 15px;
}
}
@media screen and (max-width:767px) {
input.contact-btn {
    margin: 10px 0px 10px;
	width: 100%;
}
}
/*フォーム*/
#mailform.mailform-mr-top{
	background-color: #fff;
	color: #000;
	width: 80%;
	margin: auto;
	margin-top: 80px;
    padding: 50px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500!important;
}
@media screen and (max-width:991px) {
#mailform.mailform-mr-top{
	width: 100%;
}
}
@media screen and (max-width:767px) {
#mailform.mailform-mr-top{
	margin-top: 30px;
    padding: 30px 10px 5px 10px;
}
}
.mailform-title {
    font-weight: 900;
    font-size: 20px;
    text-align: center;
	padding-bottom: 35px;
	border-bottom:dotted 1px #646464;
}
@media screen and (max-width:767px) {
.mailform-title {
    padding-bottom: 5px;
}
}
dl.contact-list {
    display: flex;
    justify-content: flex-start;
	border-bottom:dotted 1px #646464;
}
@media screen and (max-width:767px) {
dl.contact-list {
    flex-direction: column;
    align-items: flex-start;
}
}
dd.contact-list_content ul{
    margin-bottom: 0rem;
}
dl.contact-list dt{
    width: 30%;
    align-items: center;
	padding: 12px 0px 20px 20px;
	line-height: 1.3em;
    font-weight: 500!important;
}
@media screen and (max-width:767px) {
dl.contact-list dt{
    padding: 0px;
    width: 100%;
    font-size: 15px;
}
}
span.from-red {
    color: #FF4874;
    font-size: 13px;
}
@media screen and (max-width:767px) {
span.from-red {
    font-size: 11px;
}
}
dl.contact-list dd{
    margin-bottom: 0.5rem;
    padding: 10px;
    width: 70%;
}
@media screen and (max-width:767px) {
dl.contact-list dd{
    padding: 10px 0px;
    width: 100%;
    font-size: 13px;
}
}
input.small.yuubin_small {
    margin-bottom: 10px;
    height: 50px;
}
@media screen and (max-width:1199px) {
input.small.yuubin_small {
    height: 35px;
}
}
@media screen and (max-width:767px) {
input.small.yuubin_small {
    height: 30px;
}
}
span.form-jidou {
    margin-left: 10px;
    font-size: 13px;
}
input.from-medium {
    width: 70%;
    height: 50px;
}
@media screen and (max-width:1199px) {
input.from-medium {
    height: 35px;
}
}
@media screen and (max-width:767px) {
input.from-medium {
    width: 100%;
    height: 30px;
}
}
input.from-long {
    width: 100%;
    height: 50px;
}
@media screen and (max-width:1199px) {
input.from-long {
	height: 35px;
}
}
textarea.js-form-required.from-textarea {
    width: 100%;
}
@media screen and (max-width:991px) {
textarea.js-form-required.from-textarea {
    height: 150px;
}
}
input.contact-btn {
    border-radius: 50px;
    border: solid 1px #000;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    text-align: center;
    padding: 10px 15px;
    margin: 20px 15px 0px 15px;
    font-weight: 500!important;
}
@media screen and (max-width:1199px) {
input.contact-btn {
    font-size: 15px;
}
}
@media screen and (max-width:767px) {
input.contact-btn {
    margin: 10px 0px 10px;
	width: 100%;
}
}
.thanks-home {
    font-weight: 500;
    color: #FF4E34;
    width: 200px;
    flex-shrink: 0;
    background: #FFF;
    border: 2px solid #FF4E34;
    border-radius: 10px;
    margin: auto;
    text-align: center;
    padding: 13px 0px 0px;
}
.thanks-home a{
    color: #000;
}
p.recaptcha-text {
    margin-top: 20px;
    font-weight: 500;
}