@charset "utf-8";

:root {
  /* カラーパレット（みかサロン - ナチュラルブルー） */
  --color-primary: #65989F;
  --color-primary-light: #B0CFD2;
  --color-text: #323232;
  --color-dark: #333;
  --color-bg-warm: #f2f6f7;
  --color-section-bg: #f8fafb;
  --color-accent-blue: #65989F;
  --color-line-green: #06c755;
  --color-green-dark: #4e777d;
  --color-line-cta: #05ae4a;
  --color-gray-bg: #f0f0f0;
  --color-accent-cyan: #B0CFD2;
  --color-accent-pink: #F9D1D8;
  --color-pink-pale: #fdf5f6;
  --color-btn: #F9D1D8;
  --color-btn-hover: #f1b3bf;
  /* フォント */
  --font-main: 'Noto Sans JP', sans-serif;
  --font-serif: 'Shippori Mincho', serif;
}



body {
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--color-text);
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  transition: .3s;
}

a:hover {
  text-decoration: none;
  opacity: .7;
}

p {
  margin-bottom: 0;
}

ul,
li {
  padding: 0;
  margin: 0;
}

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

.mincho {
  font-family: 'Shippori Mincho', serif;
}

.container {
  max-width: 1050px;
}

/*--- header ---*/
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
}

main {
  margin-top: 120px;
}

.head_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  position: relative;
}

.head_logo {
  padding: 15px 0;
  font-size: 0;
}

.head_logo>div {
  display: inline-block;
  vertical-align: middle;
}

.head_logo img {
  max-width: 100px;
}

.head_logo .logo_text {
  display: inline-block;
  vertical-align: middle;
  font-family: 'Shippori Mincho', serif;
  color: var(--color-text);
  font-size: 14px;
  padding-left: 15px;
  border-left: solid 1px var(--color-primary);
  line-height: 1.4;
  margin-left: 15px;
}

.head_nav {
  display: flex;
  align-items: center;
}

.head_nav .nav-item {
  margin: 0 15px;
}

.head_nav .nav-item a {
  color: var(--color-dark);
  display: block;
  line-height: 1;
}

.head_nav .nav-item a>i {
  margin-left: 10px;
  margin-right: 0;
}

.head_nav .nav-item .adjust {
  padding: 52px 0;
}

.head_nav .nav-item .contact {
  padding: 51px 25px;
  background-color: var(--color-dark);
  color: #fff;
  line-height: 1;
  transition: .3s;
  border: solid 1px var(--color-dark);
}

.head_nav .nav-item .contact i {
  margin-right: 5px;
  margin-left: 0;
}

.head_nav .nav-item .contact:hover {
  color: var(--color-dark);
  background-color: #fff;
  opacity: 1;
}

.head_nav .nav-item:last-of-type {
  margin-right: 0;
}

.sm-nav-box {
  display: none;
}

/* header-dropdown */
header .drop-menu {
  opacity: 0;
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  transition: .3s;
  visibility: hidden;
}

header .drop-menu.show {
  opacity: 1;
  visibility: visible;
}

header .drop-menu.show01 {
  opacity: 1;
  visibility: visible;
}

header .drop-menu.show02 {
  opacity: 1;
  visibility: visible;
}

.head_nav .drop_inner {
  display: flex;
  align-items: center;
  background-color: #fff;
  position: relative;
}

.head_nav .drop_inner::before {
  content: '';
  background-color: var(--color-bg-warm);
  width: 20%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.drop_inner .left_tit {
  width: 20%;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.drop_inner .left_tit .main {
  font-size: 50px;
  letter-spacing: 2px;
}

.drop_inner .left_tit .sub {
  font-size: 22px;
  margin-bottom: 20px;
}

.drop_inner .left_tit a {
  display: inline-block;
  transition: .3s;
  text-decoration: underline !important;
  text-decoration-color: transparent !important;
}

.drop_inner .left_tit a:hover {
  text-decoration-color: var(--color-dark) !important;
}

.drop_inner .left_tit a i {
  border-radius: 50%;
  border: solid 1px var(--color-dark);
  padding: 15px 17px;
  line-height: 1;
  display: inline-block;
  margin-right: 10px;
  margin-left: 0;
  transition: .3s;
}

.drop_inner .left_tit a:hover i {
  background-color: var(--color-dark);
  color: #fff;
  transition: .3s;
}

.drop_inner .right_nav {
  width: 80%;
  padding: 70px 50px;
}

.drop_inner .right_nav .grid {
  grid-gap: 40px;
}

.drop_inner .right_nav .grid-3 {
  padding: 0 80px;
}

.drop_item {
  display: block;
}

.drop_item .item_img {
  margin-bottom: 15px;
  overflow: hidden;
  transition: .3s;
}

.drop_item .item_img img {
  transition: .3s;
  height: 205px;
  object-fit: cover;
  width: 100%;
}

.drop_item:hover .item_img img {
  transform: scale(1.2, 1.2);
  transition: .3s;
}

.drop_item .d_tit {
  font-weight: 500;
  font-size: 18px;
  padding-left: 10px;
  border-left: 3px solid var(--color-primary);
  position: relative;
  display: block;
}

.drop_item .d_tit::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-weight: 900;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  width: 20px;
  height: 25px;
  color: var(--color-primary);
  transition: .3s;
}

/*--- public ---*/
.pink_bg {
  background-color: var(--color-primary-light);
}

.green_bg {
  background-color: var(--color-line-green);
}

.white_bg {
  background-color: #fff;
}

section {
  background-color: var(--color-section-bg);
}

.sec_inner {
  padding: 90px 0;
}

.btn_box {
  text-align: center;
}

/* bread */
.page-id-2197 .wrp_bred {
  background-color: var(--color-bg-warm);
}

.wrp_bred {
  padding: 8px 0;
  background-color: var(--color-primary);
}

.wrp_bred span {
  display: inline-block;
  font-size: 13px;
}

.wrp_bred>.container>div {
  display: flex;
  flex-wrap: wrap;
}

.wrp_bred>.container>div>span {
  margin: 0 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 2;
}

.wrp_bred>.container>div>span:first-of-type {
  margin-left: 0;
}

.wrp_bred,
.wrp_bred a {
  color: #fff;
}

.wrp_bred a span {
  text-decoration: underline !important;
}

.wrp_h1 {
  padding: 5px 0;
  background-color: var(--color-primary);
}

.wrp_h1 h1 {
  font-size: 14px;
  text-align: center;
  margin-bottom: 0;
  color: #fff;
}

/*--- btn ---*/
.pub_btn {
  background-color: var(--color-text);
  color: #fff;
  border-radius: 30px;
  padding: 17px 20px;
  padding-left: 70px;
  font-size: 21px;
  position: relative;
  display: inline-block;
}

.pub_btn:hover,
.line_btn:hover,
.pub_btn2:hover {
  color: #fff;
}

.pub_btn i {
  margin-right: 10px;
  font-size: 21px;
}

.pub_btn::before {
  font-family: "Font Awesome 5 Free";
  content: "\f002";
  font-weight: 900;
  padding: 5px;
  top: 0;
  bottom: 0;
  left: 20px;
  position: absolute;
  font-size: 27px;
  margin: auto;
  height: 50px;
}

.pub_btn::after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 900;
  padding: 5px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--color-text);
}

.line_btn {
  background-color: var(--color-green-dark);
  color: #fff;
  display: block;
  border-radius: 10px;
  padding: 15px 0;
  position: relative;
  font-size: 18px;
}

.line_btn::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  height: 27px;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  padding: 1px 7px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--color-green-dark);
}

.pub_btn2 {
  background-color: var(--color-text);
  color: #fff;
  border-radius: 30px;
  padding: 10px 60px;
  font-size: 18px;
  position: relative;
  display: inline-block;
}

.pub_btn2::after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  font-weight: 900;
  padding: 2px 5px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--color-text);
  height: 25px;
  width: 25px;
  font-size: 14px;
}

.add_btn {
  background-color: var(--color-accent-blue);
  color: #fff;
  display: block;
  text-align: center;
  padding-top: 15px;
  font-size: 19px;
  font-family: 'Shippori Mincho', serif;
}

.add_btn:hover {
  opacity: 1 !important;
  color: #fff;
}

.pub_btn3 {
  background-color: var(--color-btn);
  color: var(--color-text);
  transition: .3s;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  padding: 8px 0;
  border: solid 1px var(--color-btn);
  position: relative;
}

.pub_btn3::after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  color: var(--color-text);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  height: 22px;
  margin: auto;
}

.pub_btn3:hover {
  background-color: #fff;
  color: var(--color-text);
  opacity: 1;
  border: solid 1px var(--color-btn);
}

.pub_btn3:hover::after {
  color: var(--color-text);
}

.pub_btn4 {
  border: solid 1px var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
  transition: .3s;
  margin-bottom: 10px;
  display: block;
  padding: 8px 0;
  position: relative;
}

.pub_btn4:hover {
  background-color: var(--color-primary);
  color: #fff;
  opacity: 1;
}

.pub_btn4::after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  color: var(--color-primary);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  height: 22px;
  margin: auto;
}

.pub_btn4:hover::after {
  color: #fff;
}

.dib {
  display: inline-block;
  padding: 13px 30px 13px 20px;
  border-radius: 5px;
}


.home .wrp_store .pub_btn2,
.home .wrp_cta .pub_btn {
  background-color: var(--color-accent-blue);
}

.home .wrp_cta .pub_btn::after {
  color: var(--color-accent-blue);
}

/*--- kv ---*/
.kv {
  position: relative;
}

.kv::after {
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.kv img {
  width: 100%;
}

.kv .kv_tit {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  left: 0;
  text-align: center;
  margin: auto;
  height: 60px;
  z-index: 3;
}

.kv .kv_tit .sub {
  color: var(--color-primary);
  font-size: 24px;
}

.kv .kv_tit h1,
.kv .kv_tit .h1 {
  color: #fff;
  font-size: 48px;
}

.kv {
  display: none;
}

/*--- fix ---*/
.fix_tit {
  text-align: center;
  margin-bottom: 60px;
}

.fix_tit .sub {
  color: var(--color-primary);
  margin-bottom: 5px;
}

.fix_tit h2 {
  font-size: 36px;
  margin-bottom: 0;
}

.fix_tit .text {
  margin-top: 20px;
}

/*--- TOP ---*/
/* mv */
.mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}

.mv::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.4) 100%);
  z-index: 2;
  pointer-events: none;
}

.mv img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: brightness(1.02) contrast(0.98);
  object-position: 70% center;
}

.mv .wrp_ab_tit {
  position: absolute;
  bottom: 5%;
  left: 10%;
  display: flex;
  flex-direction: row-reverse;
  font-family: 'Shippori Mincho', serif;
  z-index: 3;
}

.mv .wrp_ab_tit p {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  background-color: #fff;
  font-size: 32px;
  margin: 0 5px;
  padding: 10px 5px;
  height: 530px;
}

.mv .wrp_ab_tit .second {
  margin-top: 100px;
}

.mv .wrp_ab_tit>.pink {
  background-color: var(--color-primary);
  color: #fff;
  margin-top: 250px;
  height: 430px;
}

.mv .wrp_ab_tit p .pink {
  color: var(--color-primary);
  font-size: 40px;
}

.mv .wrp_ab_tit .mid {
  font-size: 28px;
}

.mv_bottom {
  color: var(--color-primary);
  font-size: 28px;
  text-align: center;
  padding: 30px 0 0px;
  font-family: 'Shippori Mincho', serif;
  text-shadow: 0px 0px 3px #fff;
}

.mv_bottom .mid {
  font-size: 22px;
}

.ad_cta {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
}

.ad_cta>img {
  width: 100%;
  display: block;
}

