@charset "utf-8";

@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("./fonts/NotoSansCJKjp-Regular.woff2") format("woff2"), url("./fonts/NotoSansCJKjp-Regular.woff") format("woff"), url("./fonts/NotoSansCJKjp-Regular.ttf") format("truetype"), url("./fonts/NotoSansCJKjp-Regular.eot") format("embedded-opentype");
}

@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url("./fonts/NotoSansCJKjp-Bold.woff2") format("woff2"), url("./fonts/NotoSansCJKjp-Bold.woff") format("woff"), url("./fonts/NotoSansCJKjp-Bold.ttf") format("truetype"), url("./fonts/NotoSansCJKjp-Bold.eot") format("embedded-opentype");
}

@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-display: swap;
  font-weight: 900;
  src: url("./fonts/NotoSansCJKjp-Black.woff2") format("woff2"), url("./fonts/NotoSansCJKjp-Black.woff") format("woff"), url("./fonts/NotoSansCJKjp-Black.ttf") format("truetype"), url("./fonts/NotoSansCJKjp-Black.eot") format("embedded-opentype");
}

body,
h1,
h2,
h4,
h5,
h6,
p,
section,
article,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
caption,
th,
td,
figure,
img,
form {
  margin: 0;
  padding: 0;
  border: none;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  list-style-type: none;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "メイリオ", Meiryo, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", -apple-system, BlinkMacSystemFont;
  box-sizing: border-box;
}

body {
  background: #fff;
  font-feature-settings: "palt";
  color: #333;
}

/*.main_bg{background:url(../images/bella_bg.jpg) top right no-repeat;background-attachment: fixed;}*/
html {
  height: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

textarea {
  font-size: 100%;
}

img {
  vertical-align: bottom;
}

hr {
  display: none;
}

a {
  text-decoration: none;
  color: #333;
  display: block;
}

a:hover {
  text-decoration: none;
  color: #ccc;
}

a img {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.wrapper {
  overflow: hidden;
}

.mt120 {
  margin-top: 120px;
}

/*top_img*/
.top_img {
  position: relative;
  margin-top: 120px;
}

.float_menu {
  width: 200px;
  position: absolute;
  top: 10%;
  left: 5%;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.7);
}

.float_menu a {
  margin-bottom: 10px;
}

.float_menu a:last-child {
  margin: 0;
}

.float_menu a img {
  width: 100%;
  height: auto;
}

/*header*/
#header {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 10;
}

#header h1 {
  width: 230px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
}

#header h1 img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.logo ul {
  display: inline-block;
  vertical-align: middle;
}

.logo ul li {
  line-height: 1.3;
}

.header_menu {
  background-color: #ffffff;
  color: #888888;
  display: block;
  margin: 1em 1%;
  overflow: hidden;
  z-index: 100;
}

.header_menu ul {
  margin: 0;
  padding: 0;
}

.header_menu ul li {
  display: inline-block;
  list-style-type: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.header_menu > ul > li > a > .caret {
  border-top: 4px solid #333;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
  display: inline-block;
  height: 0;
  width: 0;
  vertical-align: middle;
  -webkit-transition: color 0.1s linear;
  transition: color 0.1s linear;
}

.header_menu > ul > li > a {
  color: #333;
  display: block;
  line-height: 56px;
  padding: 0 10px;
  text-decoration: none;
}

.header_menu > ul > li:hover {
  background-color: #4d15be;
}

.header_menu > ul > li:hover > a {
  color: rgb(255, 255, 255);
}

.header_menu > ul > li:hover > a > .caret {
  border-top-color: rgb(255, 255, 255);
}

.header_menu > ul > li > div {
  background-color: #4d15be;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.055);
  display: none;
  margin: 0;
  opacity: 0;
  position: absolute;
  width: 165px;
  visibility: hidden;
  -webkit-transiton: opacity 0.2s;
  transition: opacity 0.2s;
}

.header_menu > ul > li:hover > div {
  display: block;
  opacity: 1;
  visibility: visible;
}

.header_menu > ul > li > div ul > li {
  display: block;
  border-right: 1px solid #4d15be;
  border-left: 1px solid #4d15be;
  border-bottom: 1px solid #fff;
}

.header_menu > ul > li > div ul > li > a {
  color: #ffffff;
  display: block;
  padding: 12px 24px;
  text-decoration: none;
}

.header_menu > ul > li > div ul > li:hover > a {
  background-color: rgba(255, 255, 255, 0.4);
}

section {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 0;
}

section h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 10px;
}

/*info*/
.info_pickup {
  display: flex;
}

.top_information {
  flex-grow: 1;
  height: 400px;
}

/*pickup*/
.pickup_img {
  width: 100%;
  max-width: 720px;
  overflow: hidden;
  margin: 10px 20px;
  position: relative;
}

.pickup_img img {
  width: 100%;
  height: auto;
}

.pickup_img .staff_name {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  padding: 10px 5px 0;
}

.pickup_img .caption {
  font-size: 16px;
  padding: 10px 5px 0;
  color: #fff;
}

.pickup_img .comment {
  font-size: 14px;
  padding: 10px 5px 0;
  color: #fff;
}

.pickup_img .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.pickup_img:hover .mask {
  opacity: 1;
}

/*中央バナー*/
.top_bnr_img {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  height: 150px;
  overflow: hidden;
}

.top_bnr_img img {
  width: 100%;
  height: auto;
}

.top_bnr {
  position: relative;
  margin-bottom: 45px;
}

.show_more {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 30px;
  padding-top: 60px;
  text-align: center;
  line-height: 30px;
  background: linear-gradient(180deg, rgb(255, 255, 255, 0) 0%, rgb(255, 255, 255, 1) 70%);
  cursor: pointer;
  transition: bottom 0.2s;
}

.active {
  background: none;
  bottom: -30px;
}

/*schedule*/
.main_todays_base {
  display: flex;
  flex-wrap: wrap;
}

