@charset "UTF-8";

* { outline: transparent; }

html, body { padding: 0; margin: 0; }

body {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro W6", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  color: #000;
  line-height: 1.8;  /* ←この行を追加（1.8は程よい余裕） */
}

a {
  color: #000000;
  text-decoration: none;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

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

a:focus { outline: none; text-decoration: none; }

ul { margin: 0; padding: 0; }

ul li { list-style: none; }

h1, h2, h3 {
  line-height: 1.4;
  font-weight: 700;
  margin: 0;
}

p {
  margin: 0px 0px 15px 0px;
  padding: 0;
  font-family: Hiragino Kaku Gothic Pro W3;
}

p:last-child { margin-bottom: 0px; }

input[type="submit"] {
  border: none;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

table { border-collapse: collapse; width: 100%; }

.clearfix:after {
  clear: both;
  content: ' ';
  display: block;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}

.clearfix { display: inline-block; }

* html .clearfix { height: 1%; }

.clearfix { display: block; }

.container {
  max-width: 1000px;
  padding: 0px 15px;
  margin: 0 auto;
}

.page-header {
  margin: 0;
  padding: 0;
  border: none;
}

.nav-icon {
  width: 40px;
  -webkit-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  background: #fd688f;
  padding: 10px 5px 5px;
  border-radius: 3px;
}

.nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 70%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 15%;
  -webkit-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.nav-icon span:nth-child(1) { top: 7px; }

.nav-icon span:nth-child(2), .nav-icon span:nth-child(3) {
  top: 15px;
}

.nav-icon span:nth-child(4) { top: 23px; }

.nav-icon { text-align: center; }

.nav-icon p {
  font-size: 10px;
  margin-top: 20px;
  color: #fff;
}

.sidebar {
  width: 25%;
  float: left;
  padding: 10px 1%;
  background-color: #fdeef0;
}

.ctnContent {
  margin-left: 3%;
  float: right;
  width: -webkit-calc(70%);
  width: calc(70%);
}

.btn-top {
  background: url("../images/icon/icon-ptop.png");
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  border: medium none;
  bottom: 90px;
  cursor: pointer;
  display: none;
  height: 75px;
  position: fixed;
  right: -webkit-calc((100% - 1000px)/2 - 120px);
  right: calc((100% - 1000px)/2 - 120px);
  width: 75px;
  z-index: 9999;
}

.lp-image {
  text-align: center;
  margin: 24px auto;
  max-width: 400px;
}

.lp-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.lp-image figcaption {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

/* ── lp-list のマーカーを必ず表示するパッチ ── */
.lp-list {
  /* 既存の ul { padding:0 } の影響を打ち消してインデントを確保 */
  padding-left: 1.6em !important;
  margin: 1.2em 0 !important;
  list-style-position: outside !important;
}

/* li 側にマーカーを指定してグローバルの `ul li { list-style: none }` を上書き */
.lp-list > li {
  display: list-item !important;
  list-style-type: disc !important;
  /* 黒丸 */
  margin: .5em 0;
  line-height: 1.6;
}

.voice-heading {
  font-size: 18px;
  /* 通常の h4 より少し大きめ */
  font-weight: 700;
  margin: 1.5em 0 0.8em;
  padding: 6px 12px;
  border-radius: 4px;
}

.voice-heading.before { background-color: #fce4e4; /* 薄い赤系 */
  color: #d25a77; }

.voice-heading.after { background-color: #e6f5e6; /* 薄い緑系 */
  color: #2c7a2c; }

.voice-message {
  font-size: 16px;
  font-weight: 600;
  color: #D25A77;
  /* 強調のピンク系（既存カラーと調和） */
  background: #FFF5F7;
  /* 薄いピンク背景で目立たせる */
  border-left: 5px solid #D25A77;
  padding: 10px 15px;
  margin: 10px 0 20px;
  line-height: 1.6;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
.voice-message { font-size: 15px; padding: 8px 12px; }
}

@media screen and (max-width: 1300px) and (min-width: 768px){
.btn-top {
  right: 20px;
  width: 65px;
  height: 65px;
  bottom: 20px;
}
}

@media screen and (max-width: 767px){
.sidebar {
  float: none;
  width: -webkit-calc(100% - 20px);
  width: calc(100% - 20px);
  padding: 10px;
}
.ctnContent {
  margin-left: 0px;
  float: none;
  width: 100%;
}
.btn-top {
  width: 55px;
  height: 55px;
  right: 20px;
  bottom: 20px;
}
}

.top_header { padding: 12px 0; }

.top_header .logo { float: left; }

.top_header .logo img { max-width: 100%; }

.top_header .despcription {
  float: left;
  color: #ED909A;
  margin-bottom: 0;
  margin-top: 5px;
  margin-left: 26px;
  margin: 9px 0 0 26px;
  font-size: 12px;
}

.inquiry { float: right; padding-top: 8px; }

.inquiry li { display: inline-block; margin-left: 72px; }

.inquiry li:first-child { margin-left: 0; }

.inquiry li a {
  font-size: 14px;
  display: block;
  line-height: 1;
}

.inquiry li a img { margin-right: 8px; vertical-align: bottom; }

.nav-menu { background-color: #ED909A; }

.nav-menu .gnavi li {
  width: 20%;
  float: left;
  text-align: center;
}

.nav-menu .gnavi li a {
  padding: 18px 0 8px;
  display: block;
  color: #fff;
  font-size: 15px;
  position: relative;
  font-family: "Hiragino Kaku Gothic Pro W3";
  font-weight: 600;
}

.nav-menu .gnavi li a:before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-menu .gnavi li a:after {
  content: "";
  width: 1px;
  height: 28px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 0;
  background-color: #fff;
}

.nav-menu .gnavi li a:hover:before { top: -20px; }

.nav-menu .gnavi li:nth-child(1) a:before {
  background: url(../images/icon/nav-icon_01.png) center center no-repeat;
  width: 30px;
  height: 30px;
}

.nav-menu .gnavi li:nth-child(2) a:before {
  background: url(../images/icon/nav-icon_02.png) center center no-repeat;
  width: 30px;
  height: 30px;
}

.nav-menu .gnavi li:nth-child(3) a:before {
  background: url(../images/icon/nav-icon_03.png) center center no-repeat;
  width: 30px;
  height: 30px;
}

.nav-menu .gnavi li:nth-child(4) a:before {
  background: url(../images/icon/nav-icon_04.png) center center no-repeat;
  width: 30px;
  height: 30px;
}

.nav-menu .gnavi li:last-child a:before {
  background: url(../images/icon/nav-icon_05.png) center center no-repeat;
  width: 30px;
  height: 30px;
}

.nav-menu .gnavi li:last-child a:after { content: ""; background: transparent; }

.nav-menu_sp { background: #ED909A; margin-top: 15px; }

.nav-menu_sp ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.nav-menu_sp ul li {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  font-size: 12px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.nav-menu_sp ul li:nth-child(1) { width: 30.333%; }

.nav-menu_sp ul li:nth-child(2) { width: 39.333%; }

.nav-menu_sp ul li:nth-child(3) { width: 30.333%; }

.nav-menu_sp ul li a {
  color: #fff;
  position: relative;
  display: block;
  text-align: center;
  padding: 18px 5px 8px;
}

.nav-menu_sp ul li a:after {
  content: "";
  width: 1px;
  height: 28px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 0;
  background-color: #fff;
}

.nav-menu_sp ul li:last-child a:after { content: ""; background: transparent; }

.nav-menu_sp ul li a:before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-menu_sp ul li:nth-child(1) a:before {
  background: url(../images/icon/nav-icon_01.png) center center no-repeat;
  width: 20px;
  height: 30px;
}

.nav-menu_sp ul li:nth-child(2) a:before {
  background: url(../images/icon/nav-icon_02.png) center center no-repeat;
  width: 30px;
  height: 30px;
}

.nav-menu_sp ul li:last-child a:before {
  background: url(../images/icon/nav-icon_05.png) center center no-repeat;
  width: 29px;
  height: 29px;
}

@media screen and (min-width: 768px){
.nav-icon { display: none; }
.gnavi { display: block !important; }
.only-sp { display: none; }
}

@media screen and (max-width: 767px){
.only-sp { display: block; }
.top_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0px;
  position: relative;
}
.top_header .site-info { width: 75%; }
.top_header .logo { /* float: none; */; }
.top_header .logo img {
  max-width: 100%;
}
.top_header .despcription { margin: 0px; }
.inquiry {
  width: 100%;
  padding: 0px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.inquiry li { display: block; margin: 0 0 10px 0px; }
.inquiry li img { display: none; }
.nav-icon {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 0px;
}
.nav-menu {
  position: absolute;
  z-index: 999;
  width: 100%;
}
.nav-menu .gnavi { display: none; }
.nav-menu .gnavi li {
  display: block;
  border-bottom: 1px solid #eee;
  padding: 0;
  width: 100%;
  float: none;
}
.nav-menu .gnavi li a { padding: 20px 10px; font-size: 14px; }
.nav-menu .gnavi li a:before { content: none; }
.nav-menu .gnavi li a:after { content: none; }
}

.banner { background-color: #F0F0E1; }

.banner .container { position: relative; line-height: 0; }

.banner .txtBanner {
  color: #fff;
  font-weight: 500;
  text-shadow: 
    0 0 2px #F78181,
    0 0 4px #F78181;
  left: 7%;
  position: absolute;
  top: 17.0658682635%;
}

.banner .txtBanner p {
  font-size: 46px;
  margin-bottom: 0;
  line-height: 1.2;
}

.banner img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.ctnContent { margin-bottom: 30px; }

@media screen and (min-width: 768px) and (max-width: 1024px) {
  /* タブレット用のスタイル */
.banner .container { padding: 0px; }
.banner .txtBanner p {
    font-size: 38px;
}
}

@media screen and (max-width: 767px){
  /* スマートフォン用のスタイル */
.banner .container { padding: 0px; }
.banner .txtBanner p {
    font-size: 26px;
}
}

.ctn_main.ctn_main_pages { margin-top: 37px; }

.section_tuner { margin-bottom: 30px; }

.section_tuner .cntFind table { width: 100%; margin-bottom: 20px; }

.section_tuner .cntFind table tbody { border-collapse: separate; }

.section_tuner .cntFind table th { font-weight: 400; background: #f3f3e0; }

.section_tuner .cntFind table th, .section_tuner .cntFind table td {
  text-align: left;
  padding: 7px 10px;
  border-bottom: 1px solid #ccc;
}

.section_tuner .cntFind table tr:first-child th, .section_tuner .cntFind table tr:first-child td {
  border-top: 1px solid #ccc;
}

.section_tuner .cntFind .tbl-profile { margin-bottom: 10px; }

#ac_menu dt {
  color: #0066FF;
  font-weight: bold;
  background : url(../img/Q1.png) no-repeat;
  background-position: 3px 50%;
  font-size: 16px;
  line-height: 2.3em;
  padding: 0 25px 0 25px;
  margin-top: 0;
  margin-bottom: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  position: relative;
}

#ac_menu dd {
  background : url(../img/A1.png) no-repeat;
  background-position: 2px 2px;
  font-size: 15px;
  padding: 0 0 0 25px;
  border: 1px solid #bbb;
  margin: 5px 0 20px 0;
  display: none;
}

#ac_menu .toggle_btn {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: #ccc;
  display: block;
  width: 24px;
  height: 24px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
}

#ac_menu .toggle_btn:before, .toggle_btn:after {
  display: block;
  content: '';
  background-color: #fff;
  position: absolute;
  width: 10px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#ac_menu .toggle_btn:before { width: 2px; height: 10px; }

#ac_menu .selected .toggle_btn:before { content: normal; }

@media screen and (max-width: 767px){
.ctn_main.ctn_main_pages { margin-bottom: 20px; }
}

@media screen and (max-width: 767px){
.section_tuner .sort_order .tt_sort_order:after {
  content: '';
  background: url(../images/icon/arrow-right.png) left center no-repeat;
  width: 9px;
  height: 15px;
  position: absolute;
  top: 5px;
  right: 15px;
}
.section_tuner .sort_order .tt_sort_order.active:after {
  content: '';
  background: url(../images/icon/arrow-up.png) left center no-repeat;
  width: 15px;
  top: 7px;
  height: 10px;
}
}

.tt_widget {
  font-size: 18px;
  color: #777;
  background-color: #fff;
  padding: 9px 15px 9px 20px;
  position: relative;
  margin-bottom: 3px;
  line-height: 1.3;
}

.tt_widget:before {
  content: "";
  background-color: #8ccae2;
  width: 7px;
  height: 15px;
  position: absolute;
  top: 13px;
  left: 0;
}

.tt_widget.ttYellow:before { background-color: #ffdc73; }

.tt_widget.ttGreen:before { background-color: #acd289; }

.tt_widget.ttDarkBlue:before { background-color: #90acd2; }

.tt_widget.ttPink:before { background-color: #d2a2b8; }

.tt_widget.ttOrange:before { background-color: #e9afa6; }

.widget { margin-bottom: 17px; }

.widget .listWidget { margin-bottom: 23px; }

.widget .listWidget li { border-bottom: 1px dotted #eab0bf; }

.widget .listWidget li a {
  padding: 10px 25px 9px 5px;
  display: block;
  font-size: 14px;
  position: relative;
  line-height: 1.5;
}

.widget .listWidget li a:before {
  content: "";
  background: url(../images/icon/arrow-right_cycle.png) right center no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.widget .listWidget.listWidgetNotIcon li a { padding-right: 5px; }

.widget .listWidget.listWidgetNotIcon li a:before { content: ""; background: transparent; }

.widget:last-child { margin-bottom: 4px; }

.widget:last-child .listWidget { margin-bottom: 4px; }

@media screen and (max-width: 767px){
.container { overflow: hidden; }
.widget.getParent .tt_widget:after {
  content: url("../images/icon/pulldown-open.png");
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 3px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.widget.getParent .tt_widget.active:after { content: url("../images/icon/pulldown-close.png"); }
.widget .listWidget li a:before { right: 3px; }
}

.page-footer { background: #F18C9B; padding: 30px 0px; }

.footer-top { margin: 0px -15px; }

.footer-top .col {
  float: left;
  width: 20%;
  padding: 0px 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.footer-top .col:first-child { width: 15%; }

.footer-top .col:last-child { width: 25%; }

.footer-top .col a { color: #fff; }

.footer-top .col a:hover { text-decoration: underline; }

.footer-top .col ul li { margin-bottom: 5px; }

.footer-top .col ul li ul { padding-left: 15px; }

.footer-top .col ul li ul li { margin-bottom: 0px; }

.nav-bottom a { color: #fff; }

.nav-bottom a:hover { text-decoration: underline; }

.copyright { color: #fff; }

.footer-bottom .nav-bottom { float: left; margin-bottom: 0px; }

.footer-bottom .copyright { float: right; }

@media screen and (max-width: 767px){
.page-footer { padding: 15px 0; }
.footer-top { margin-bottom: 20px; }
.footer-top .col { float: none; width: 100%; }
.footer-top .col:first-child, .footer-top .col:last-child {
  width: 100%;
}
.footer-top li { border-bottom: 1px dotted #fff; position: relative; }
.footer-top li a { padding: 5px 0; display: block; }
.footer-top li ul li { border-bottom: 0; }
.footer-top li ul li a:after { content: none !important; }
.footer-top li.getParent a:after {
  content: '';
  background: url(../images/icon/arrow-right02.png) left center no-repeat;
  width: 9px;
  height: 15px;
  position: absolute;
  top: 5px;
  right: 15px;
}
.footer-top li.getParent a.active:after {
  content: '';
  background: url(../images/icon/arrow-up02.png) left center no-repeat;
  width: 15px;
  top: 7px;
  height: 10px;
}
.footer-bottom { text-align: center; }
.footer-bottom .nav-bottom { float: none; margin-bottom: 10px; }
.footer-bottom .copyright { float: none; font-size: 11px; }
}

.btn-group { text-align: center; margin-bottom: 20px; }

.btn-group .btn-profile {
  font-size: 16px;
  padding: 10px 25px;
  display: inline-block;
  margin: 0 13px 10px 0;
  text-align: center;
  color: #fff;
  border: 0;
  border-radius: 5px;
  background-color: #EF8F99;
  background: -moz-linear-gradient(bottom, #B99, #FF9999 50%, #DCC);
  background: -webkit-gradient(linear, left bottom, left top, from(#B99), color-stop(0.5, #FF9999), to(#DCC));
  -webkit-box-shadow: 2px 2px 1px 1px #c17179;
  box-shadow: 2px 2px 1px 1px #c17179;
  cursor: pointer;
}

.btn-group .btn-profile:hover { opacity: 0.7; }

@media screen and (max-width: 640px){
.btn-group { box-sizing: border-box; }
.btn-group .btn-profile {
  margin-bottom: 0px;
  display: inline-block;
  padding: 10px 15px;
  background-color: #EF8F99;
  background: -moz-linear-gradient(bottom, #B99, #FF9999 50%, #DCC);
  background: -webkit-gradient(linear, left bottom, left top, from(#B99), color-stop(0.5, #FF9999), to(#DCC));
  min-width: 43%;
}
.btn-group .btn-profile:last-child { margin-bottom: 0px; }
}

.section_general_purpose H2 {
  font-size: 24px;
  color: #D25A77;
  position: relative;
  padding: 9px 20px 8px 24px;
  border-top: 1px solid #ccc;
  border-bottom: 2px solid #ccc;
  margin-bottom: 15px;
}

.section_general_purpose H3 {
  font-size: 20px;
  color: #D25A77;
  position: relative;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 7px 0 7px 24px;
  margin-bottom: 15px;
}

.section_general_purpose H2:before {
  content: "";
  background-color: #8CCAE2;
  width: 7px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.section_general_purpose H3:before {
  content: "";
  background-color: #8CCAE2;
  width: 7px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.section_general_purpose .description {
  background: #eee;
  color: #333;
  padding: 10px;
  margin: 10px 5px;
  border: 1px solid #bbb;
}

.section_general_purpose a {
  color: #006699;
  text-decoration: underline;
}

.section_general_purpose a:hover { text-decoration: none; }

.section_general_purpose .list_box ul { margin: 0; padding: 0px 25px; }

.section_general_purpose .list_box li {
  margin: 0;
  padding: 0 2px 10px;
  vertical-align: middle;
  list-style-image: url(../images/icon/list-mark1.gif);
}

.button_frame { text-align: center; margin-bottom: 20px; }

.button_frame a {
  font-size: 16px;
  color: #fff;
  border-style: none;
  border-radius: 5px;
  background-color: #EF8F99;
  -webkit-box-shadow: 2px 2px 1px 1px #c17179;
  box-shadow: 2px 2px 1px 1px #c17179;
  background: -moz-linear-gradient(bottom, #B99, #FF9999 50%, #DCC);
  background: -webkit-gradient(linear, left bottom, left top, from(#B99), color-stop(0.5, #FF9999), to(#DCC));
  cursor: pointer;
}

.button_frame a {
  text-decoration: none;
  padding: 10px 30px;
  margin: 10px;
}

.button_frame a:hover { opacity: 0.7; }

.assecc_map { position: relative; padding-bottom : 100%; }

.assecc_map iframe {
  position: absolute;
  top:  0;
  left: 0;
  width: 100%;
  height: 100%;
}



/* ========================================
   CTA（Call to Action）セクション
   ランディングページから移植・ホームページ用にカスタマイズ
   ======================================== */

/* CTAセクション全体 */
.cta-row {
    background: linear-gradient(135deg, #fff5f7 0%, #fffef8 50%, #fdeef0 100%);
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin: 30px 0;
}

.cta-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(237, 144, 154, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(210, 90, 119, 0.08) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* ボタン共通スタイル */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none !important;
    font-size: 1.05rem;
    font-weight: bold;
    margin: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    z-index: 2;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

/* LINEボタン（緑系） */
.btn-line {
    background: linear-gradient(135deg, #00c300 0%, #06c755 100%);
    color: white !important;
    border: 3px solid #00c300;
}

.btn-line:hover {
    background: linear-gradient(135deg, #06c755 0%, #00b300 100%);
    box-shadow: 0 12px 35px rgba(6,199,85,0.35);
    color: white !important;
}

/* 電話ボタン（オレンジ系） */
.btn-tel {
    background: linear-gradient(135deg, #ff8c69 0%, #ff7f50 100%);
    color: white !important;
    border: 3px solid #ff8c69;
}

.btn-tel:hover {
    background: linear-gradient(135deg, #ff7f50 0%, #ff6347 100%);
    box-shadow: 0 12px 35px rgba(255,140,105,0.35);
    color: white !important;
}

/* プライマリボタン（ホームページカラーに合わせたピンク系） */
.btn-primary {
    background: linear-gradient(135deg, #ED909A 0%, #F18C9B 100%);
    color: white !important;
    border: 3px solid #ED909A;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #D25A77 0%, #ED909A 100%);
    box-shadow: 0 12px 35px rgba(210, 90, 119, 0.35);
    color: white !important;
}

/* セカンダリボタン（淡いピンク系） */
.btn-secondary {
    background: #ffffff;
    color: #D25A77 !important;
    border: 3px solid #ED909A;
}

.btn-secondary:hover {
    background: #fdeef0;
    border-color: #D25A77;
    color: #D25A77 !important;
}

/* CTAミニセクション */
.cta-mini {
    text-align: center;
    margin: 30px 0;
    padding: 25px 20px;
    background: #fdeef0;
    border-radius: 12px;
}

.cta-mini .btn {
    display: block;
    max-width: 400px;
    margin: 12px auto;
}

/* 注記テキスト */
.cta-note {
    font-size: 0.9rem;
    color: rgba(74,74,74,0.8);
    line-height: 1.6;
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

.cta-note small {
    font-size: 0.8rem;
    opacity: 0.8;
    display: block;
    margin-top: 5px;
}

/* ボタン内の小さいテキスト */
.btn small {
    display: block;
    font-size: 0.85rem;
    font-weight: normal;
    margin-top: 4px;
    opacity: 0.9;
}

.btn strong {
    display: block;
    font-size: 1.15rem;
    margin-top: 3px;
}


/* ========================================
   レスポンシブ対応
   ======================================== */
@media screen and (max-width: 767px) {
    .cta-row {
        padding: 35px 20px;
        margin: 20px 0;
    }
    
    .btn {
        display: block;
        margin: 12px auto;
        max-width: 320px;
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .btn small {
        font-size: 0.8rem;
    }
    
    .btn strong {
        font-size: 1.1rem;
    }
    
    .cta-mini {
        padding: 20px 15px;
    }
    
    .cta-note {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    .cta-row {
        padding: 30px 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}