.ad_cta .ab_btn {
  position: absolute;
  width: 70%;
  bottom: 10%;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--color-btn);
  color: var(--color-text) !important;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50px;
  padding: 15px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.ad_cta .ab_btn:hover {
  background-color: var(--color-btn-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 1 !important;
}

.ad_cta .ab_btn::after {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: 15px;
}

@media only screen and (max-width: 767px) {
  .ad_cta .ab_btn {
    width: 85%;
    font-size: 18px;
    padding: 12px 15px;
  }
}

/* wrp_v */
.wrp_v .wrp_tit {
  margin-bottom: 30px;
}

.wrp_v h2 {
  color: var(--color-primary);
  font-size: 28px;
  margin-bottom: 20px;
  font-family: 'Shippori Mincho', serif;
}

.wrp_v h2 .big {
  font-size: 32px;
}

.wrp_v .sub {
  font-size: 20px;
  font-family: 'Shippori Mincho', serif;
  margin-bottom: 10px;
}

.wrp_v .chui {
  font-size: 14px;
}

.wrp_v .item {
  width: 47.5%;
}

.wrp_v .item2 {
  width: 52.5%;
}

/* wrp_offer */
.wrp_offer .wrp_tit {
  margin-bottom: 60px;
  font-family: 'Shippori Mincho', serif;
  color: var(--color-primary);
}

.wrp_offer .wrp_tit h2 {
  text-decoration: underline;
  font-size: 28px;
  margin-bottom: 20px;
}

.wrp_offer .wrp_tit .sub {
  font-size: 20px;
}

.wrp_offer .box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.wrp_offer .box .text {
  width: 48%;
}

.wrp_offer .box .item_img {
  width: 48%;
}

.wrp_offer .content p {
  margin-bottom: 20px;
}

.wrp_offer .content ul {
  background-color: #fff;
  border: solid 2px var(--color-primary);
  color: #000;
  color: var(--color-primary);
  margin-bottom: 20px;
  padding: 30px 30px;
  border-radius: 20px;
}

.wrp_offer .content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.wrp_offer .content ul li::before {
  position: absolute;
  content: '・';
  top: 0;
  left: 0;
}

.wrp_offer .content .chui {
  font-size: 14px;
  margin-bottom: 50px;
}

/* point */
.p_tit {
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  font-family: 'Shippori Mincho', serif;
  padding: 30px 0;
}

.p_tit.about {
  background-color: transparent;
  color: var(--color-primary);
  padding: 90px 0 0;
}

.p_tit .sub {
  font-size: 20px;
}

.p_tit h2 {
  font-size: 32px;
  letter-spacing: 3px;
  margin-bottom: 0;
}

.p_tit h2 .mid {
  font-size: 16px;
}

.wrp_point.grid {
  grid-gap: 60px;
}

.wrp_point .box .item_img {
  position: relative;
  margin-bottom: 20px;
}

.wrp_point .box .item_img h3 {
  position: absolute;
  writing-mode: vertical-rl;
  padding-top: 70px;
  color: var(--color-primary);
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  text-shadow: 1px 1px 5px #fff, -1px -1px 5px #fff, 0px -1px 5px #fff;
  margin: 0;
}

.wrp_point .box .item_img h3 .ad_st {
  writing-mode: horizontal-tb;
}

.wrp_point .box .item_img h3::before {
  content: '1.';
  writing-mode: horizontal-tb;
  position: absolute;
  top: 0;
  left: 30px;
  font-size: 32px;
}

.wrp_point .box:nth-of-type(2) .item_img h3::before {
  content: '2.';
}

.wrp_point .box:nth-of-type(3) .item_img h3::before {
  content: '3.';
}

.wrp_point .box:nth-of-type(4) .item_img h3::before {
  content: '4.';
}

.wrp_point .box .text .pink {
  color: var(--color-primary);
}

/* l_store */
.wrp_tit_store {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  margin-bottom: 50px;
  text-align: center;
}

.wrp_tit_store h2 {
  font-size: 32px;
  color: var(--color-primary);
  font-weight: 600;
}

.gray_bg {
  background-color: var(--color-gray-bg);
}

.wrp_sbox .s_box {
  margin-bottom: 40px;
}

.wrp_sbox .s_box h3 {
  margin-bottom: 20px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 18px;
  padding: 15px;
  padding-left: 40px;
  border-radius: 25px;
  position: relative;
}

.wrp_sbox .s_box h3::before {
  content: '';
  border-left: solid 5px #fff;
  height: 22px;
  position: absolute;
  top: 16px;
  left: 20px;
}

.wrp_sbox .s_box ul {
  display: flex;
  flex-wrap: wrap;
}

.wrp_sbox .s_box li {
  margin: 0 10px 10px;
}

.wrp_sbox .s_box li a {
  background-color: #fff;
  padding: 10px 20px;
  padding-right: 30px;
  transition: .3s;
  position: relative;
  display: block;
  color: #000;
  border: solid 1px #ccc;
}

.wrp_sbox .s_box li a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  color: var(--color-primary);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  height: 22px;
  margin: auto;
}

.wrp_sbox .s_box li a:hover {
  opacity: .7;
}


/* cta */
.wrp_cta {
  max-width: 1050px;
  margin: 0 auto;
  border: solid 4px var(--color-accent-cyan);
  padding: 50px 50px;
}

.wrp_cta .up_box {
  display: flex;
  justify-content: space-between;
}

.wrp_cta .up_box .content {
  width: 49%;
  text-shadow: 1px 1px 5px #fff, -1px -1px 5px #fff, 0px -1px 5px #fff;
  font-size: 24px;
}

.wrp_cta .up_box .content .pink {
  color: var(--color-primary);
}

.wrp_cta .up_box .content .pink_bg {
  background-color: var(--color-primary);
  color: #fff;
  display: inline-block;
  text-shadow: none;
}

.wrp_cta .up_box .item_img {
  width: 49%;
}

.wrp_cta .bage {
  text-align: center;
  margin-top: -35px;
  margin-bottom: 40px;
}

.wrp_cta .bot_box .wrp_tit {
  margin-bottom: 15px;
}

.wrp_cta .bot_box .wrp_tit h2 {
  font-size: 32px;
  font-family: 'Shippori Mincho', serif;
  margin-bottom: 50px;
  text-align: center;
}

.wrp_cta .bot_box .wrp_tit .wrp_tag {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.wrp_cta .bot_box .wrp_tit .wrp_tag p {
  color: #fff;
  padding: 5px 40px;
  line-height: 1;
}

.wrp_cta .bot_box .wrp_tit .wrp_tag .pink {
  background-color: var(--color-primary);
}

.wrp_cta .bot_box .wrp_tit .wrp_tag .black {
  background-color: var(--color-text);
}

.wrp_cta .bot_box .wrp_tit .sub {
  font-size: 20px;
  font-family: 'Shippori Mincho', serif;
  text-align: center;
  margin-bottom: 40px;
}

.wrp_cta .bot_box .price {
  text-align: center;
  margin-bottom: 40px;
}

.wrp_cta .bot_box .wrp_box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.wrp_cta .bot_box .wrp_box .box {
  width: 32%;
}

.wrp_cta .bot_box .wrp_box .box .content {
  border-right: solid 1px var(--color-primary);
  padding: 20px 10px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
}

.wrp_cta .bot_box .wrp_box .box:last-of-type .content {
  border-right: 0px;
}

.wrp_cta .bot_box .wrp_box .box .content h3 {
  text-align: center;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: 16px;
}

.wrp_cta .bot_box .wrp_box .box img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 5px;
}

.wrp_cta .bot_box .wrp_box .box:nth-child(3) img {
  object-position: 40% center;
}

.wrp_cta .bot_box .wrp_copy {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
}

.wrp_cta .bot_box .wrp_copy .pink {
  color: var(--color-primary);
}

.wrp_cta .bot_box .wrp_copy .big {
  font-size: 24px;
}

.wrp_cta .bot_box .wrp_copy .big .pink {
  text-decoration: underline;
  font-weight: bold;
}

.wrp_cta .ab_btn {
  display: block;
  margin: 0 auto;
  width: 80%;
}

/* line_cta */
.line_cta {
  max-width: 1050px;
  margin: 0 auto;
  padding: 50px 0;
}

.line_cta .wrp_tit {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.7;
}

.line_cta .g_bg {
  background-color: var(--color-line-cta);
  display: inline-block;
  padding: 2px 15px;
  margin: 0 5px;
  border-radius: 8px;
}

.line_cta .yellow {
  color: #ffff00;
}

.line_cta .big {
  font-weight: bold;
  font-size: 32px;
}

.line_cta .mid {
  font-size: 24px;
}

.line_cta .wrp_box {
  margin-bottom: 30px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.line_cta .wrp_box .in_tit {
  background-color: #ffff00;
  color: var(--color-line-cta);
  padding: 5px 0px;
  text-align: center;
  border-radius: 10px 10px 0 0;
  font-size: 20px;
}

.line_cta .wrp_box .box {
  display: flex;
  justify-content: center;
  gap: 30px;
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 0 0 10px 10px;
}

.line_cta .wrp_box .box .item {
  width: 38%;
  max-width: 280px;
}

.line_cta .wrp_box .box .item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 5px;
}

.line_cta .wrp_box .box .item p {
  font-weight: bold;
}

/* point2 */
.wrp_point2 {
  background-color: #fff;
  padding: 40px 40px;
}

.wrp_point2 .wrp_tit {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  margin-bottom: 50px;
  text-align: center;
}

.wrp_point2 .wrp_tit .pink {
  color: var(--color-primary);
  font-size: 24px;
}

.wrp_point2 .wrp_tit h2 {
  font-size: 32px;
  color: var(--color-primary);
  font-weight: 600;
}

.wrp_point2 .wrp_tit h2 .mid {
  font-size: 24px;
}

.wrp_point2 .wrp_box .box {
  margin-bottom: 20px;
}

.wrp_point2 .wrp_box .box_tit {
  background-color: var(--color-primary-light);
  position: relative;
  padding: 40px 40px;
  border-radius: 10px 40px 10px 40px;
  margin-bottom: 40px;
}

.wrp_point2 .wrp_box .box_tit::before {
  content: '1';
  color: #fff;
  position: absolute;
  top: -2px;
  left: 10px;
  font-size: 20px;
  font-family: 'Shippori Mincho', serif;
  z-index: 2;
}

.wrp_point2 .wrp_box .box:nth-of-type(2) .box_tit::before {
  content: '2';
}

.wrp_point2 .wrp_box .box:nth-of-type(3) .box_tit::before {
  content: '3';
}

.wrp_point2 .wrp_box .box:nth-of-type(4) .box_tit::before {
  content: '4';
}

.wrp_point2 .wrp_box .box:nth-of-type(5) .box_tit::before {
  content: '5';
}

.wrp_point2 .wrp_box .box:nth-of-type(6) .box_tit::before {
  content: '6';
}

.wrp_point2 .wrp_box .box_tit::after {
  content: '';
  border-bottom: 60px solid transparent;
  border-left: 60px solid var(--color-primary);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px 0 0 0;
}