.staff_img {
  width: calc((100% / 2) - 20px);
  overflow: hidden;
  margin: 10px;
  position: relative;
  box-sizing: border-box;
}

.staff_img img {
  width: 100%;
  height: auto;
}

.staff_img .staff_name {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  padding: 10px 5px 0;
}

.staff_img .caption {
  font-size: 16px;
  padding: 10px 5px 0;
  color: #fff;
}

.staff_img .comment {
  font-size: 14px;
  padding: 10px 5px 0;
  color: #fff;
}

.staff_img .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.staff_img:hover .mask {
  opacity: 1;
}

.worktime {
  background: #000;
  color: #fff;
  padding: 3px 10px;
}

/*.todays_cast {margin:0 10px 20px;}
.todays_cast .detail {background-color: #000;padding: 5px 0;}
.detail p {text-align: center;color: #fff;}*/

/*mistress*/
/*.top_mistress_flex {display: flex; flex-wrap: wrap;}
.staff_img {width:48% ;overflow:hidden;margin:10px;position:relative; box-sizing: border-box;}
.staff_img img {width: 100%; height: auto;}
.staff_img .staff_name {font-size: 20px; font-weight: bold; color: #fff; padding:10px 5px 0;}
.staff_img .caption {font-size:16px;padding: 10px 5px 0;color:#fff;}
.staff_img .comment {font-size:14px;padding: 10px 5px 0;color:#fff;}
.staff_img .mask {width:100%;height:100%;position:absolute;top:0;left:0;opacity:0;  background-color:rgba(0,0,0,0.8);-webkit-transition:all 0.2s ease;transition:all 0.2s ease;}
.staff_img:hover .mask {opacity:1;}*/

/*カードバナー*/
.top_credit {
  width: 100%;
  max-width: 980px;
  margin: 60px auto;
}

.top_credit img {
  width: 100%;
  height: auto;
}

/*メルマガバナー*/
.top_mailmaga {
  width: 100%;
  max-width: 980px;
  margin: 60px auto;
}

.top_mailmaga img {
  width: 100%;
  height: auto;
}

/*BellaRougeバナー*/
.top_bellarouge {
  width: 100%;
  max-width: 980px;
  margin: 60px auto;
}

.top_bellarouge img {
  width: 100%;
  height: auto;
}

/*top recruit*/
.top_recruit_flex {
  display: flex;
}

.top_recruit_flex figure {
  width: 100%;
  max-width: 600px;
  flex-basis: 50%;
}

.top_recruit_flex figure img {
  width: 100%;
  height: auto;
}

.top_recruit_flex p {
  padding: 0 10px;
  line-height: 1.6;
  flex-basis: 50%;
}

/*top mypage*/
.top_mypage_flex {
  display: flex;
}

.top_mypage_flex figure {
  width: 100%;
  max-width: 600px;
}

.top_mypage_flex figure img {
  width: 100%;
  height: auto;
}

.top_mypage_flex div {
  padding: 0 10px;
  line-height: 1.6;
}

.top_mypage_flex div a {
  font-size: 20px;
  font-weight: bold;
}

.top_mypage_flex div a img {
  vertical-align: baseline;
}

/*footer*/
footer {
  display: inline-block;
  width: 100%;
  background-color: #888;
  color: #fff;
  padding: 20px 0;
  margin-top: 60px;
}

footer a {
  color: #fff;
}

.content_01 {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.footer_logo {
  display: flex;
  flex-basis: 50%;
}

.footer_logo img {
  width: 140px;
}

.footer_logo i {
  font-style: normal;
  font-size: 16px;
}

.footer_logo .footer_tel {
  font-size: 28px;
  font-family: "HonMinSKok-M", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", Verdana, Roboto, "Droid Sans", serif;
}

.sns_icon {
  flex-basis: 30%;
  text-align: center;
}

.sns_icon a {
  display: inline-block;
  margin: 0 10px;
}

.footer_contact {
  flex-basis: 20%;
}

.footer_contact a {
  width: 120px;
  text-align: center;
  border: 2px solid;
  padding: 10px;
  border-radius: 30px;
}

.site_map {
  max-width: 1200px;
  margin: 0 auto;
  margin: 30px auto;
}

.site_map ul {
  display: flex;
  flex-wrap: wrap;
  width: 800px;
  margin: 0 auto;
}

.site_map ul li {
  width: 200px;
  margin-top: 30px;
  font-size: 18px;
}

.site_map ol li {
  margin-top: 5px;
  font-size: 14px;
}

.copyright {
  text-align: center;
}

.copyright a {
  display: inline-block;
}

/*中ページ*/
/*first play*/
.first_base h2 {
  width: 100%;
  height: 250px;
  background-color: #000;
  background: url(../images/title_bg_01_0406.jpg) no-repeat top right/cover;
  position: relative;
}

.first_base h2 p {
  color: #fff;
  font-size: 40px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  letter-spacing: 4px;
  text-shadow: 1px 1px 2px #333333, -1px 1px 2px #333333, 1px -1px 2px #333333, -1px -1px 2px #333333, 1px 0px 2px #333333, 0px 1px 2px #333333, -1px 0px 2px #333333, 0px -1px 2px #333333;
}

.first_base h2 i {
  font-style: normal;
  display: block;
  font-size: 14px;
}

.first_innner {
  width: 100%;
  max-width: 900px;
  margin: 30px auto 0;
}

.first_innner h3 {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  color: #98295b;
}

.first_innner ul {
  width: 360px;
  margin: 20px auto;
}

.first_innner ul li {
  text-align: left;
  font-size: 20px;
}

.first_prologue p {
  text-align: center;
  font-size: 14px;
  margin-top: 20px;
  letter-spacing: 1px;
}

.step_box {
  margin-top: 60px;
}

.step_box h4 {
  font-size: 26px;
  color: #4d15be;
  border-bottom: 1px solid #4d15be;
  margin-bottom: 10px;
}

.step_box p {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1px;
}

.step_box a {
  padding: 5px;
  border: 1px solid;
  width: 150px;
  text-align: center;
  margin-top: 10px;
}

.step_box a img {
  vertical-align: text-top;
}

#first_form {
  padding-top: 120px;
  margin-top: -120px;
}