.wrp_point2 .wrp_box .box_tit .ab_img {
  position: absolute;
  bottom: -20px;
  right: -10px;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

.wrp_point2 .wrp_box .box_tit .ab_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrp_point2 .wrp_box .box_tit h3 {
  font-size: 20px;
  margin-bottom: 0;
  line-height: 1.5;
}


/* voice */
.wrp_voice .wrp_tit {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}

.wrp_voice .wrp_tit img {
  max-width: 450px;
  border-radius: 20px;
  filter: brightness(0.7);
}

.wrp_voice .wrp_tit.ajust img {
  max-width: 450px;
  border-radius: 20px;
  filter: brightness(0.8);
}

.wrp_voice .wrp_tit .ab_tit {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  font-family: 'Shippori Mincho', serif;
  color: #fff;
  height: 110px;
}

.wrp_voice .wrp_tit.adjust .ab_tit {
  height: 85px;
}

.wrp_voice .wrp_tit .ab_tit h2 {
  font-size: 32px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.wrp_voice .wrp_tit .ab_tit .sub {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.wrp_voice .box {
  margin-bottom: 20px;
  display: block;
}

.wrp_voice .box>p {
  color: var(--color-text);
}

.wrp_voice .box_img {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.wrp_voice .box_img .item {
  width: 49%;
  position: relative;
  border-radius: 10px;
}

.wrp_voice .box_img .item img {
  height: 280px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.wrp_voice .box_img .item .tag {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  border-radius: 0 10px 0 10px;
  padding: 5px 20px;
}

.wrp_voice .box_img .before .tag {
  background-color: var(--color-text);
}

.wrp_voice .box_img .after .tag {
  background-color: var(--color-primary);
}

/* 活動実績用のカードスタイル */
.wrp_voice .wrp_box .box .item_img {
  position: relative;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.wrp_voice .wrp_box .box .item_img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
}

.wrp_voice .wrp_box .box .item_img img.fit_top {
  object-position: top;
}

.wrp_voice .wrp_box .box .item_img img.fit_right {
  object-position: 80% 20%;
  transform: scale(1.3);
}

.wrp_voice .wrp_box .box .item_img img.fit_left {
  object-position: 20% 20%;
  transform: scale(1.3);
}

.wrp_voice .wrp_box .box .item_img img.fit_bottom {
  object-position: bottom;
}

.wrp_voice .wrp_box .box .item_img img.fit_radio {
  object-position: 82% 50%;
  transform: scale(1.4);
}

.wrp_voice .wrp_box .box .item_img img.fit_reservation {
  object-position: 81.5% 45%;
  transform: scale(2.0);
}

.wrp_voice .wrp_box .box .item_img img.fit_phone {
  object-position: 9% 36.5%;
  transform: scale(3.6);
}

.wrp_voice .wrp_box .box:hover .item_img img {
  transform: scale(1.05);
}

.wrp_voice .wrp_box .box:hover .item_img img.fit_radio {
  transform: scale(1.5);
}

.wrp_voice .wrp_box .box:hover .item_img img.fit_reservation {
  transform: scale(2.1);
}

.wrp_voice .wrp_box .box:hover .item_img img.fit_phone {
  transform: scale(3.7);
}

.wrp_voice .wrp_box .box .item_img .tag {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-primary);
  color: #fff;
  padding: 4px 15px;
  font-size: 11px;
  border-radius: 0 10px 0 0;
  font-weight: bold;
}

.wrp_voice .wrp_box .box .text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
  text-align: left;
}

/* flow */
.wrp_flow {
  padding: 40px 40px;
  border: solid 1px var(--color-text);
  border-radius: 10px 60px 10px 60px;
}

.wrp_flow .wrp_tit {
  text-align: center;
  margin-bottom: 40px;
}

.wrp_flow .wrp_tit .sub {
  font-size: 18px;
  font-family: 'Shippori Mincho', serif;
  margin-bottom: 5px;
}

.wrp_flow .wrp_tit h2 {
  font-size: 32px;
  font-family: 'Shippori Mincho', serif;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.wrp_flow .box {
  margin-bottom: 20px;
  padding-left: 30px;
}

.wrp_flow .box .wrp_img {
  position: relative;
  margin-bottom: 15px;
}

.wrp_flow .box .wrp_img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px 50px 10px 50px;
}

.wrp_flow .box .wrp_img p {
  position: absolute;
  top: 15px;
  left: -30px;
  background-color: var(--color-text);
  color: #fff;
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  padding: 5px 25px;
  border-radius: 0 50% 50% 0;
}

.wrp_flow .box h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

/* store */
.wrp_store .box {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.wrp_store .item_img {
  display: block;
}

.wrp_store .item_img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.wrp_store .box:first-child .item_img img {
  object-position: center 10%;
}

.wrp_store .content {
  background-color: #fff;
  padding: 20px 20px;
  border-radius: 0 0 10px 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.wrp_store .content h3 {
  text-align: center;
  font-size: 20px;
  color: var(--color-primary);
  font-family: 'Shippori Mincho', serif;
  margin-bottom: 20px;
}

.wrp_store .content h3 a {
  color: var(--color-primary);
}

.wrp_store .wrp_info {
  margin-bottom: 20px;
}

.wrp_store .wrp_info .item {
  display: flex;
  margin-bottom: 10px;
  align-items: flex-start;
}

.wrp_store .wrp_info .item .name {
  width: 25%;
  background-color: var(--color-primary);
  color: #fff;
  padding: 1px 0;
  margin-right: 10px;
  font-size: 14px;
  text-align: center;
  border-radius: 3px;
}

.wrp_store .wrp_info .item .info {
  font-weight: bold;
}

.wrp_store .address {
  margin-bottom: 15px;
  flex-grow: 1;
}

.wrp_store .btn_box {
  margin-top: auto;
}

/* news */
.wrp_news h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.wrp_news .wrp_box {
  border-top: solid 2px var(--color-text);
  border-bottom: solid 2px var(--color-text);
  margin-bottom: 50px;
}

.wrp_news .wrp_box .box {
  border-bottom: 1px solid var(--color-text);
  padding: 20px 30px;
  display: block;
  color: var(--color-text);
}

.wrp_news .wrp_box .box:last-of-type {
  border-bottom: 0px;
}

.wrp_news .wrp_box .box .day {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}

.sns_icon {
  text-align: center;
}

.sns_icon a {
  display: inline-block;
  transition: .3s;
}

.sns_icon a img {
  max-width: 60px;
}

/*--- concept ---*/
.catch {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.catch h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  font-family: 'Shippori Mincho', serif;
  line-height: 1.7;
}

.catch>img {
  max-width: 200px;
  margin-bottom: 40px;
}

.catch .text {
  text-align: left;
  margin-bottom: 50px;
}

.catch .wrp_box {
  border: solid 3px var(--color-primary);
  padding: 20px 20px;
  background-color: #fff;
}

.catch h3 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}

/* lead */
.wrp_lead .item {
  border: solid 2px var(--color-primary);
  padding: 20px 20px;
}

.wrp_lead img {
  margin-bottom: 20px;
}

.wrp_lead .i_tit {
  font-size: 16px;
  text-align: center;
  margin-bottom: 15px;
}

.wrp_lead .text {
  margin-bottom: 20px;
}

/*--- about ---*/
.wrp_two .text {
  margin-bottom: 40px;
  text-align: center;
  font-size: 16px;
}

.wrp_two .wrp_box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.wrp_two .wrp_box .item_img {
  width: 60%;
  text-align: center;
}

.wrp_two .wrp_box .item_img img {
  max-height: 500px;
}

.wrp_two .wrp_box .content {
  width: 40%;
}

/* lr_box */
.wrp_lr_box .box {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.wrp_lr_box .box:last-of-type {
  margin-bottom: 0;
}

.wrp_lr_box .box:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.wrp_lr_box .box .item_img {
  width: 50%;
  padding: 0 30px;
}

.wrp_lr_box .box .content {
  width: 50%;
}

.wrp_lr_box .box .content h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  font-family: 'Shippori Mincho', serif;
}

/*--- effect ---*/
.wrp_wf_img {
  text-align: center;
}

/* my_card */
.my_card {
  margin-bottom: 15px;
  padding: 20px 20px;
  background-color: #fff;
  box-shadow: 0px 0px 10px #ccc;
  border-radius: 10px;
}

.my_card .item_img {
  margin-bottom: 15px;
}

.my_card h3 {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.my_card h3 i {
  margin-right: 10px;
}

/*--- store ---*/
.wrp_store .ad_a {
  display: inline-block;
  text-decoration: underline;
  margin-top: 15px;
  color: var(--color-primary);
}

.home .wrp_store .ad_a {
  display: none;
}

.head_text {
  font-size: 12px;
  color: #000;
  text-align: center;
  font-family: 'Shippori Mincho', serif;
}

/*- access -*/
.wrp_saccess {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  animation: fadeInUp 0.6s ease-out;
}

.g_box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.g_box iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
}

.ai_box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ai_box .item {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 2px solid #dee2e6;
  transition: all 0.3s ease;
}

.ai_box .item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.ai_box .tit {
  font-size: 18px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ai_box .tit::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 2px;
}

.ai_box .info {
  color: #495057;
  line-height: 1.8;
  padding-left: 16px;
  margin: 0;
}

.ai_box .info a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
}

/*- staff -*/
.wrp_sstaff {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.wrp_sstaff .box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.wrp_sstaff .item_img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.wrp_sstaff .item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.wrp_sstaff .text_box {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.wrp_sstaff .item {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-gray-bg);
  padding-bottom: 16px;
}

.wrp_sstaff .item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
  flex-grow: 1;
}

.wrp_sstaff .tit {
  font-size: 14px;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wrp_sstaff .info {
  font-size: 15px;
  color: var(--color-dark);
  line-height: 1.7;
  margin: 0;
}


/*--- faq ---*/
.qa_box .wrp_ad {
  padding-top: 120px;
  margin-top: -120px;
}

.qa_box .qa_item {
  padding: 30px 20px 20px;
  box-shadow: 0px 0px 8px #ccc;
  margin-bottom: 40px;
}

.qa_box .qa_item .q {
  position: relative;
  margin-bottom: 30px;
}

.qa_box .qa_item .a {
  background-color: #F8F8F8;
  padding: 20px 20px;
}

.faq_nav ul {
  display: flex;
  flex-wrap: wrap;
  border-left: solid 1px #ccc;
  border-top: solid 1px #ccc;
  margin-bottom: 40px;
}

.faq_nav li {
  padding: 10px 10px;
  border-bottom: solid 1px #ccc;
  border-right: solid 1px #ccc;
  width: 50%;
}

.faq_nav li a {
  color: var(--color-primary);
}

/*--- price ---*/
.wrp_price {
  margin-bottom: 5px;
}

.wrp_price .box {
  display: flex;
  border: solid 1px var(--color-primary);
  margin-bottom: 50px;
}

.wrp_price .box:last-of-type {
  margin-bottom: 0;
}

.wrp_price .box .name {
  width: 20%;
  background-color: var(--color-accent-pink);
  color: #fff;
  padding: 15px 15px;
}

.wrp_price .box .price {
  width: 25%;
  background-color: var(--color-pink-pale);
  color: var(--color-accent-pink);
  padding: 15px 15px;
}

.wrp_price .box .content {
  width: 55%;
  padding: 15px 15px;
  background-color: #fff;
}

.p_chui {
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.p_chui::before {
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
}

/*--- archive ---*/
.wrp_arc .box {
  display: block;
  box-shadow: 0px 0px 8px #ccc;
}

.wrp_arc .box .item_img {
  position: relative;
}

.wrp_arc .box .item_img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.wrp_arc .box .item_img .tag {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  padding: 3px 20px;
}

.wrp_arc .box .wrp_content {
  background-color: #fff;
  padding: 20px 10px;
}

.wrp_arc .box .wrp_tit {
  margin-bottom: 10px;
}

.wrp_arc .box .wrp_tit .main {
  font-size: 18px;
  margin-bottom: 5px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: var(--color-text);
}

.wrp_arc .box .wrp_tit .day {
  font-size: 12px;
  color: #ccc;
}

.wrp_arc .box .text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: var(--color-text);
}

.wrp_tit.text-left {
  text-align: left !important;
}

/*--- single post (single.php 固有クラス) ---*/
.single-article {
  max-width: 800px;
  margin: 0 auto;
}

.single-header {
  /* <div> に変更済み: header タグの position:fixed を回避 */
  text-align: center;
  margin-bottom: 30px;
}

.single-title {
  font-size: 28px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.single-meta {
  font-size: 14px;
  color: #888;
}

.single-date {
  margin-right: 5px;
}

.single-cat {
  margin-left: 5px;
}

/* サムネイル: 縦長にならないよう aspect-ratio で固定 */
.single-thumb {
  margin-bottom: 30px;
  overflow: hidden;
}

.single-thumb img {
  width: 100%;
  height: auto;           /* 縦長バグ修正: 明示的に auto を指定 */
  max-width: 100%;
  display: block;
  object-fit: cover;
}

/* 投稿本文内の画像も縦長にならないよう修正 */
.single-content img {
  max-width: 100%;
  width: auto;
  height: auto;           /* 縦長バグ修正 */
  display: block;
  margin: 20px auto;
}

.single-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.single-content h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.single-content h3 {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 15px;
}

/*--- single ---*/
.wrp_single {
  max-width: 800px;
  margin: 0 auto;
}

.wrp_single .wrp_tit {
  margin-bottom: 30px;
}

.wrp_single .wrp_sub {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.wrp_single .wrp_sub .day {
  margin-right: 10px;
}

.wrp_single .wrp_sub .cat span {
  background-color: #A8A89E;
  color: #fff;
  line-height: 1;
  font-size: 14px;
  padding: 5px 8px;
  display: inline-block;
}

.wrp_single .wrp_tit h1 {
  font-size: 36px;
  margin-bottom: 0;
}

.wrp_single .wrp_tit .comp {
  font-size: 14px;
  margin-top: 30px;
}

.wrp_single .wrp_thum {
  margin-bottom: 30px;
}

.wrp_single .wrp_thum img {
  width: 100%;
}

.wrp_single h2,
.wrp_single h3,
.wrp_single .wrp_content p {
  margin-bottom: 30px;
}

.wrp_single h2 {
  font-size: 24px;
}

.wrp_single h3 {
  font-size: 18px;
}

.single-news .wrp_single .wrp_sub .cat {
  display: none;
}

.single-voice .wrp_single .wrp_sub .cat {
  display: none;
}

.wrp_single ul li {
  list-style-type: disc;
}

.wrp_single .btn_box {
  margin-top: 50px;
}

.wrp_single .btn_box .pub_btn {
  background-color: var(--color-accent-blue);
}

.wrp_single .btn_box .pub_btn::after {
  color: var(--color-accent-blue);
}

.wrp_single .wrp_cta {
  padding: 40px 30px;
}

.wrp_single .wrp_cta .up_box .content {
  font-size: 20px;
}

.wrp_single .wrp_cta .bage {
  margin-top: -30px;
  margin-bottom: 20px;
}

.wrp_single .wrp_cta .bot_box .wrp_box .box .content p {
  height: 72px;
}

.wrp_single .wrp_cta .bot_box .wrp_box .box .content {
  padding-bottom: 0;
}

.wrp_single .green_bg {
  padding: 0 40px;
}

/* prof */
.wrp_wri {
  background-color: #f5f5f5;
  margin-top: 30px;
}

.wrp_wri .i_tit {
  padding: 15px 30px;
  border-bottom: solid 1px #ccc;
  font-size: 18px;
  font-weight: 400;
}

.wrp_wri .wrp_box {
  padding: 20px 30px;
  display: flex;
  flex-wrap: wrap;
}

.wrp_wri .wrp_box .item_img {
  width: 20%;
  padding-right: 20px;
}

.wrp_wri .wrp_box .content {
  width: 80%;
}

.wrp_wri .wrp_box .content .name {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}

.wrp_wri .wrp_box .content .text {
  line-height: 1.7;
}

/* pagenation */
.wrp_pagination {
  margin-top: 30px;
}

.wrp_pagination ul {
  display: flex;
  justify-content: center;
}

.wrp_pagination ul li {
  margin: 0 3px;
}

.wrp_pagination ul .page-numbers {
  padding: 11px 17px;
  font-weight: bold;
  font-size: 12px;
  display: block;
  border: 1px solid #CCCCCC;
  color: var(--color-dark);
  border-radius: 50%;
}

.wrp_pagination ul a.page-numbers:hover {
  border: 1px solid var(--color-dark);
  background-color: var(--color-dark);
  color: #fff;
}

.wrp_pagination ul .page-numbers.current {
  background-color: var(--color-dark);
  color: #fff;
  border: 1px solid var(--color-dark);
}

.wrp_pagination ul .page-numbers i {
  margin-right: 0;
}

.wrp_pagination ul .page-numbers.dots {
  border: 0px solid #000 !important;
}

.wrp_pagination .nav-links {
  width: 100%;
}

.wrp_pagination ul li .next {
  margin-left: 30px;
}

.wrp_pagination ul li .prev {
  margin-right: 30px;
}

.wrp_pagination a:hover {
  text-decoration: none;
  opacity: 1;
}

/*--- company ---*/
.wrp_tate {
  margin-bottom: 50px;
}

.wrp_tate .item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: solid 1px #d3d3d3;
}

.wrp_tate .item .main {
  color: var(--color-primary);
  margin-bottom: 10px;
}

/*--- footer ---*/
footer {
  background-color: var(--color-dark);
  color: #fff;
}

footer .up_box {
  padding: 80px 0;
  border-bottom: 1px solid #fff;
}

footer .up_box .wrp_box {
  display: flex;
}

footer .f_logo {
  display: block;
  width: 20%;
  color: #fff;
  transition: .3s;
}

footer .f_logo img {
  max-width: 100px;
}

footer .f_logo:hover {
  opacity: .7;
}

footer .f_nav {
  width: 80%;
  display: flex;
}

footer .f_nav>li {
  margin: 0 10px;
  font-size: 14px;
}

footer .f_nav>li>.inner {
  padding-left: 10px;
  font-size: 12px;
  margin-top: 10px;
}

footer .f_nav>li>.inner li {
  margin-bottom: 5px;
}

footer .f_nav a {
  color: #fff;
  transition: .3s;
}

footer .f_nav a:hover {
  opacity: .6;
}

footer .bt_box {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
}

footer .bt_box ul {
  display: flex;
}

footer .bt_box ul li {
  margin: 0 10px;
}

footer .bt_box ul li a {
  color: #fff;
}

footer .bt_box ul li a:hover {
  text-decoration: underline;
}

.fix_ban {
  display: none;
}


/*------PC3------*/
@media only screen and (max-width: 1580px) {

  /*--- TOP ---*/
  /* mv */
  .mv .wrp_ab_tit p {
    font-size: 32px;
    height: 350px;
  }

  .mv .wrp_ab_tit p .pink {
    font-size: 42px;
  }

  .mv .wrp_ab_tit .mid {
    font-size: 27px;
  }

  .mv .wrp_ab_tit>.pink {
    height: 280px;
  }

}

/*------PC2------*/
@media only screen and (max-width: 1440px) {

  /*--- footer ---*/
  footer .f_nav>li {
    margin: 0 10px;
  }

}


/*---PAD pro---*/
@media only screen and (max-width: 1050px) {

  /*--- header ---*/
  .head_inner {
    padding: 10px 15px;
  }

  .head_logo {
    padding: 0 0;
  }

  .head_nav {
    display: none;
  }

  .sm-nav-box {
    display: block;
  }

  .head_logo2 {
    display: none;
  }

  /* オフキャンバス */
  .m-toggle {
    border: none;
    display: block;
    position: relative;
    background: none;
    z-index: 9999;
    outline: none !important;
  }

  .offcanvas-toggle .icon-bar {
    background: var(--color-dark);
  }

  .icon-bar {
    display: block;
    width: 30px;
    height: 3px;
    border-radius: 1px;
    margin: auto;
  }

  .icon-bar+.icon-bar {
    margin-top: 5px
  }

  .offcanvas-toggle.is-open .icon-bar {
    background: var(--color-dark);
  }

  .offcanvas-toggle.is-open .icon-bar:nth-child(3) {
    margin-top: 14px;
  }

  .offcanvas-toggle.is-open .icon-bar:nth-child(4) {
    transform: rotate(-135deg) translate(8px, 8px);
    margin-top: 2px;
  }

  .off-base.navbar-offcanvas {
    top: 0;
    overflow: auto;
    z-index: 999;
    padding: 60px 0 0;
  }

  /*offcanvas-size*/
  .navbar-offcanvas {
    max-width: 300px;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-warm);
  }

  .navbar-offcanvas.navbar-offcanvas-right {
    right: -300px;
  }

  .navbar-offcanvas.navbar-offcanvas-right.offcanvas-transform.in {
    -webkit-transform: translateX(-300px);
    transform: translateX(-300px);
  }

  .sm-nav-box ul {
    margin-top: 30px;
    padding: 0 10px;
  }

  .sm-nav-box li {
    border-bottom: solid 1px #ccc;
    position: relative;
  }

  .sm-nav-box li a {
    display: block;
    padding: 15px;
    font-size: 13px;
    color: var(--color-dark);
  }

  .sm-nav-box .poz {
    position: absolute;
    top: 40%;
    right: 5%;
    color: #9f9f9f;
  }

  .top-bor-nav {
    border-top: solid 1px #ccc;
  }

  .sm_drop {
    margin-bottom: 30px;
  }

  .sm-nav-box ul .sm_drop_menu {
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    animation-duration: .3s;
    background-color: #A8A89E;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: -15px;
    margin-left: -15px;
  }

  .sm-nav-box ul .active>.sm_drop_menu {
    height: auto;
    display: block;
    opacity: 1;
    visibility: visible;
    transition: .3s;
    animation-duration: .3s;
  }

  .sm_drop_menu li.last {
    border-bottom: 0px;
  }

  .sm_drop_menu li a {
    display: block;
    position: relative;
    padding: 15px 15px;
    font-size: 13px;
    color: white;
  }

  .sm_drop_menu li.last a {
    border-bottom: 0px solid #000;
  }

  .sm-nav-box ul .active>a {
    border-bottom: 0px;
  }

  #header.fixed #sm-offcanvas a {
    color: #fff;
  }

  #header.fixed .head_logo>a span {
    border-left: 1px solid #fff;
  }

  .sm_drop .plus_drop>a::after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f067";
    font-weight: 900;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    width: 20px;
    height: 25px;
  }

  .sm_drop .plus_drop.active>a::after {
    content: "\f068";
    bottom: auto;
    top: 15px;
  }

  .sm_drop .plus_drop.active {
    border-bottom: 0px;
  }

  .o_cta {
    background-color: #fff;
    padding: 20px 20px;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
  }

  .o_cta .btn_box {
    margin-bottom: 10px;
  }

  .o_cta .btn_box .pub_btn2 {
    width: 100%;
    font-size: 16px;
    padding: 13px 0;
  }

  .o_cta .sub {
    font-size: 14px;
  }

  .o_cta .main {
    font-size: 22px;
  }

  /*--- top ---*/
  /* mv */
  .mv .wrp_ab_tit .second {
    margin-top: 70px;
  }

  .mv .wrp_ab_tit>.pink {
    margin-top: 150px;
  }

}

/*---PAD---*/
@media only screen and (max-width: 880px) {

  body {
    font-size: 14px;
  }

  .sec_inner.pb0 {
    padding-bottom: 0;
  }

  /*--- top ---*/
  /* mv */
  .mv .wrp_ab_tit {
    bottom: -60px;
    left: 8%;
    right: auto;
  }

  .mv .wrp_ab_tit .second {
    height: 330px;
  }

  /* cta */
  .wrp_cta .up_box .content {
    font-size: 18px;
  }

  /* point2 */
  .wrp_point2 .wrp_box .box_tit h3 {
    font-size: 18px;
  }

  .wrp_point2 .wrp_box .box_tit .ab_img {
    width: 170px;
    height: 170px;
    right: -5px;
  }

}

/*---Sm---*/
@media only screen and (max-width: 767px) {

  main {
    margin-top: 67px;
  }

  .navbar-offcanvas {
    max-width: 100%;
  }

  .navbar-offcanvas.navbar-offcanvas-right {
    right: -100%;
  }

  .navbar-offcanvas.navbar-offcanvas-right.offcanvas-transform.in {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  /*--- header ---*/
  /* header{background-color: rgba(255,255,255,0.6);} */
  .head_inner {
    padding: 5px 10px;
  }

  .head_logo {
    display: flex;
    align-items: center;
  }

  .head_logo img {
    max-width: 70px;
  }

  .head_logo .logo_text {
    display: block;
    font-family: 'Shippori Mincho', serif;
    color: var(--color-text);
    padding-left: 10px;
    line-height: 1.7;
  }

  .head_logo .logo_text .pink {
    color: var(--color-primary);
  }

  .head_logo .logo_text .dot {
    display: inline-block;
    position: relative;
  }

  .head_logo .logo_text .dot::before {
    content: '・';
    position: absolute;
    top: -11px;
    left: 0;
    right: 0;
    margin: auto;
  }

  .sm-nav-box {
    position: relative;
  }

  .head_logo2 {
    display: flex;
    align-items: center;
    position: absolute;
    top: 12px;
    left: 10px;
  }

  .head_logo2 img {
    max-width: 70px;
  }

  .head_logo2 {
    color: #0077B9;
  }

  .head_logo2 .main {
    font-size: 18px;
    font-family: 'Alata', sans-serif;
    line-height: 1;
  }

  .head_logo2 .sub {
    font-size: 12px;
  }

  /*--- section ---*/
  .sec_inner {
    padding: 40px 0;
  }

  /*--- kv ---*/
  .kv img {
    object-fit: cover;
    height: 250px;
  }

  .kv .kv_tit .sub {
    font-size: 21px;
  }

  .kv .kv_tit h1,
  .kv .kv_tit .h1 {
    font-size: 22px;
  }

  /*--- fix ---*/
  .fix_tit h2 {
    font-size: 27px;
  }

  /*--- btn ---*/
  .pub_btn {
    font-size: 16px;
    padding-left: 50px;
  }

  .pub_btn::before {
    font-size: 20px;
    left: 10px;
    height: 45px;
  }

  .line_btn {
    border-radius: 0px;
    margin-right: -10px;
    margin-left: -10px;
  }

  .pub_btn2 {
    padding: 10px 40px;
    font-size: 16px;
  }

  .pub_btn2::after {
    height: 20px;
    width: 20px;
    font-size: 11px;
  }

  .ad_cta a {
    width: 85%;
    bottom: 9%;
  }

  /* bread */
  .wrp_bred>.container>div>span {
    margin: 0 5px;
    line-height: 1.5;
  }

  /*--- top ---*/
  /* mv */
  .mv {
    padding-bottom: 0px !important;
    height: 550px !important;
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    overflow: hidden;
  }

  .single-store .mv {
    padding-bottom: 0px !important;
    height: auto !important;
    width: 100% !important;
    margin: 0 !important;
    left: auto;
    right: auto;
  }

  .mv img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    position: relative;
    z-index: 1;
    filter: brightness(1.02) contrast(0.98);
    object-position: 80% 0% !important;
    object-fit: cover !important;
  }

  .single-store .mv img {
    width: 100%;
    max-width: 100%;
  }

  .mv::after {
    content: '';
    position: absolute;
    top: auto !important;
    bottom: 0 !important;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: transparent !important;
    z-index: 1;
  }

  .mv .wrp_ab_tit {
    z-index: 3;
    bottom: 30px !important;
    left: 8% !important;
    right: auto !important;
  }

  .mv .wrp_ab_tit p {
    font-size: 18px;
    height: 300px;
    padding: 10px 0;
    margin: 0 2px;
    line-height: 1.4;
  }

  .mv .wrp_ab_tit p .pink {
    font-size: 18px;
  }

  .mv .wrp_ab_tit .mid {
    font-size: 18px;
  }

  .mv .wrp_ab_tit .second {
    height: 280px;
    margin-top: 40px;
  }

  .mv .wrp_ab_tit>.pink {
    height: 300px;
    margin-top: 80px;
    font-size: 22px;
  }

  .mv_bottom {
    font-size: 18px;
    margin-top: 15px;
    position: relative;
    z-index: 3;
    padding: 20px 0;
  }

  .mv_bottom .mid {
    font-size: 16px;
  }

  .single-store .mv_bottom {
    display: none;
  }

  .wrp_v h2 .big {
    font-size: 40px;
  }

  .wrp_v .sub {
    font-size: 16px;
  }

  .wrp_v .chui {
    font-size: 12px;
  }

  .wrp_v .item {
    width: 100%;
    text-align: center;
  }

  .wrp_v .item img {
    width: 90%;
  }

  .wrp_v .item2 {
    width: 100%;
  }

  .ad_cta {
    margin-top: 30px;
  }

  .smpt0 {
    padding-top: 0;
  }

  .smpt0 .ad_cta {
    margin-top: 0px;
  }

  /* offer */
  .wrp_offer .wrp_tit {
    margin-bottom: 30px;
  }

  .wrp_offer .wrp_tit h2 {
    font-size: 24px;
    line-height: 1.7;
    text-underline-offset: 10px;
  }

  .wrp_offer .wrp_tit .sub {
    font-size: 16px;
  }

  .wrp_offer .box {
    display: block;
  }

  .wrp_offer .box .text {
    width: 100%;
    margin-bottom: 20px;
  }

  .wrp_offer .box .item_img {
    width: 100%;
    margin-left: 0.75rem;
  }

  /* point */
  .p_tit .sub {
    font-size: 16px;
  }

  .wrp_point.grid-2 {
    grid-template-columns: 1fr;
  }

  .wrp_point .box:nth-of-type(odd) {
    padding-left: 50px;
  }

  .wrp_point .box:nth-of-type(even) {
    padding-right: 50px;
  }

  .wrp_point .box .item_img h3 {
    top: -30px;
    font-size: 20px;
    letter-spacing: 3px;
    padding-top: 55px;
  }

  .wrp_point .box .item_img h3::before {
    left: 20px;
    font-size: 18px;
  }

  .wrp_point .box:nth-of-type(odd) .item_img h3 {
    left: -50px;
  }

  .wrp_point .box:nth-of-type(even) .item_img h3 {
    right: -50px;
  }

  .wrp_point .box:last-of-type {
    margin-bottom: 40px;
  }

  /* cta */
  .wrp_cta {
    padding: 0;
  }

  .wrp_cta .up_box {
    position: relative;
    overflow: hidden;
  }

  .wrp_cta .up_box .item_img {
    width: 100%;
    position: static;
    display: block;
  }

  .wrp_cta .up_box .item_img img {
    width: 100%;
    display: block;
    height: auto;
  }

  .wrp_cta .up_box .content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 50%;
    padding: 15px 12px;
    font-size: 13px;
    line-height: 1.6;
    background: linear-gradient(to right, rgba(255,255,255,0.88) 60%, rgba(255,255,255,0));
  }

  .wrp_cta .bage {
    margin-top: 35px;
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
  }

  .wrp_cta .bot_box .wrp_tit h2 {
    margin-bottom: 10px;
  }

  .wrp_cta .bot_box .wrp_box .box .content h3 {
    font-size: 14px;
    height: 37.4px;
  }

  .wrp_cta .bot_box .wrp_tit .wrp_tag {
    margin-bottom: 15px;
  }

  .wrp_cta .bot_box .wrp_tit .wrp_tag p {
    padding: 5px 30px;
  }

  .wrp_cta .bot_box .wrp_tit .sub {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .wrp_cta .bot_box .price {
    text-align: center;
    margin-bottom: 20px;
  }

  .wrp_cta .bot_box .price img {
    width: 90%;
  }

  .wrp_cta .bot_box .wrp_box {
    margin-bottom: 10px;
  }

  .wrp_cta .bot_box .wrp_box .box {
    width: 33%;
  }

  .wrp_cta .bot_box .wrp_box .box .content {
    padding: 10px 1px 5px;
  }

  .wrp_cta .bot_box .wrp_box .box .content p {
    font-size: 12px;
    height: 72px;
  }

  .wrp_cta .bot_box .wrp_copy {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .wrp_cta .bot_box .wrp_copy .big {
    font-size: 18px;
  }

  .wrp_cta .bot_box .wrp_copy .big .pink {
    text-underline-offset: 10px;
  }

  .wrp_cta .btn_box {
    margin-bottom: 40px;
    margin-top: 0;
  }

  .wrp_single .wrp_cta {
    padding: 0;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
  }

  .wrp_single .wrp_cta .up_box .content {
    font-size: 18px;
  }

  .wrp_single .wrp_cta .bage {
    margin-top: 35px;
    margin-bottom: 10px;
  }

  .wrp_single .wrp_cta .bot_box .wrp_box .box .content {
    padding-bottom: 5px;
  }

  .wrp_single .wrp_cta .bot_box .wrp_box .box .content p {
    margin-bottom: 0;
  }

  .wrp_single .green_bg {
    padding: 0;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
  }

  .wrp_single .line_cta .wrp_box .box .item p {
    margin-bottom: 0;
  }

  .wrp_cta .ab_btn {
    margin-bottom: 20px;
  }

  /* l_store */
  .wrp_tit_store {
    margin-bottom: 30px;
  }

  .wrp_tit_store h2 {
    font-size: 28px;
  }

  .wrp_sbox .s_box {
    margin-bottom: 30px;
  }

  .wrp_sbox .s_box h3 {
    padding: 12px;
    padding-left: 40px;
    font-size: 16px;
  }

  .wrp_sbox .s_box h3::before {
    height: 20px;
    top: 13px;
    border-left: solid 3px #fff;
  }

  .wrp_sbox .s_box li {
    margin-bottom: 15px;
  }

  .wrp_sbox .s_box li a {
    padding: 8px 15px;
    padding-right: 30px;
  }

  /* line_cta */
  .line_cta {
    padding: 30px 10px 0px;
  }

  .line_cta .wrp_tit {
    font-size: 16px;
  }

  .line_cta .mid {
    font-size: 20px;
  }

  .line_cta .big {
    font-size: 20px;
  }

  .line_cta .wrp_box .in_tit {
    font-size: 16px;
  }

  .line_cta .wrp_box .box .item p {
    font-size: 14px;
  }

  /* point2 */
  .wrp_point2 {
    padding: 30px 15px;
  }

  .wrp_point2 .wrp_tit {
    font-size: 18px;
  }

  .wrp_point2 .wrp_tit .pink {
    font-size: 20px;
  }

  .wrp_point2 .wrp_tit h2 {
    font-size: 28px;
  }

  .wrp_box.grid.grid-2 {
    grid-template-columns: 1fr;
  }

  .wrp_point2 .wrp_box .box_tit {
    padding: 40px 20px;
  }

  .wrp_point2 .wrp_box .box:nth-of-type(2) .box_tit h3 {
    height: auto;
  }

  .wrp_point2 .wrp_box .box_tit::before {
    font-size: 21px;
  }

  .wrp_point2 .wrp_box .box_tit::after {
    border-bottom: 50px solid transparent;
    border-left: 50px solid var(--color-primary);
  }

  .wrp_point2 .wrp_box .box_tit h3 {
    font-size: 16px;
  }

  .wrp_point2 .wrp_box .box_tit .ab_img {
    width: 160px;
    height: 160px;
    right: -5px;
  }

  /* voice */
  .wrp_voice .wrp_tit {
    margin-bottom: 30px;
  }

  .wrp_voice .wrp_tit .ab_tit {
    height: 90px;
  }

  .wrp_voice .wrp_tit.adjust .ab_tit {
    height: 75px;
  }

  .wrp_voice .wrp_tit .ab_tit h2 {
    font-size: 36px;
  }

  .wrp_voice .wrp_tit img {
    max-width: 100%;
  }

  .wrp_voice .box_img .item img {
    height: 210px;
  }

  .wrp_voice .wrp_box .box .item_img img {
    height: 180px;
  }

  .wrp_voice .wrp_box.grid-3 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  /* flow */
  .wrp_box.grid.grid-3 {
    grid-template-columns: 1fr;
  }

  .wrp_flow {
    padding: 40px 20px;
  }

  /* store */
  .p_tit h2 {
    font-size: 20px;
    padding: 20px 0;
  }

  .wrp_store.grid.grid-2 {
    grid-template-columns: 1fr;
    grid-gap: 5px;
  }

  .wrp_store.grid.grid-3 {
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
  }

  .wrp_store .content {
    padding: 20px 5px;
  }

  .wrp_store .content h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .wrp_store .wrp_info .item .name {
    font-size: 12px;
    width: 33%;
    margin-right: 5px;
  }

  .wrp_store .item_img img {
    height: 250px;
  }

  .wrp_store .wrp_info .item {
    flex-wrap: wrap;
  }

  .wrp_store .address {
    font-size: 10px;
    height: 75px;
  }

  /* access */
  .wrp_saccess {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px 15px;
  }

  .ai_box {
    padding: 20px;
  }

  .g_box iframe {
    height: 300px;
  }

  .ai_box .tit {
    font-size: 16px;
  }

  /* staff */
  .wrp_sstaff {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 20px 15px;
  }

  .wrp_sstaff .text_box {
    padding: 20px;
  }

  .wrp_sstaff .item_img {
    height: 250px;
  }

  .wrp_sstaff .tit {
    font-size: 13px;
  }

  .wrp_sstaff .info {
    font-size: 14px;
  }

  /*--- concept ---*/
  .catch h2 {
    font-size: 21px;
  }

  .catch h3 {
    font-size: 18px;
  }

  .catch .wrp_box {
    padding: 20px 10px;
  }

  .catch .wrp_box .grid-3 {
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
  }

  /* lead */
  .wrp_lead .grid-2 {
    grid-template-columns: 1fr;
    grid-gap: 5px
  }

  /*--- about ---*/
  .wrp_two .text {
    font-size: 18px;
  }

  .wrp_two .wrp_box {
    flex-wrap: wrap-reverse;
  }

  .wrp_two .wrp_box .item_img {
    width: 100%;
    margin-bottom: 15px;
  }

  .wrp_two .wrp_box .content {
    width: 100%;
  }

  /* lr_box */
  .wrp_lr_box .box {
    margin-bottom: 40px;
  }

  .wrp_lr_box .box .item_img {
    width: 100%;
    margin-bottom: 15px;
    padding: 0;
  }

  .wrp_lr_box .box .content {
    width: 100%;
  }

  .wrp_lr_box .box .content h3 {
    font-size: 21px;
    margin-bottom: 10px;
  }

  /*--- effect ---*/
  .my_card {
    margin-bottom: 0;
  }

  /*--- faq ---*/
  .faq_nav li {
    width: 100%;
  }

  .qa_box .qa_item .q {
    margin-bottom: 20px;
  }

  .qa_box .qa_item {
    padding: 20px 10px 10px;
    margin-bottom: 30px;
  }

  /*--- price ---*/
  .wrp_price .box {
    flex-wrap: wrap;
  }

  .wrp_price .box .price,
  .wrp_price .box .name {
    width: 50%;
  }

  .wrp_price .box .content {
    width: 100%;
  }

  .p_chui {
    font-size: 12px;
  }

  /*--- single ---*/
  .wrp_single .wrp_tit h1 {
    font-size: 20px;
  }

  .wrp_single h2 {
    font-size: 21px;
  }

  .wrp_single h3 {
    font-size: 18px;
  }

  .wrp_wri .wrp_box .item_img {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    padding-right: 0;
  }

  .wrp_wri .wrp_box .content {
    width: 100%;
  }

  .wrp_wri .wrp_box .content .name {
    text-align: center;
  }

  /* pagenation */
  .wrp_pagination ul .page-numbers {
    padding: 6px 12px;
  }

  .wrp_pagination ul li .prev {
    margin-right: 15px;
  }

  .wrp_pagination ul li .next {
    margin-left: 15px;
  }

  /*--- footer ---*/
  footer .up_box {
    padding: 60px 0 30px;
  }

  footer .up_box .wrp_box {
    flex-wrap: wrap;
  }

  footer .f_logo {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }

  footer .f_nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  footer .f_nav>li {
    width: 48%;
    text-align: center;
    margin: 0 1%;
    margin-bottom: 30px;
  }

  footer .bt_box {
    flex-wrap: wrap;
  }

  footer .bt_box ul {
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
  }

  footer .bt_box p {
    text-align: center;
    width: 100%;
  }

  .fix_ban {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    opacity: 0;
    transition: .3s;
    visibility: hidden;
  }

  .fix_ban.fixed {
    opacity: 1;
    transition: .3s;
    visibility: visible;
  }

  .fix_ban a {
    display: block;
    transition: .3s;
    width: 50%;
  }

  .fix_ban a:hover {
    opacity: 1 !important;
  }

  .fix_ban a img {
    width: 100%;
  }

}

@media (max-width: 480px) {

  /*--- store ---*/
  .single-store main {
    margin-top: 93px;
  }

  .wrp_saccess {
    padding: 15px 10px;
    gap: 20px;
  }

  .ai_box {
    padding: 15px;
  }

  .ai_box .tit {
    font-size: 14px;
  }

  .ai_box .info {
    font-size: 13px;
  }

  .ai_box .item {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .g_box iframe {
    height: 250px;
  }

  .wrp_tit_store.ajust h2 {
    font-size: 24px;
  }

  /* staff */
  .wrp_sstaff {
    padding: 15px 10px;
    gap: 20px;
  }

  .wrp_sstaff .text_box {
    padding: 15px;
  }

  .wrp_sstaff .item_img {
    height: 250px;
  }

  .wrp_sstaff .item {
    margin-bottom: 16px;
    padding-bottom: 12px;
  }

}

/*---Sm small---*/
@media only screen and (max-width: 350px) {}

/* ===== アメブロフィードセクション ===== */
.blog-feed-section {
  background-color: #fff;
}

.blog-feed-inner {
  padding: 60px 0 50px;
}

.blog-feed-header {
  text-align: center;
  margin-bottom: 40px;
}

.blog-feed-label {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--color-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.blog-feed-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 0;
  letter-spacing: 3px;
}

.blog-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-feed-card {
  display: block;
  text-decoration: none;
  color: var(--color-text);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0;
  overflow: hidden;
}

.blog-feed-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 1;
  text-decoration: none;
  color: var(--color-text);
}

/* .blog-feed-thumb は index.php での実際のクラス名、.card-thumb は旧クラス名 */
.blog-feed-card .card-thumb,
.blog-feed-card .blog-feed-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background-color: var(--color-bg-warm);
}

.blog-feed-card .card-thumb img,
.blog-feed-card .blog-feed-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-feed-card:hover .card-thumb img,
.blog-feed-card:hover .blog-feed-thumb img {
  transform: scale(1.08);
}

/* blog-feed-link: カード全体をリンクにするaタグ用 */
.blog-feed-card .blog-feed-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-feed-card .blog-feed-link:hover {
  text-decoration: none;
  color: inherit;
  opacity: 1;
}

/* blog-feed-body: card-body の別名 */
.blog-feed-card .card-body,
.blog-feed-card .blog-feed-body {
  padding: 15px 5px;
}

/* blog-feed-card-title: card-title の別名 */
.blog-feed-card .card-title,
.blog-feed-card .blog-feed-card-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* blog-feed-date / blog-feed-meta / blog-feed-cat: card-date の別名 */
.blog-feed-card .card-date,
.blog-feed-card .blog-feed-date,
.blog-feed-card .blog-feed-meta {
  font-size: 13px;
  color: #999;
  letter-spacing: 1px;
}

.blog-feed-card .blog-feed-cat {
  font-size: 13px;
  color: #aaa;
}

/* ローディングスピナー */
.blog-feed-loading {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.blog-feed-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--color-primary-light);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: blogSpin 0.8s linear infinite;
}