.first_form {
  margin-top: 60px;
}

.first_form h4 {
  font-size: 26px;
  border-bottom: 1px solid;
  margin-bottom: 10px;
}

.first_form .red {
  color: #98295b;
}

.first_form .direct {
  width: 720px;
  margin: 10px 0;
  padding: 0;
}

.first_form .input_box1 {
  width: 568px;
  height: 34px;
  border: solid #999 1px;
  background-color: #fff;
  font-size: 14px;
  color: #666;
}

.first_form .input_box2 {
  width: 568px;
  height: 178px;
  border: solid #999 1px;
  background-color: #fff;
  font-size: 14px;
  color: #666;
}

.first_form .input_box3 {
  width: 250px;
  height: 34px;
  border: solid #999 1px;
  background-color: #fff;
  font-size: 14px;
  color: #666;
}

.first_form .direct_left {
  width: 150px;
  height: auto;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #666;
  text-align: left;
  float: left;
}

.first_form .direct_left p {
  width: 150px;
  font-size: 16px;
  line-height: 36px;
  color: #666;
  text-align: left;
  margin: 0;
  padding: 0;
}

.first_form .direct_right {
  width: 570px;
  height: auto;
  margin: 0;
  padding: 0;
  float: right;
}

.first_form .submit {
  width: 126px;
  height: 26px;
  margin: 0 5px 0 0;
  padding: 0;
  display: block;
  cursor: pointer;
  border: 0;
  float: left;
}

.first_form .reset {
  width: 126px;
  height: 26px;
  margin: 0 10px 0 0;
  padding: 0;
  display: block;
  cursor: pointer;
  border: 0;
  float: left;
}

.direct_thx {
  width: 720px;
  margin: 150px auto 180px auto;
  padding: 0;
}

/*NOTICE*/
.notice_base h2 {
  width: 100%;
  height: 250px;
  background-color: #000;
  background: url(../images/title_bg_02_0406.jpg) no-repeat top right/cover;
  position: relative;
}

.notice_base h2 p {
  color: #fff;
  font-size: 40px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  letter-spacing: 4px;
  text-shadow: 1px 1px 2px #333333, -1px 1px 2px #333333, 1px -1px 2px #333333, -1px -1px 2px #333333, 1px 0px 2px #333333, 0px 1px 2px #333333, -1px 0px 2px #333333, 0px -1px 2px #333333;
}

.notice_base h2 i {
  font-style: normal;
  display: block;
  font-size: 14px;
}

.notice_inner {
  width: 100%;
  max-width: 900px;
  margin: 30px auto 0;
}

.notice_inner h3 {
  background-color: #4d15be;
  color: #fff;
  text-align: center;
  height: 44px;
  font-size: 28px;
  font-weight: bold;
  width: 300px;
  line-height: 44px;
  margin: 0 auto 20px;
}

.notice_first {
  margin-bottom: 60px;
  text-align: center;
}

.notice_first p {
  text-align: center;
  line-height: 1.8;
  letter-spacing: 1px;
}

.notice_first span {
  color: #552280;
  font-size: 20px;
  font-weight: bold;
}

.notice_members {
  margin-bottom: 60px;
}

.notice_members p {
  text-align: center;
  line-height: 1.8;
  letter-spacing: 1px;
}

.limitation {
  margin-bottom: 60px;
}

.limitation p {
  text-align: center;
  line-height: 1.8;
  letter-spacing: 1px;
}

.limitation ul {
  width: 780px;
  height: 160px;
  margin: 20px auto;
}

.limitation ul li {
  display: inline-block;
  width: 380px;
  line-height: 1.8;
}

.others_title {
  text-align: center;
}

.notice_others table {
  width: 100%;
}

.notice_others td {
  border-bottom: 1px dashed #333;
  padding: 30px 0 30px 20px;
  line-height: 1.6;
  font-size: 14px;
  letter-spacing: 1px;
}

.notice_others a {
  padding: 5px;
  border: 1px solid;
  width: 150px;
  text-align: center;
  margin-top: 10px;
}

.notice_others a img {
  vertical-align: text-top;
}

/*HOWTO*/
.howto h2 {
  width: 100%;
  height: 250px;
  background-color: #000;
  background: url(../images/title_bg_03_0406.jpg) no-repeat top right/cover;
  position: relative;
}

.howto h2 p {
  color: #fff;
  font-size: 40px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  letter-spacing: 4px;
  text-shadow: 1px 1px 2px #333333, -1px 1px 2px #333333, 1px -1px 2px #333333, -1px -1px 2px #333333, 1px 0px 2px #333333, 0px 1px 2px #333333, -1px 0px 2px #333333, 0px -1px 2px #333333;
}

.howto h2 i {
  font-style: normal;
  display: block;
  font-size: 14px;
}

.choose_play {
  margin: 20px auto;
  text-align: center;
}

.standard_title p {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-top: 60px;
}

.standard {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.standard_box {
  width: 380px;
  height: auto;
  border: 1px solid;
  border-radius: 10px;
  margin-right: 10px;
}

.standard_box h3 {
  background-color: #4d15be;
  color: #fff;
  border-radius: 10px 10px 0 0;
  text-align: center;
  height: 55px;
  font-size: 20px;
  font-weight: bold;
}

.standard_box h3 i {
  font-style: normal;
  display: block;
  font-size: 14px;
}

.beginner h3,
.slave h3 {
  line-height: 55px;
}

.standard_con {
  padding: 10px;
}

.standard_box h4 {
  font-size: 18px;
  text-align: center;
  font-weight: bolder;
}

.standard_box li {
  margin-top: 5px;
}

.standard_box p,
.standard_box li {
  font-size: 16px;
  line-height: 1.4;
}

.standard_box p {
  margin: 15px 0;
}

.standard_box span {
  font-size: 14px;
}

.howto_red {
  color: #da0000;
}

.beginner {
  background: url(../images/howto_bg01.jpg) no-repeat no-repeat;
}

.order_m {
  background: url(../images/howto_bg02.jpg) no-repeat no-repeat;
}

.slave {
  background: url(../images/howto_bg03.jpg) no-repeat no-repeat;
}

.rookie_title p {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-top: 60px;
}

.rookie {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.rookie_box {
  width: 585px;
  height: auto;
  border: 1px solid;
  border-radius: 10px;
  margin-right: 10px;
}

.rookie_box h3 {
  background-color: #4d15be;
  color: #fff;
  border-radius: 10px 10px 0 0;
  text-align: center;
  height: 55px;
  font-size: 20px;
  line-height: 55px;
  font-weight: bold;
}

.rookie_box h4 {
  font-size: 18px;
  text-align: center;
  margin-top: 10px;
  font-weight: bolder;
}

.rookie_box p {
  padding: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.rookie_box a {
  background-color: #4d15be;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  width: 180px;
  margin: 10px auto;
}

.enquete_purple {
  color: #98295b;
  font-size: 14px !important;
}

.enquete_request {
  width: 1200px;
  margin: 0 auto 60px;
}

.rookie_training {
  background: url(../images/howto_bg04.jpg) no-repeat no-repeat;
  background-size: cover;
}

.rookie_m {
  background: url(../images/howto_bg05.jpg) no-repeat no-repeat;
  background-size: cover;
}

/*SYSTEM*/
.system h2 {
  width: 100%;
  height: 250px;
  background-color: #000;
  background: url(../images/title_bg_04_0406.jpg) no-repeat top right/cover;
  position: relative;
}

.system h2 p {
  color: #fff;
  font-size: 40px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  letter-spacing: 4px;
  text-shadow: 1px 1px 2px #333333, -1px 1px 2px #333333, 1px -1px 2px #333333, -1px -1px 2px #333333, 1px 0px 2px #333333, 0px 1px 2px #333333, -1px 0px 2px #333333, 0px -1px 2px #333333;
}

.system h2 i {
  font-style: normal;
  display: block;
  font-size: 14px;
}

.system_inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.system_other {
  margin: 30px auto;
  text-align: center;
}

.system_other_box {
  width: 250px;
  height: 70px;
  position: relative;
  display: inline-block;
  background: #e8e8e8;
  border: 1px solid;
  border-radius: 10px;
  margin-right: 12px;
}

.system_other_box:last-child {
  margin: 0;
}

.system_other_box p {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.system_other_box p i {
  font-style: normal;
  display: block;
  font-size: 12px;
}

.sys_red {
  color: #ff0000;
}

.course_list {
  width: 610px;
  margin: 0 auto 60px;
}

.course_list h3 {
  font-size: 28px;
  color: #4d15be;
  font-weight: bold;
  width: 380px;
  border-bottom: 1px solid #333;
  text-align: center;
  margin: 0 auto 5px;
}

.course_list p {
  text-align: center;
  font-size: 14px;
}

.course_list table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 20px;
}

.trial_course table tr:nth-child(even),
.rookie_course table tr:nth-child(even) {
  background-color: #eee;
}

.regular_course table tr:nth-child(odd) {
  background-color: #eee;
}

.course_list table td {
  text-align: center;
  height: 34px;
}

.border_dashed {
  border-bottom: 1px dashed #333;
}

/*.transport_cost {width: 340px; margin: 0 auto 60px;}
.transport_cost h3 {font-size: 28px; color: #4D15BE;font-weight: bold;width: 300px;border-bottom: 1px solid #333;text-align: center;margin: 0 auto 5px;}
.transport_cost li {line-height: 1.8;}*/
.transport_cost {
  width: 530px;
  margin: 0 auto;
}

.transport_cost_title {
  font-size: 28px;
  color: #4d15be;
  font-weight: bold;
  width: 300px;
  border-bottom: 1px solid #333;
  text-align: center;
  margin: 60px auto 5px;
}

.transport_cost .k_list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border-bottom: dotted 1px #666;
}

.transport_cost .k_list .li1 {
  width: 140px;
  margin: 0;
  padding: 0;
  font-size: 20px;
  color: #4d15be;
  line-height: 47px;
  float: left;
}

.transport_cost .k_list .li1_2 {
  width: 140px;
  margin: 0;
  padding: 5px 0 5px 0;
  font-size: 20px;
  color: #4d15be;
  line-height: 30px;
  float: left;
}

.transport_cost .k_list .li2 {
  width: 290px;
  margin: 0;
  padding: 0;
  font-size: 18px;
  color: #666;
  line-height: 47px;
  float: left;
}

.transport_cost .k_list .li2_2 {
  width: 290px;
  margin: 0;
  padding: 5px 0 5px 0;
  font-size: 18px;
  color: #666;
  line-height: 30px;
  float: left;
}

.transport_cost .k_list .li3 {
  width: 80px;
  margin: 0;
  padding: 0;
  font-size: 20px;
  color: #b0160a;
  line-height: 47px;
  float: left;
}

.transport_cost .k_list .li3_2 {
  width: 80px;
  margin: 0;
  padding: 5px 0 5px 0;
  font-size: 20px;
  color: #b0160a;
  line-height: 30px;
  float: left;
}

.transport_cost .read {
  width: 770px;
  font-size: 16px;
  line-height: 22px;
  color: #666;
  margin: 0 auto;
  padding: 20px 0 20px 0;
}

/*SCHEDULE*/
.schedule_base h2 {
  width: 100%;
  height: 250px;
  background-color: #000;
  background: url(../images/title_bg_05_0406.jpg) no-repeat top right/cover;
  position: relative;
}

.schedule_base h2 p {
  color: #fff;
  font-size: 40px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  letter-spacing: 4px;
  text-shadow: 1px 1px 2px #333333, -1px 1px 2px #333333, 1px -1px 2px #333333, -1px -1px 2px #333333, 1px 0px 2px #333333, 0px 1px 2px #333333, -1px 0px 2px #333333, 0px -1px 2px #333333;
}

.schedule_base h2 i {
  font-style: normal;
  display: block;
  font-size: 14px;
}

.schedule_inner {
  width: 100%;
  margin: 30px auto 0;
  max-width: 1200px;
}

.schedule_d_title {
  background-color: #4d15be;
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  padding: 3px 0;
  margin-top: 30px;
}

.schedule_inner .mistress_flex {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.schedule_inner .mistress_box {
  width: 180px;
  display: inline-block;
  margin: 0 5px 20px 0;
}

.schedule_inner .mistress_box .detail {
  background-color: #000;
  padding: 9px;
}

.schedule_inner .mistress_box .detail p {
  color: #fff;
}

.schedule_inner .mistress_box .detail p span {
  font-size: 14px;
}

.schedule_inner .next_prev {
  display: flex;
  justify-content: space-between;
}

.schedule_inner .next_prev p a {
  display: inline-block;
}

/*MISTRESS*/
.mistress_list h2 {
  width: 100%;
  height: 250px;
  background-color: #000;
  background: url(../images/title_bg_06_0406.jpg) no-repeat top right/cover;
  position: relative;
}

.mistress_list h2 p {
  color: #fff;
  font-size: 40px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  letter-spacing: 4px;
  text-shadow: 1px 1px 2px #333333, -1px 1px 2px #333333, 1px -1px 2px #333333, -1px -1px 2px #333333, 1px 0px 2px #333333, 0px 1px 2px #333333, -1px 0px 2px #333333, 0px -1px 2px #333333;
}

.mistress_list h2 i {
  font-style: normal;
  display: block;
  font-size: 14px;
}

.mistress_list .next_prev {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.mistress_flex {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
}

.mistress_box {
  display: inline-block;
  margin: 0 5px 20px 0;
  width: calc((100% / 2) - 10px);
}

.mistress_box .detail {
  background-color: #000;
  padding: 15px;
}

.mistress_box .detail p {
  color: #fff;
}

/*PROFILE*/
.profile_base h2 {
  width: 100%;
  height: 80px;
  background-color: #000;
  color: #fff;
  font-size: 24px;
  text-align: center;
  padding: 15px 0;
}

.profile_base h2 i {
  font-style: normal;
  display: block;
  font-size: 14px;
}

.profile_img {
  width: 100%;
  /*max-width: 1200px;*/
  max-width: 1020px;
  margin: 0 auto;
}

#slider {
  float: left;
  /*width: 610px;*/
  width: 510px;
}

#thumb_img {
  float: left;
  /*margin-left: 20px;*/
}

.mistress_data {
  float: left;
  /*margin-left: 20px;*/
  margin-top: 30px;
  width: 500px;
}

.mistress_data h3 {
  width: 100%;
  height: 44px;
  background-color: #4d15be;
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  line-height: 44px;
  margin-bottom: 10px;
}

.mistress_data p {
  line-height: 1.8;
  font-size: 18px;
  margin-left: 20px;
}

.name_x_row {
  display: flex;
  gap: 40px;
  align-items: center;
}

.name2 {
  font-size: 32px;
}
.twi_iframe {
  font-size: 0;
}
.twi_iframe iframe {
  transform: scale(1.1);
}

.slider-nav {
  /*width: 400px;*/
  width: 510px;
  display: flex;
  flex-wrap: wrap;
}

.slider-nav figure {
  margin: 0 10px 10px 0;
  cursor: pointer;
}

.slider-nav .slick-track {
  transform: unset !important;
}

.slider-nav .slick-list {
  padding: 0 !important;
}

.schedule_box {
  width: 100%;
  /*max-width: 1200px;*/
  max-width: 1020px;
  margin: 60px auto;
}

.schedule_box h3 {
  width: 280px;
  height: 44px;
  background-color: #4d15be;
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  line-height: 44px;
  margin-bottom: 10px;
  margin-right: 10px;
}

.schedule_box h3,
.schedule_box p {
  display: inline-block;
}

.schedule_box table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.schedule_box table,
.schedule_box td,
.schedule_box th {
  border: 1px #eee solid;
}

.schedule_box table td {
  text-align: center;
  padding: 15px 0;
  width: calc(100% / 7);
}

.schedule_box table td i {
  margin: 0 10px;
}

.sche_month {
  background: #eee;
  font-size: 1.2em;
  padding: 0 !important;
  font-weight: bold;
}

.schedule_box table .weektitle {
  background-color: #ffebff;
}

.schedule_box table .weekred {
  color: #ff0000;
}

.schedule_box table .weekblue {
  color: #0070c0;
}

.profile_right {
  width: 100%;
  /*max-width: 1200px;*/
  max-width: 1020px;
  margin: 60px auto;
}

.profile_right h3 {
  width: 280px;
  height: 44px;
  background-color: #4d15be;
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  line-height: 44px;
  margin-bottom: 10px;
  margin-right: 10px;
}

.profile_right p {
  line-height: 1.8;
}

.twitter_flex {
  display: flex;
  gap: 30px;
}

.mistress_comment,
.shop_comment {
  flex-basis: calc(50% - 15px);
}

.qa {
  margin-bottom: 30px;
}

.qa p {
  display: inline-block;
  padding: 10px;
  border-top: 1px solid #eee;
  width: 500px;
}

.question {
  color: #435cff;
  font-weight: bold;
}

.answer {
  color: #ff4343;
  font-weight: bold;
}

.prof_blog {
  width: 345px;
  margin-top: 30px;
}

.prof_blog p {
  background: #4d15be;
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.prof_direct_mail a {
  display: inline-block;
  color: #fff;
  background: #4d15be;
  width: 280px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}

.prof_direct_mail a:hover {
  opacity: 0.6;
}

.prof_direct_mail a img {
  vertical-align: text-bottom;
  margin-right: 5px;
}

/*OPTION*/
.option_base h2 {
  width: 100%;
  height: 250px;
  background-color: #000;
  background: url(../images/title_bg_07_0406.jpg) no-repeat top right/cover;
  position: relative;
}

.option_base h2 p {
  color: #fff;
  font-size: 40px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  letter-spacing: 4px;
  text-shadow: 1px 1px 2px #333333, -1px 1px 2px #333333, 1px -1px 2px #333333, -1px -1px 2px #333333, 1px 0px 2px #333333, 0px 1px 2px #333333, -1px 0px 2px #333333, 0px -1px 2px #333333;
}

.option_base h2 i {
  font-style: normal;
  display: block;
  font-size: 14px;
}

.option_base ul {
  width: 100%;
  max-width: 630px;
  margin: 30px auto 0;
}

.option_base .li2_2 a {
  display: inline-block;
}

.option_base .li2_2 a img,
.li2_3 a img {
  vertical-align: baseline;
  margin-left: 3px;
}

.option_base .title {
  width: 600px;
  height: auto;
  margin: 0;
  padding: 0;
  border-bottom: dotted 1px #666;
}

.op_list {
  margin: 0;
  padding: 0;
  display: flex;
}

.notice {
  margin: 10px 0 10px 0;
  padding: 0 0 0 0;
  color: #b0160a;
  font-size: 14px;
}

.op_list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.op_list ul li {
  margin: 0;
  padding: 0;
  float: left;
}

.op_list .li1_2 {
  margin: 0;
  padding: 5px 0 5px 0;
  font-size: 20px;
  color: #5c0788;
  line-height: 30px;
  flex-basis: 220px;
  border-bottom: dotted 1px #666;
}

.op_list .li1_3 {
  margin: 0;
  padding: 5px 0 5px 0;
  font-size: 20px;
  color: #5c0788;
  line-height: 30px;
  flex-basis: 220px;
}

.op_list .li2_2 {
  margin: 0;
  padding: 5px 0 5px 0;
  font-size: 16px;
  color: #666;
  line-height: 30px;
  flex-basis: 300px;
  border-bottom: dotted 1px #666;
}

.op_list .li2_3 {
  margin: 0;
  padding: 5px 0 5px 0;
  font-size: 16px;
  color: #666;
  line-height: 30px;
  flex-basis: 230px;
  border-bottom: dotted 1px #666;
}

.op_list .li3_2 {
  flex-basis: 110px;
  margin: 0;
  padding: 5px 0 5px 0;
  font-size: 20px;
  color: #253a71;
  line-height: 30px;
  text-align: right;
  border-bottom: dotted 1px #666;
}

.op_list .li3_3 {
  flex-basis: 180px;
  margin: 0;
  padding: 5px 0 5px 0;
  font-size: 20px;
  color: #253a71;
  line-height: 30px;
  text-align: right;
  border-bottom: dotted 1px #666;
}

.op_list span {
  font-size: 14px;
}

.option_base .k_list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border-bottom: dotted 1px #666;
}

.option_base .k_list ul li {
  margin: 0;
  padding: 0;
  float: left;
}

.option_base .k_list .li1 {
  width: 140px;
  margin: 0;
  padding: 0;
  font-size: 20px;
  color: #5c0788;
  line-height: 47px;
  float: left;
}

.option_base .k_list .li1_2 {
  width: 140px;
  margin: 0;
  padding: 5px 0 5px 0;
  font-size: 20px;
  color: #5c0788;
  line-height: 30px;
  float: left;
}

.option_base .k_list .li2 {
  width: 290px;
  margin: 0;
  padding: 0;
  font-size: 18px;
  color: #666;
  line-height: 47px;
  float: left;
}

.option_base .k_list .li2_2 {
  width: 290px;
  margin: 0;
  padding: 5px 0 5px 0;
  font-size: 18px;
  color: #666;
  line-height: 30px;
  float: left;
}

.option_base .k_list .li3 {
  width: 170px;
  margin: 0;
  padding: 0;
  font-size: 20px;
  color: #253a71;
  line-height: 47px;
  float: left;
}

.option_base .k_list .li3_2 {
  width: 170px;
  margin: 0;
  padding: 5px 0 5px 0;
  font-size: 20px;
  color: #253a71;
  line-height: 30px;
  float: left;
}

.brand_new {
  margin: 0;
  padding: 5px 0 5px 0;
  font-size: 20px;
  color: #5c0788;
  line-height: 30px;
}

/*HOTELLIST*/
.hotel_base h2 {
  width: 100%;
  height: 250px;
  background-color: #000;
  background: url(../images/title_bg_08_0406.jpg) no-repeat top right/cover;
  position: relative;
}

.hotel_base h2 p {
  color: #fff;
  font-size: 40px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  letter-spacing: 4px;
  text-shadow: 1px 1px 2px #333333, -1px 1px 2px #333333, 1px -1px 2px #333333, -1px -1px 2px #333333, 1px 0px 2px #333333, 0px 1px 2px #333333, -1px 0px 2px #333333, 0px -1px 2px #333333;
}

.hotel_base h2 i {
  font-style: normal;
  display: block;
  font-size: 14px;
}

.hotel_base .title {
  width: auto;
  height: auto;
  margin: 60px 5px 10px 0;
  padding: 5px 15px;
  display: inline-block;
  background: #4d15be;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.travel_cost {
  width: 530px;
  margin: 0 auto;
}

.travel_cost_title {
  font-size: 28px;
  color: #4d15be;
  font-weight: bold;
  width: 300px;
  border-bottom: 1px solid #333;
  text-align: center;
  margin: 60px auto 5px;
}

.hotel_base .k_list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border-bottom: dotted 1px #666;
}

.hotel_base .k_list .li1 {
  width: 140px;
  margin: 0;
  padding: 0;
  font-size: 20px;
  color: #4d15be;
  line-height: 47px;
  float: left;
}

.hotel_base .k_list .li1_2 {
  width: 140px;
  margin: 0;
  padding: 5px 0 5px 0;
  font-size: 20px;
  color: #4d15be;
  line-height: 30px;
  float: left;
}

.hotel_base .k_list .li2 {
  width: 290px;
  margin: 0;
  padding: 0;
  font-size: 18px;
  color: #666;
  line-height: 47px;
  float: left;
}

.hotel_base .k_list .li2_2 {
  width: 290px;
  margin: 0;
  padding: 5px 0 5px 0;
  font-size: 18px;
  color: #666;
  line-height: 30px;
  float: left;
}

.hotel_base .k_list .li3 {
  width: 80px;
  margin: 0;
  padding: 0;
  font-size: 20px;
  color: #b0160a;
  line-height: 47px;
  float: left;
}

.hotel_base .k_list .li3_2 {
  width: 80px;
  margin: 0;
  padding: 5px 0 5px 0;
  font-size: 20px;
  color: #b0160a;
  line-height: 30px;
  float: left;
}

.hotel_base .read {
  width: 770px;
  font-size: 16px;
  line-height: 22px;
  color: #666;
  margin: 0 auto;
  padding: 20px 0 20px 0;
}

.hotel_list {
  width: 770px;
  margin: 0 auto;
  padding: 0;
}

.hotel_list ul {
  width: 770px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.hotel_list li {
  margin: 0;
  padding: 0;
  float: left;
}

.hotel_list .name {
  width: 260px;
  padding: 0;
  margin: 0 25px 0 0;
  font-size: 18px;
  font-weight: bold;
  color: #666;
  line-height: 1.5;
}

.hotel_list .name span {
  font-weight: normal;
  font-size: 14px;
  display: block;
}

.hotel_list .address {
  width: 234px;
  padding: 0;
  margin: 0 25px 0 0;
  font-size: 16px;
  color: #666;
  line-height: 28px;
}

.hotel_list .hp,
.hotel_list .map {
  padding: 3px 5px;
  margin: 0 10px 0 0;
  border: 1px solid;
}

.hotel_list .tel {
  width: 104px;
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: #666;
  line-height: 28px;
}

.hotel_list .free_icon {
  background: #5c0788;
  color: #fff;
  font-size: 12px;
  padding: 3px 10px;
  margin: 0 10px 0 0;
  border-radius: 13px;
}

.hotel_list .discount_icon {
  background: #b0160a;
  color: #fff;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 13px;
}

.hotel_list div {
  margin: 0;
  padding: 15px 0;
  list-style-type: none;
  border-bottom: dotted 1px #666;
  box-sizing: border-box;
}

/*LINK*/
.link_base h2 {
  width: 100%;
  height: 250px;
  background-color: #000;
  background: url(../images/title_bg_09_0406.jpg) no-repeat top right/cover;
  position: relative;
}

.link_base h2 p {
  color: #fff;
  font-size: 40px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  letter-spacing: 4px;
  text-shadow: 1px 1px 2px #333333, -1px 1px 2px #333333, 1px -1px 2px #333333, -1px -1px 2px #333333, 1px 0px 2px #333333, 0px 1px 2px #333333, -1px 0px 2px #333333, 0px -1px 2px #333333;
}

.link_base h2 i {
  font-style: normal;
  display: block;
  font-size: 14px;
}

.link_base h3 {
  width: auto;
  height: auto;
  margin: 30px 5px 10px 0;
  padding: 5px 15px;
  display: inline-block;
  background: #4d15be;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.link_box {
  width: 470px;
  font-size: 16px;
  margin: 0 auto 0 auto;
  padding: 0;
}

.link_box .left_box {
  width: 470px;
  height: auto;
  margin: 0 auto;
  padding: 0;
}

.link_box .left_box .read {
  width: 468px;
  font-size: 16px;
  color: #666;
  line-height: 26px;
  margin: 20px auto;
  padding: 0 0 20px 0;
  border-bottom: dotted 1px #999;
}

.link_box .left_box .size_txt {
  font-size: 16px;
  color: #666;
  line-height: 26px;
  margin: 0;
  padding: 0;
}

.link_box .left_box .banner {
  width: 468px;
  font-size: 16px;
  color: #666;
  line-height: 26px;
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
  border-bottom: dotted 1px #999;
}

.link_box .left_box .banner2 {
  width: 468px;
  font-size: 16px;
  color: #666;
  line-height: 26px;
  margin: 0 0 50px 0;
  padding: 0 0 20px 0;
  border-bottom: dotted 1px #999;
}

.link_box .left_box .banner3 {
  width: 468px;
  height: 60px;
  line-height: 60px;
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
  border-bottom: dotted 1px #999;
}

.link_box .right_box {
  width: 480px;
  height: 900px;
  margin: 0;
  padding: 0;
  float: right;
}

.link_read {
  text-align: center;
  line-height: 30px;
  margin: 0;
  padding: 0;
  color: #666;
}

.link_line {
  width: 700px;
  margin: 10px 0 20px 65px;
  padding: 0 0 0 0;
  border-bottom: solid 1px #aaa;
}

.font_white {
  color: #ffffff;
}

.linktitle01 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.linkbox_main {
  width: 700px;
  height: auto;
  margin: 0 0 0 13px;
  padding: 0;
}

.link_title_mutual,
.information_title_link {
  text-align: center;
}

/*BLOG*/
/*.blogs h2 {width: 100%; height: 250px; background-color: #000; background: url(../images/title_bg_12_0406.jpg) no-repeat top right/cover; position: relative;}
.blogs h2 p {
  color: #fff;
  font-size: 40px;
  text-align: center;
  position: absolute;
  top: 50%;
  left:50%;
  -webkit-transform : translate(-50%,-50%);
  transform : translate(-50%,-50%);
  letter-spacing: 4px;
  text-shadow    : 
       1px  1px 2px #333333,
      -1px  1px 2px #333333,
       1px -1px 2px #333333,
      -1px -1px 2px #333333,
       1px  0px 2px #333333,
       0px  1px 2px #333333,
      -1px  0px 2px #333333,
       0px -1px 2px #333333; 
}
.blogs h2 i {font-style: normal; display: block; font-size:14px;}
.blog_banners {width: 1200px; margin: 30px auto;}
.blog_banners a {display: inline-block; margin: 20px;}*/

/*メルマガ*/
.mailmaga_base h2 {
  width: 100%;
  height: 250px;
  background-color: #000;
  background: url(../images/title_bg_10_0406.jpg) no-repeat top right/cover;
  position: relative;
}

.mailmaga_base h2 p {
  color: #fff;
  font-size: 40px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  letter-spacing: 4px;
  text-shadow: 1px 1px 2px #333333, -1px 1px 2px #333333, 1px -1px 2px #333333, -1px -1px 2px #333333, 1px 0px 2px #333333, 0px 1px 2px #333333, -1px 0px 2px #333333, 0px -1px 2px #333333;
}

.mailmaga_base h2 i {
  font-style: normal;
  display: block;
  font-size: 14px;
}

.mailmaga_innner {
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
}

.mailmaga_innner h3 {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}

.mailmaga_innner h3 span {
  color: #98295b;
}

.mailmaga_innner p {
  text-align: center;
}

.mailmaga_innner ul {
  background: #e8e8e8;
  width: 510px;
  padding: 20px;
  border-radius: 10px;
  margin: 0 auto;
  border: 1px solid;
}

.mailmaga_innner ul li {
  font-size: 22px;
  font-weight: bold;
}

.mail_btn {
  text-align: center;
  margin: 30px 0;
}

.btn-square {
  display: inline-block;
  padding: 1em 1.5em;
  text-decoration: none;
  font-size: 26px;
  font-weight: bold;
  background: #4d15be;
  /*ボタン色*/
  color: #fff;
  border-bottom: solid 4px #210950;
  border-radius: 3px;
}

.btn-square:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  /*下に動く*/
  border-bottom: none;
  /*線を消す*/
}

.mail_desc {
  width: 700px;
  margin: 0 auto 30px;
}

.mail_desc p {
  text-align: left;
}

.mail_box {
  width: 700px;
  margin: 40px auto 0;
}

.mail_box a {
  font-size: 14px;
}

/*アンケート*/
.enquete_base h2 {
  width: 100%;
  height: 250px;
  background-color: #000;
  background: url(../images/title_bg_11_0406.jpg) no-repeat top right/cover;
  position: relative;
}

.enquete_base h2 p {
  color: #fff;
  font-size: 40px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  letter-spacing: 4px;
  text-shadow: 1px 1px 2px #333333, -1px 1px 2px #333333, 1px -1px 2px #333333, -1px -1px 2px #333333, 1px 0px 2px #333333, 0px 1px 2px #333333, -1px 0px 2px #333333, 0px -1px 2px #333333;
}

.enquete_base h2 i {
  font-style: normal;
  display: block;
  font-size: 14px;
}

.enquete {
  width: 1040px;
  margin: 0 auto 0 auto;
  padding: 20px 0;
  border-bottom: dotted 1px #999;
}

.enquete_inner .enquete_f {
  width: 1040px;
  margin: 0 auto 0 auto;
  padding: 20px 0;
}

.enquete_inner .red {
  font-size: 14px;
  color: #972659;
}

.enquete_inner .input_box1 {
  width: 100px;
  height: 20px;
  border: solid #999 1px;
  background-color: #fff;
  font-size: 14px;
  color: #666;
}

.enquete_inner .input_box5 {
  width: 80px;
  height: 20px;
  border: solid #999 1px;
  background-color: #fff;
  font-size: 14px;
  color: #666;
}

.enquete_inner .input_box2 {
  width: 668px;
  height: 34px;
  border: solid #999 1px;
  background-color: #fff;
  font-size: 14px;
  color: #666;
}

.enquete_inner .input_box3 {
  width: 668px;
  height: 90px;
  border: solid #999 1px;
  background-color: #fff;
  font-size: 14px;
  color: #666;
}

.enquete_inner .input_box4 {
  width: 668px;
  height: 178px;
  border: solid #999 1px;
  background-color: #fff;
  font-size: 14px;
  color: #666;
}

.enquete_inner .enquete_left {
  width: 370px;
  height: auto;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #666;
  text-align: left;
  float: left;
}

.enquete_inner .enquete_left p {
  width: 370px;
  font-size: 16px;
  /*line-height: 36px;*/
  color: #666;
  text-align: left;
  margin: 0;
  padding: 0;
}

.enquete_inner .enquete_right {
  width: 670px;
  height: auto;
  margin: 0;
  padding: 0;
  float: right;
}

.enquete_inner .enquete_right p {
  width: 670px;
  font-size: 16px;
  color: #666;
  text-align: left;
  margin: 0;
  padding: 0;
}

.enquete_inner .submit {
  width: 126px;
  height: 26px;
  margin: 0 5px 0 0;
  padding: 0;
  display: block;
  cursor: pointer;
  border: 0;
  float: left;
}

.enquete_inner .reset {
  width: 126px;
  height: 26px;
  margin: 0 10px 0 0;
  padding: 0;
  display: block;
  cursor: pointer;
  border: 0;
  float: left;
}

.enquete_inner .enquete_thx {
  width: 500px;
  margin: 130px auto 180px auto;
  padding: 0;
}

@media screen and (max-width: 1160px) {
  .info_base {
    display: flex;
  }

  .logo {
    max-width: 210px;
  }

  .logo ul li {
    font-size: 12px;
  }

  .header_menu ul li {
    font-size: 14px;
  }

  #header h1 {
    width: 150px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
  }

  #header h1 img {
    height: 50px;
  }
}