@keyframes blogSpin {
  to {
    transform: rotate(360deg);
  }
}

/* エラー表示 */
.blog-feed-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-size: 14px;
}

/* レスポンシブ */
@media only screen and (max-width: 767px) {
  .blog-feed-inner {
    padding: 40px 0 30px;
  }

  .blog-feed-header {
    margin-bottom: 25px;
  }

  .blog-feed-title {
    font-size: 24px;
  }

  .blog-feed-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .blog-feed-card .card-thumb,
  .blog-feed-card .blog-feed-thumb {
    aspect-ratio: 16 / 9;
  }

  .blog-feed-card .card-title {
    font-size: 14px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1050px) {
  .blog-feed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* ===== メディア情報スライダーセクション ===== */
.media-feed-section {
  padding: 10px 0 20px;
}

.media-feed-header {
  text-align: center;
  margin-bottom: 40px;
}

.media-feed-label {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--color-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 5px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.media-feed-title {
  font-family: var(--font-serif);
  font-size: 16px;
  color: #666;
  margin-bottom: 0;
  letter-spacing: 2px;
  font-weight: 400;
}

.media-slider-wrap {
  position: relative;
  padding: 0 40px;
}

/* スライドカード */
.media-slide-card {
  display: block !important;
  text-decoration: none;
  color: var(--color-text);
  padding: 0 10px;
  outline: none;
}

.media-slide-card:hover {
  text-decoration: none;
  color: var(--color-text);
}

.media-slide-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--color-bg-warm);
}

.media-slide-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.media-slide-card:hover .media-slide-thumb img {
  transform: scale(1.05);
}

.media-slide-body {
  padding: 12px 2px;
}

.media-slide-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.media-slide-meta {
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.media-slide-date {
  letter-spacing: 1px;
}

.media-slide-cat {
  color: #aaa;
}

.media-slide-cat::before {
  content: "｜";
  margin-right: 2px;
}

/* Slick内蔵矢印は非表示（外部ナビボタンを使用） */
.media-slider .slick-prev,
.media-slider .slick-next,
.media-slider .slick-arrow {
  display: none !important;
}

/* 外部ナビゲーションボタン */
.media-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 22px;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: color 0.2s;
}

.media-nav-btn:hover {
  color: var(--color-primary);
}

.media-nav-prev {
  left: 0;
}

.media-nav-next {
  right: 0;
}

/* ローディング */
.media-feed-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  width: 100%;
}

/* レスポンシブ */
@media only screen and (max-width: 767px) {
  .media-feed-section {
    padding: 0 0 10px;
  }

  .media-feed-header {
    margin-bottom: 25px;
  }

  .media-slider-wrap {
    padding: 0 30px;
  }

  .media-slide-card {
    padding: 0 5px;
  }

  .media-nav-btn {
    font-size: 18px;
    width: 28px;
  }
}

/* ======================================================================
   サービスページ (service-page.html) 用スタイル
   ====================================================================== */
/* ===== サービスページ専用スタイル (スコープ付き) ===== */
.service-page {
  color: var(--color-text, #323232);
  line-height: 1.9;
}

.service-page p {
  margin-bottom: 1.4em;
  font-size: 16px;
}

.service-page h2,
.service-page h3 {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  line-height: 1.5;
}

.service-page h2 {
  font-size: 28px;
  color: var(--color-primary, #65989F);
  margin: 0 0 24px;
  text-align: center;
}

.service-page h2 .en {
  display: block;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--color-primary, #65989F);
  margin-bottom: 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-page h3 {
  font-size: 22px;
  color: var(--color-primary, #65989F);
  margin: 40px 0 18px;
  padding-left: 14px;
  border-left: 4px solid var(--color-primary, #65989F);
}

.service-page .lead {
  font-size: 18px;
  line-height: 2;
  text-align: center;
  margin: 30px auto 50px;
  max-width: 720px;
}

.service-page .accent {
  color: var(--color-primary, #65989F);
  font-weight: 600;
}

/* ヒーロー */
.service-page .cp-hero {
  position: relative;
  margin: 0 -15px 60px;
}

.service-page .cp-hero img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-page .cp-hero-tit {
  text-align: center;
  padding: 50px 20px 20px;
}

.service-page .cp-hero-tit p.sub {
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--color-primary, #65989F);
  margin: 0 0 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-page .cp-hero-tit h1 {
  font-family: 'Shippori Mincho', serif;
  font-size: 30px;
  line-height: 1.7;
  color: var(--color-text, #323232);
  margin: 0;
  font-weight: 500;
}

.service-page .cp-hero-tit h1 .pink {
  color: var(--color-primary, #65989F);
}

/* 料金テーブル */
div.service-page table.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 20px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(101, 152, 159, 0.15);
}

div.service-page table.price-table tbody tr {
  transition: background-color 0.3s ease;
}

div.service-page table.price-table tbody tr:hover {
  background-color: rgba(101, 152, 159, 0.03);
}

div.service-page table.price-table tbody tr td {
  padding: 18px 24px;
  font-size: 16px;
  border: none;
  border-bottom: 1px dashed rgba(101, 152, 159, 0.2);
}

div.service-page table.price-table tbody tr:last-child td {
  border-bottom: none;
}

div.service-page table.price-table tbody tr td.label {
  font-weight: 500;
  color: #444;
  letter-spacing: 0.5px;
}

div.service-page table.price-table tbody tr td.price {
  text-align: right;
  font-weight: 600;
  color: var(--color-primary, #65989F);
  font-size: 20px;
  font-family: 'Shippori Mincho', serif;
}

.service-page .price-note {
  font-size: 13px;
  color: #888;
  text-align: right;
  margin-top: 10px;
  letter-spacing: 1px;
}

.service-page .price-inquiry {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  color: var(--color-primary, #65989F);
  font-weight: 600;
  margin-top: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(101, 152, 159, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-page .price-inquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

/* 2カラム (テキスト + 画像) */
.service-page .cp-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin: 80px 0;
}

.service-page .cp-row.reverse {
  flex-direction: row-reverse;
}

.service-page .cp-row .cp-text {
  flex: 1;
  min-width: 0;
}

.service-page .cp-row .cp-img {
  flex: 0 0 350px;
  min-width: 0;
}

.service-page .cp-row .cp-img img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-page .cp-row .cp-img img+img {
  margin-top: 16px;
}

/* セットメニューカード */
.service-page .cp-card {
  background-color: var(--color-bg-warm, #f2f6f7);
  padding: 50px 40px;
  border-radius: 8px;
  margin: 60px 0;
}

.service-page .cp-card .cp-card-tit {
  text-align: center;
  margin-bottom: 30px;
}

.service-page .cp-card .cp-card-tit .num {
  display: inline-block;
  font-family: 'Shippori Mincho', serif;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--color-primary, #65989F);
  margin-bottom: 6px;
}

.service-page .cp-card .cp-card-tit h2 {
  margin: 0;
}

.service-page .set-detail {
  background: #fff;
  border-radius: 8px;
  padding: 36px 32px 30px;
  margin: 30px auto 0;
  max-width: 640px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(101, 152, 159, 0.15);
}

.service-page .set-detail .set-name {
  font-family: 'Shippori Mincho', serif;
  color: var(--color-primary, #65989F);
  font-size: 18px;
  margin: 0 0 10px;
  text-align: center;
  line-height: 1.5;
}

.service-page .set-detail .set-combo {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin: 0 0 24px;
  letter-spacing: 1px;
}

.service-page .set-detail .set-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 12px;
  border-top: 1px dashed rgba(101, 152, 159, 0.3);
}

.service-page .set-detail .set-price:first-of-type {
  border-top: none;
}

.service-page .set-detail .set-price .lbl {
  font-size: 15px;
  color: #444;
  font-weight: 500;
}

.service-page .set-detail .set-price .val {
  font-weight: 600;
  color: var(--color-primary, #65989F);
  font-size: 22px;
  font-family: 'Shippori Mincho', serif;
}

.service-page .set-detail .set-price .strike {
  color: #aaa;
  font-size: 14px;
  text-decoration: line-through;
  margin-right: 12px;
  font-weight: 400;
  font-family: sans-serif;
}

/* 補足情報カード */
.service-page .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0 50px;
}

.service-page .info-item {
  background: #fff;
  border: 1px solid var(--color-primary-light, #B0CFD2);
  border-radius: 6px;
  padding: 22px 24px;
}

.service-page .info-item h4 {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  color: var(--color-primary, #65989F);
  margin: 0 0 10px;
  padding-left: 22px;
  position: relative;
}

.service-page .info-item h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary-light, #B0CFD2);
}

.service-page .info-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

/* CTA */
.service-page .cp-cta {
  text-align: center;
  margin: 70px 0 40px;
  padding: 50px 20px;
  background: linear-gradient(135deg, var(--color-pink-pale, #fdf5f6), var(--color-bg-warm, #f2f6f7));
  border-radius: 8px;
}

.service-page .cp-cta h2 {
  margin-bottom: 12px;
}

.service-page .cp-cta p {
  margin-bottom: 28px;
}

.service-page .cp-cta .btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}

.service-page .cp-cta .btn-row a {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

/* SNS リンク */
.service-page .cp-sns {
  text-align: center;
  margin: 50px 0;
}

.service-page .cp-sns h2 {
  margin-bottom: 30px;
}

.service-page .cp-sns ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-page .cp-sns li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #fff;
  border: 1px solid var(--color-primary-light, #B0CFD2);
  border-radius: 30px;
  color: var(--color-text, #323232);
  text-decoration: none;
  font-size: 14px;
  transition: .3s;
}

.service-page .cp-sns li a:hover {
  background: var(--color-primary, #65989F);
  color: #fff;
  border-color: var(--color-primary, #65989F);
}

/* お客様の声カード */
.service-page .voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 30px 0 50px;
}

.service-page .voice-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px 22px 22px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-page .voice-card::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 60px;
  color: var(--color-primary-light, #B0CFD2);
  line-height: 0.8;
  position: absolute;
  top: 18px;
  left: 16px;
  pointer-events: none;
}

.service-page .voice-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 14px;
  border: 3px solid var(--color-primary-light, #B0CFD2);
}

.service-page .voice-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.85;
  color: #444;
  margin: 0 0 14px;
  padding-top: 4px;
}

.service-page .voice-name {
  font-size: 13px;
  color: #999;
  text-align: right;
  margin: 0;
  font-weight: 500;
  border-top: 1px solid #f0f0f0;
  padding-top: 10px;
}

/* Google口コミグリッド */
.service-page .google-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0 50px;
}

.service-page .google-grid img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, .1);
  display: block;
}

/* レスポンシブ */
@media (max-width: 767px) {
  .service-page h2 {
    font-size: 22px;
  }

  .service-page h3 {
    font-size: 18px;
  }

  .service-page .cp-hero-tit h1 {
    font-size: 22px;
  }

  .service-page .cp-hero-tit {
    padding: 30px 15px 10px;
  }

  .service-page .cp-row,
  .service-page .cp-row.reverse {
    flex-direction: column;
    gap: 24px;
    margin: 50px 0;
  }

  .service-page .cp-row .cp-img {
    flex: 0 0 auto;
    width: 100%;
  }

  .service-page .cp-card {
    padding: 40px 20px;
  }

  .service-page .price-table td {
    padding: 14px 16px;
  }

  .service-page .set-detail {
    padding: 28px 20px 24px;
  }

  .service-page .cp-cta .btn-row a {
    min-width: 100%;
  }

  .service-page .info-grid {
    grid-template-columns: 1fr;
  }

  .service-page .voice-grid {
    grid-template-columns: 1fr;
  }

  .service-page .google-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* ==========================================================================
   活動実績ページ (Activities Page)
   ========================================================================== */
.activities-page {
  color: var(--color-text, #323232);
  line-height: 1.9;
}

.activities-page p {
  margin-bottom: 1.4em;
  font-size: 16px;
}

.activities-page h2,
.activities-page h3 {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  line-height: 1.5;
}

.activities-page h2 {
  font-size: 28px;
  color: var(--color-primary, #65989F);
  margin: 0 0 24px;
  text-align: center;
}

.activities-page h2 .en {
  display: block;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--color-primary, #65989F);
  margin-bottom: 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.activities-page h3 {
  font-size: 22px;
  color: var(--color-primary, #65989F);
  margin: 40px 0 18px;
  padding-left: 14px;
  border-left: 4px solid var(--color-primary, #65989F);
}

.activities-page .lead {
  font-size: 18px;
  line-height: 2;
  text-align: center;
  margin: 30px auto 50px;
  max-width: 720px;
}

.activities-page .accent {
  color: var(--color-primary, #65989F);
  font-weight: 600;
}

/* ヒーロー */
.activities-page .cp-hero {
  position: relative;
  margin: 0 -15px 60px;
}

.activities-page .cp-hero img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.activities-page .cp-hero-tit {
  text-align: center;
  padding: 50px 20px 20px;
}

.activities-page .cp-hero-tit p.sub {
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--color-primary, #65989F);
  margin: 0 0 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.activities-page .cp-hero-tit h1 {
  font-family: 'Shippori Mincho', serif;
  font-size: 30px;
  line-height: 1.7;
  color: var(--color-text, #323232);
  margin: 0;
  font-weight: 500;
}

.activities-page .cp-hero-tit h1 .pink {
  color: var(--color-primary, #65989F);
}

/* 書籍セクション */
.activities-page .book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.activities-page .book-item {
  text-align: center;
  background: #fff;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.activities-page .book-item img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.activities-page .book-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--color-primary, #65989F);
}

.activities-page .book-item .rank {
  font-size: 13px;
  color: #d63384;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

/* 実績リスト (年表風) */
.activities-page .history-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  border-top: 1px solid #eee;
}

.activities-page .history-list li {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.activities-page .history-list .date {
  flex: 0 0 100px;
  font-weight: 600;
  color: #999;
  font-size: 14px;
}

.activities-page .history-list .content {
  flex: 1;
}

.activities-page .history-list .content strong {
  display: block;
  color: var(--color-primary, #65989F);
  margin-bottom: 4px;
}

.activities-page .history-list .content .tag {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  background: #f0f0f0;
  margin-right: 8px;
  color: #666;
}

/* プロフィール */
body .activities-page .cp-story {
  background-color: var(--color-bg-warm, #f2f6f7);
  padding: 60px 48px !important;
  border-radius: 8px;
  margin: 60px -80px !important;
}

.activities-page .cp-story-grid {
  display: grid;
  grid-template-columns: minmax(160px, 800px) 1fr;
  gap: 40px;
  align-items: start;
}

.activities-page .cp-story-grid img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.activities-page .qualifications {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.activities-page .qualifications span {
  background: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  border: 1px solid #ddd;
}

/* CTA */
.activities-page .cp-cta {
  text-align: center;
  margin: 70px 0 40px;
  padding: 50px 20px;
  background: linear-gradient(135deg, var(--color-pink-pale, #fdf5f6), var(--color-bg-warm, #f2f6f7));
  border-radius: 8px;
}

.activities-page .cp-cta h2 {
  margin-bottom: 12px;
}

.activities-page .cp-cta p {
  margin-bottom: 28px;
}

.activities-page .cp-cta .btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}

.activities-page .cp-cta .btn-row a {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

/* SNS リンク */
.activities-page .cp-sns {
  text-align: center;
  margin: 50px 0;
}

.activities-page .cp-sns h2 {
  margin-bottom: 30px;
}

.activities-page .cp-sns ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.activities-page .cp-sns li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #fff;
  border: 1px solid var(--color-primary-light, #B0CFD2);
  border-radius: 30px;
  color: var(--color-text, #323232);
  text-decoration: none;
  font-size: 14px;
  transition: .3s;
}

.activities-page .cp-sns li a:hover {
  background: var(--color-primary, #65989F);
  color: #fff;
  border-color: var(--color-primary, #65989F);
}

/* レスポンシブ */
@media (max-width: 900px) {
  body .activities-page .cp-story {
    padding: 40px !important;
    margin: 40px -40px !important;
  }

  .activities-page .cp-story-grid {
    grid-template-columns: minmax(120px, 800px) 1fr;
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .activities-page .cp-row {
    flex-direction: column;
  }

  .activities-page .book-grid {
    grid-template-columns: 1fr;
  }

  .activities-page .history-list li {
    flex-direction: column;
    gap: 5px;
  }

  .activities-page .history-list .date {
    flex: none;
  }

  body .activities-page .cp-story {
    padding: 32px 20px !important;
    margin: 40px -20px !important;
    border-radius: 0 !important;
  }

  .activities-page .cp-story-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .activities-page .cp-story-grid img {
    max-width: 160px;
    margin: 0 auto;
  }
}

/* ======================================================================
   コンセプトページ専用スタイル (concept-page.html より移植)
   ====================================================================== */
body .concept-page {
  color: var(--color-text, #323232);
  line-height: 1.9;
}

body .concept-page p {
  margin-bottom: 1.4em;
  font-size: 16px;
}

body .concept-page h2,
body .concept-page h3 {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  line-height: 1.5;
}

body .concept-page h2 {
  font-size: 28px;
  color: var(--color-primary, #65989F);
  margin: 0 0 24px;
  text-align: center;
}

body .concept-page h2 .en {
  display: block;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--color-primary, #65989F);
  margin-bottom: 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

body .concept-page h3 {
  font-size: 22px;
  color: var(--color-primary, #65989F);
  margin: 40px 0 18px;
  padding-left: 14px;
  border-left: 4px solid var(--color-primary, #65989F);
}

body .concept-page .lead {
  font-size: 18px;
  line-height: 2;
  text-align: center;
  margin: 30px auto 50px;
  max-width: 720px;
}

body .concept-page .accent {
  color: var(--color-primary, #65989F);
  font-weight: 600;
}

/* ヒーロー */
body .concept-page .cp-hero {
  position: relative;
  margin: 0 -15px 60px;
}

body .concept-page .cp-hero img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

body .concept-page .cp-hero-tit {
  text-align: center;
  padding: 50px 20px 20px;
}

body .concept-page .cp-hero-tit p.sub {
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--color-primary, #65989F);
  margin: 0 0 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

body .concept-page .cp-hero-tit h1 {
  font-family: 'Shippori Mincho', serif;
  font-size: 30px;
  line-height: 1.7;
  color: var(--color-text, #323232);
  margin: 0;
  font-weight: 500;
}

body .concept-page .cp-hero-tit h1 .pink {
  color: var(--color-primary, #65989F);
}

/* 固定ページタイトルの調整 (サイズと位置) */
body .page-header {
  margin-top: 90px !important;
  margin-bottom: 20px !important;
}

body .page-title {
  font-size: 24px !important;
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.1em;
  border-bottom: none;
  padding-bottom: 0;
}

/* 2カラム (テキスト + 画像) */
body .concept-page .cp-row {
  display: flex;
  gap: 40px;
  align-items: center;
  margin: 60px 0;
}

body .concept-page .cp-row.reverse {
  flex-direction: row-reverse;
}

body .concept-page .cp-row .cp-text {
  flex: 1;
  min-width: 0;
}

body .concept-page .cp-row .cp-img {
  flex: 1;
  min-width: 0;
}

body .concept-page .cp-row .cp-img img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

/* ビフォーアフター */
body .concept-page .cp-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0;
}

body .concept-page .cp-ba figure {
  margin: 0;
}

body .concept-page .cp-ba img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body .concept-page .cp-ba figcaption {
  margin-top: 8px;
  text-align: center;
  font-size: 13px;
  color: #666;
  letter-spacing: 2px;
}

/* 限定・こだわりカード */
body .concept-page .cp-card {
  background-color: var(--color-bg-warm, #f2f6f7);
  padding: 40px 32px;
  border-radius: 8px;
  margin: 50px 0;
}

body .concept-page .cp-card .cp-card-tit {
  text-align: center;
  margin-bottom: 24px;
}

body .concept-page .cp-card .cp-card-tit .num {
  display: inline-block;
  font-family: 'Shippori Mincho', serif;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--color-primary, #65989F);
  margin-bottom: 6px;
}

body .concept-page .cp-card .cp-card-tit h2 {
  margin: 0;
}

/* こだわりリスト */
body .concept-page .cp-feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

body .concept-page .cp-feature-list li {
  padding: 16px 16px 16px 48px;
  background: #fff;
  border-radius: 4px;
  margin-bottom: 10px;
  position: relative;
}

body .concept-page .cp-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 14px;
  color: var(--color-primary, #65989F);
  font-weight: bold;
  font-size: 18px;
}

body .concept-page .cp-feature-list li strong {
  display: block;
  color: var(--color-primary, #65989F);
  margin-bottom: 4px;
  font-size: 16px;
}

/* オーナーストーリー */
body .concept-page .cp-story {
  background-color: var(--color-pink-pale, #fdf5f6);
  padding: 60px 32px;
  border-radius: 8px;
  margin: 60px 0;
}

body .concept-page .cp-story .cp-story-head {
  text-align: center;
  margin-bottom: 40px;
}

body .concept-page .cp-story .cp-story-head .ribbon {
  display: inline-block;
  padding: 6px 28px;
  background: #fff;
  border-radius: 24px;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--color-primary, #65989F);
  margin-bottom: 14px;
}

body .concept-page .cp-story-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

body .concept-page .cp-story-grid img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

body .concept-page .cp-story-grid .signature {
  margin-top: 30px;
  text-align: right;
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  color: var(--color-primary, #65989F);
}

/* CTA */
body .concept-page .cp-cta {
  text-align: center;
  margin: 70px 0 40px;
  padding: 50px 20px;
  background: linear-gradient(135deg, var(--color-pink-pale, #fdf5f6), var(--color-bg-warm, #f2f6f7));
  border-radius: 8px;
}

body .concept-page .cp-cta h2 {
  margin-bottom: 12px;
}

body .concept-page .cp-cta p {
  margin-bottom: 28px;
}

body .concept-page .cp-cta .btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}

body .concept-page .cp-cta .btn-row a {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
}

/* SNS リンク */
body .concept-page .cp-sns {
  text-align: center;
  margin: 50px 0;
}

body .concept-page .cp-sns h2 {
  margin-bottom: 30px;
}

body .concept-page .cp-sns ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

body .concept-page .cp-sns li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #fff;
  border: 1px solid var(--color-primary-light, #B0CFD2);
  border-radius: 30px;
  color: var(--color-text, #323232);
  text-decoration: none;
  font-size: 14px;
  transition: .3s;
}

body .concept-page .cp-sns li a:hover {
  background: var(--color-primary, #65989F);
  color: #fff;
  border-color: var(--color-primary, #65989F);
}

body .concept-page .cp-sns li a i {
  font-size: 18px;
}

/* レスポンシブ */
@media (max-width: 767px) {
  body .concept-page h2 {
    font-size: 22px;
  }

  body .concept-page h3 {
    font-size: 18px;
  }

  body .concept-page .cp-hero-tit h1 {
    font-size: 22px;
  }

  body .concept-page .cp-hero-tit {
    padding: 30px 15px 10px;
  }

  body .concept-page .cp-row,
  body .concept-page .cp-row.reverse {
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
  }

  body .concept-page .cp-card,
  body .concept-page .cp-story {
    padding: 30px 18px;
  }

  body .concept-page .cp-story-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body .concept-page .cp-story-grid img {
    max-width: 240px;
    margin: 0 auto;
  }

  body .concept-page .cp-ba {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  body .concept-page .cp-cta {
    padding: 40px 18px;
    margin: 50px 0 20px;
  }

  body .concept-page .cp-cta .btn-row a {
    min-width: 100%;
  }
}


/* ==========================================================================
   Contact Form 7 スタイリング (みかサロン)
   ========================================================================== */

/* フォームラッパー */
.wpcf7 {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

/* フォームフィールド全体の間隔 */
.wpcf7 .wpcf7-form p {
  margin-bottom: 0;
}

/* --- ラベル --- */
.wpcf7 label,
.wpcf7 .wpcf7-form-control-wrap label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text, #323232);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

/* 各フォームアイテム（ラベル + フィールドのセット） */
.wpcf7-form .cf7-field {
  margin-bottom: 28px;
}

/* ラベル直後にフィールドが来る場合 */
.wpcf7 br {
  display: none;
}

/* --- テキスト・メール・電話入力欄 --- */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #d9e8ea;
  border-radius: 8px;
  background: #fff;
  font-size: 15px;
  color: var(--color-text, #323232);
  font-family: 'Noto Sans JP', sans-serif;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  box-sizing: border-box;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  border-color: var(--color-primary, #65989F);
  box-shadow: 0 0 0 3px rgba(101, 152, 159, 0.18);
}

/* プレースホルダー */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #b8c8cb;
  font-size: 14px;
}

/* テキストエリア */
.wpcf7 textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.8;
}

/* --- セレクトボックス --- */
.wpcf7 select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2365989F' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}

/* --- ラジオボタン --- */
.wpcf7 .wpcf7-radio,
.wpcf7 .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 4px;
}

.wpcf7 .wpcf7-radio .wpcf7-list-item,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.wpcf7 .wpcf7-radio input[type="radio"],
.wpcf7 .wpcf7-checkbox input[type="checkbox"] {
  width: auto;
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid #b0cfd2;
  border-radius: 50%;
  cursor: pointer;
  margin-right: 8px;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.wpcf7 .wpcf7-checkbox input[type="checkbox"] {
  border-radius: 4px;
}

.wpcf7 .wpcf7-radio input[type="radio"]:checked,
.wpcf7 .wpcf7-checkbox input[type="checkbox"]:checked {
  border-color: var(--color-primary, #65989F);
  background: var(--color-primary, #65989F);
}

.wpcf7 .wpcf7-radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wpcf7 .wpcf7-checkbox input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}

.wpcf7 .wpcf7-list-item-label {
  font-size: 14px;
  color: var(--color-text, #323232);
  cursor: pointer;
  line-height: 1.5;
}

/* --- 必須マーク --- */
.wpcf7 .required-mark,
.wpcf7 abbr[title="required"] {
  color: #c0496b;
  font-size: 12px;
  margin-left: 5px;
  text-decoration: none;
}

/* <span class="must">必須</span> バッジ */
.must {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: #c0496b;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  margin-left: 8px;
  vertical-align: middle;
  line-height: 1.6;
}

/* CF7デフォルトの必須バッジをスタイリング */
.wpcf7 .wpcf7-validates-as-required {
  /* 入力欄への視覚的ヒント */
}

/* --- 送信ボタン --- */
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 40px auto 0;
  padding: 18px 40px;
  background: var(--color-primary, #65989F);
  color: #fff;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(101, 152, 159, 0.35);
  -webkit-appearance: none;
  appearance: none;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover {
  background: var(--color-green-dark, #4e777d);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(101, 152, 159, 0.45);
}

.wpcf7 input[type="submit"]:active,
.wpcf7 .wpcf7-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(101, 152, 159, 0.3);
}

/* 送信中スピナー */
.wpcf7 .wpcf7-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(101, 152, 159, 0.3);
  border-top-color: var(--color-primary, #65989F);
  border-radius: 50%;
  animation: cf7-spin 0.7s linear infinite;
  margin-left: 10px;
  vertical-align: middle;
}

@keyframes cf7-spin {
  to { transform: rotate(360deg); }
}

/* --- バリデーションメッセージ --- */
.wpcf7 .wpcf7-not-valid-tip {
  display: block;
  color: #c0496b;
  font-size: 12px;
  margin-top: 5px;
  padding-left: 2px;
  animation: cf7-fade-in 0.25s ease;
}

/* エラー状態の入力欄 */
.wpcf7 .wpcf7-not-valid {
  border-color: #c0496b !important;
  background: #fff8f9 !important;
  box-shadow: 0 0 0 3px rgba(192, 73, 107, 0.12) !important;
}

/* 送信後のレスポンスメッセージ */
.wpcf7 .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border: none;
  animation: cf7-fade-in 0.3s ease;
}

/* 送信成功 */
.wpcf7.sent .wpcf7-response-output {
  background: #edfaf3;
  color: #1a8a55;
  border-left: 4px solid #2bbb75;
}

/* 送信失敗 / バリデーションエラー */
.wpcf7.failed .wpcf7-response-output,
.wpcf7.invalid .wpcf7-response-output,
.wpcf7.unaccepted .wpcf7-response-output,
.wpcf7.spam .wpcf7-response-output {
  background: #fff3f5;
  color: #c0496b;
  border-left: 4px solid #c0496b;
}

@keyframes cf7-fade-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- フォームセクション区切り（任意） --- */
.wpcf7 .cf7-section-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  color: var(--color-primary, #65989F);
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--color-primary-light, #B0CFD2);
  margin: 36px 0 20px;
  letter-spacing: 0.08em;
}

/* --- 注記テキスト --- */
.wpcf7 .cf7-note {
  font-size: 12px;
  color: #888;
  margin-top: 6px;
  line-height: 1.6;
}

/* --- レスポンシブ --- */
@media (max-width: 767px) {
  .wpcf7 input[type="text"],
  .wpcf7 input[type="email"],
  .wpcf7 input[type="tel"],
  .wpcf7 input[type="url"],
  .wpcf7 input[type="number"],
  .wpcf7 textarea,
  .wpcf7 select {
    padding: 13px 14px;
    font-size: 16px; /* iOSのズーム防止 */
  }

  .wpcf7 .wpcf7-radio,
  .wpcf7 .wpcf7-checkbox {
    gap: 8px 14px;
  }

  .wpcf7 input[type="submit"],
  .wpcf7 .wpcf7-submit {
    max-width: 100%;
    font-size: 15px;
    padding: 16px 30px;
  }
}