@charset "UTF-8";

* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow: auto;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans JP", "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, sans-serif;
  width: 100%;
  min-width: 1000px;
  background: #ffffff;
  margin: 0 auto;
  padding: 0;
  color: #666666;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  body {
    min-width: 100%;
  }
}

ul,
li,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  font-size: 1.6rem;
}

@media only screen and (max-width: 768px) {

  ul,
  li,
  ol {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
}

@media only screen and (max-width: 768px) {
  p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: normal;
  }
}

strong {
  color: #000000;
}

strong.sub {
  color: #ff3333;
}

object {
  pointer-events: none;
}

a {
  text-decoration: none;
  color: #666666;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:link {
  color: #666666;
}

a:visited {
  color: #666666;
  text-decoration: none;
}

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

img {
  max-width: 100%;
  height: auto;
  line-height: 0;
  vertical-align: middle;
}

figure {
  margin: 0;
}

li img,
dt img,
dd img {
  vertical-align: middle;
}

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

table {
  margin: 0 auto;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0px;
}

table th,
table td {
  padding: 10px;
}

h1,
h2,
h3,
h4,
h5 {
  clear: both;
  margin: 0;
  padding: 0;
}

#wrapper {
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  #wrapper {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 0px;
  }
}

#pagebox {
  max-width: 1000px;
  margin: 0 auto;
}

#main {
  width: 70%;
  padding-bottom: 80px;
}

#side {
  width: 28%;
}

@media only screen and (max-width: 768px) {
  #main {
    width: 100%;
    padding-bottom: 40px;
  }

  #side {
    width: 100%;
    padding-bottom: 40px;
  }
}

.inner_pages,
.inner_pages_full {
  max-width: 1000px;
  margin: 0 auto;
}

.inner_block,
.inner_box {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.page_block {
  margin: 0 auto;
}

.item_block_center {
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.item_row_reverse {
  -webkit-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media only screen and (max-width: 768px) {

  .inner_block,
  .inner_pages {
    width: 100%;
    padding: 0 10px;
    -webkit-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .inner_box {
    width: 100%;
    padding: 0;
    -webkit-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .inner_pages_full {
    width: 100%;
    padding: 0;
  }
}

.item_box {
  margin-bottom: 30px;
}

.item_half {
  width: calc(100% / 2 - 10px);
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .item_box {
    padding: 0 10px;
    margin-bottom: 15px;
  }

  .item_half {
    width: 100%;
    margin-bottom: 10px;
  }
}

.link_block,
.link {
  cursor: pointer;
}

.link_block:hover,
.link:hover {
  opacity: .8;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

#breadcrumbs {
  padding: 12px 0;
}

#breadcrumbs ul {
  max-width: 1000px;
  margin: 0 auto;
}

#breadcrumbs ul li {
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
}

#breadcrumbs ul li:after {
  content: "\3e";
  margin: 0 5px;
  color: #666666;
}

#breadcrumbs ul li:last-of-type:after {
  content: none;
}

#breadcrumbs ul li a {
  color: #666666;
}

@media only screen and (max-width: 768px) {
  #breadcrumbs {
    width: 100%;
    padding: 5px;
  }

  #breadcrumbs ul li {
    font-size: 10px;
    font-size: 1rem;
  }
}

ul.page_navi {
  max-width: 1000px;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 1em auto;
}

ul.page_navi li {
  width: calc(100% / 4 - 10px);
}

ul.page_navi li a {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0.8em;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background: #cc3366;
  border: 2px solid #ffffff;
  border-radius: 3px;
  -webkit-transition: .4s;
  transition: .4s;
  position: relative;
  z-index: 1 !important;
  cursor: pointer;
  font-size: 18px;
  font-size: 1.8rem;
}

ul.page_navi li a:before {
  position: absolute;
  top: calc(100% / 2 + 4px);
  right: 0;
  bottom: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: auto 10px;
  font-family: "Font Awesome 5 Free";
  content: "\f0d7";
  font-weight: 900;
  padding-right: 5px;
  color: #ffffff;
}

ul.page_navi li a:hover {
  background: #ffffff;
  border: 2px solid #cc3366;
  color: #cc3366;
}

ul.page_navi li a:hover:before {
  color: #cc3366;
}

@media only screen and (max-width: 768px) {
  ul.page_navi {
    padding: 0 10px;
  }

  ul.page_navi li {
    width: calc(100% / 2 - 2px);
    margin-bottom: 2px;
  }

  ul.page_navi li a {
    border: 1px solid #ffffff;
    font-size: 12px;
    font-size: 1.2rem;
  }

  ul.page_navi li a:before {
    position: absolute;
    top: calc(100% / 2 + 2px);
  }

  ul.page_navi li a:hover {
    border: 1px solid #cc3366;
  }
}

ul.list_01 li {
  font-size: 18px;
  font-size: 1.8rem;
}

ul.list_01 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  font-weight: 900;
  padding-right: 5px;
}

@media only screen and (max-width: 768px) {
  ul.list_01 li {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

dl.list_01 {
  margin-bottom: 1em;
}

dl.list_01:last-of-type {
  margin-bottom: 0em;
}

dl.list_01 dt span {
  padding-left: 5px;
  font-size: 14px;
  font-size: 1.4rem;
}

dl.list_01 dt:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0c8";
  font-weight: 900;
  padding-right: 5px;
}

dl.list_01 dd {
  margin-left: 1em;
}

@media only screen and (max-width: 768px) {
  dl.list_01 dt {
    font-size: 14px;
    font-size: 1.4rem;
  }

  dl.list_01 dt span {
    display: block;
    padding-left: 0px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.photo_list {
  margin: 20px 0;
}

.photo_list ul {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.photo_list ul li {
  width: calc(100% / 2 - 10px);
  margin-bottom: 15px;
}

.photo_list ul li p {
  font-size: 18px;
  font-size: 1.8rem;
  padding: 5px 0;
}

@media only screen and (max-width: 768px) {
  .photo_list {
    margin: 10px 0;
  }

  .photo_list ul {
    -webkit-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .photo_list ul li {
    width: 100%;
    margin-bottom: 10px;
  }

  .photo_list ul li p {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.item_table *,
.item_table *:before,
.item_table *:after {
  box-sizing: border-box;
}

.item_table {
  margin: 0 0 20px;
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
  font-size: 1.8rem;
  border-top: 1px solid #595757;
  border-right: 1px solid #595757;
}

.item_table th,
.item_table td {
  padding: 20px 0;
  border-left: 1px solid #595757;
  border-bottom: 1px solid #595757;
}

.item_table th {
  width: 305px;
  background-color: #ffffcc;
  text-align: center;
  font-weight: normal;
  vertical-align: middle;
}

.item_table td {
  padding: 18px 26px;
}

.item_table td p {
  font-size: 18px;
  font-size: 1.8rem;
}

.item_table td p span.address {
  font-size: 20px;
  font-size: 2rem;
}

@media only screen and (max-width: 768px) {
  .item_table {
    margin: 0 0 10px;
    font-size: 16px;
    font-size: 1.6rem;
  }

  .item_table th,
  .item_table td {
    display: block;
    padding: 10px 0;
  }

  .item_table th {
    width: 100%;
  }

  .item_table td {
    padding: 10px;
  }

  .item_table td p {
    font-size: 12px;
    font-size: 1.2rem;
  }

  .item_table td p span.address {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.googlemap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

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

.sup {
  vertical-align: super;
  font-size: smaller;
}

.img_center {
  text-align: center;
}

.sm_txt {
  font-size: 12px;
  font-size: 1.2rem;
}

.right {
  text-align: right;
}

p.center {
  text-align: center;
}

span.blue_txt {
  color: #2AA2C6;
}

.pc_none {
  display: none !important;
}

.sp_none {
  display: block !important;
}

.br_pcnone {
  display: none !important;
}

.br_spnone {
  display: inline !important;
}

@media only screen and (max-width: 768px) {
  .pc_none {
    display: block !important;
  }

  .sp_none {
    display: none !important;
  }

  .br_pcnone {
    display: inline !important;
  }

  .br_spnone {
    display: none !important;
  }
}

.pl60 {
  padding-left: 60px;
}

.pb30 {
  padding-bottom: 30px;
}

.mt50 {
  margin-top: 50px;
}

@media only screen and (max-width: 768px) {
  .mt50 {
    margin-top: 0px;
  }
}

header#header_block_pc {
  position: relative;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0;
  width: 100%;
  background: #cc3366;
  -webkit-transition: .3s;
  transition: .3s;
}

header#header_block_pc .head_wrapper {
  width: 1000px;
  background: #cc3366;
  margin: 0 auto;
  padding-bottom: 1em;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

header#header_block_pc .head_wrapper .h_box {
  width: 49%;
  padding: 5px 0;
}

header#header_block_pc .head_wrapper .h_box h1.des_txt {
  color: #ffffff;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 400;
  padding-bottom: 5px;
}

header#header_block_pc .head_wrapper .h_box h1 img {
  width: 300px;
}

header#header_block_pc .head_wrapper .h_box02 ul.head_contact li {
  display: inline-block;
  margin-left: 10px;
}

header#header_block_pc .head_wrapper .h_box02 ul.head_contact li.head_txt {
  font-size: 20px;
  font-size: 2rem;
  color: #ffffff;
}

header#header_block_pc .head_wrapper .h_box02 ul.head_contact li.btn_contact a {
  background: #ffffff;
  font-size: 18px;
  font-size: 1.8rem;
  color: #cc3366;
  padding: 5px 10px;
  border-radius: 4px;
  -webkit-transition: .3s;
  transition: .3s;
}

header#header_block_pc .head_wrapper .h_box02 ul.head_contact li.btn_contact a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  padding-right: 5px;
  /*文字との隙間*/
  color: #cc3366;
  /*アイコンの色*/
}

header#header_block_pc .head_wrapper .h_box02 ul.head_contact li.btn_contact a:hover {
  background: #cc3366;
  color: #ffffff;
  -webkit-transition: .3s;
  transition: .3s;
}

header#header_block_pc .head_wrapper .h_box02 ul.head_contact li.btn_contact a:hover:before {
  color: #ffffff;
}

@media only screen and (max-width: 768px) {
  header#header_block_pc .head_wrapper {
    width: 100%;
    margin: 0;
  }

  header#header_block_pc .head_wrapper .h_box {
    width: 80%;
    padding: 10px 10px 5px;
  }

  header#header_block_pc .head_wrapper .h_box h1.des_txt {
    color: #ffffff;
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: 400;
  }

  header#header_block_pc .head_wrapper .h_box h1 img {
    width: 180px;
  }

  header#header_block_pc .head_wrapper .h_box02 {
    display: none;
  }
}

/* 縮小時 */
.is-animation p.head_accesstxt {
  display: block;
  font-size: 10px;
  line-height: 1.2;
  padding-top: 5px !important;
}

.is-animation {
  height: 75px;
}

.is-animation .h_box h1.des_txt {
  display: none;
}

.is-animation .h_box h1 img {
  width: 180px !important;
}

.is-animation .h_box p.mini_access {
  display: block !important;
  color: #ffffff;
}

.is-animation .h_box02 .head_access {
  display: none;
}

#nav_toggle {
  display: none;
}

@media only screen and (max-width: 768px) {

  /*開閉ボタン*/
  #nav_toggle {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 20px;
    right: 10px;
    z-index: 100;
  }

  #nav_toggle div {
    position: relative;
  }

  #nav_toggle span {
    display: block;
    height: 3px;
    background: #fff;
    position: absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }

  #nav_toggle span:nth-child(1) {
    top: 0px;
  }

  #nav_toggle span:nth-child(2) {
    top: 12px;
  }

  #nav_toggle span:nth-child(3) {
    top: 24px;
  }

  /*開閉ボタンopen時*/
  .open #nav_toggle span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }

  .open #nav_toggle span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
}

nav {
  clear: both;
  margin: 0;
  padding: 0;
  background: #ffffcc;
}

nav ul {
  width: 1000px;
  margin: 0 auto;
  line-height: 1;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-pack: space-around;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

nav ul li a {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  color: #666666 !important;
  padding: 1em;
}

nav ul li a.current,
nav ul li a:hover {
  background-color: rgba(204, 51, 102, 0.3);
  -webkit-transition: .3s;
  transition: .3s;
}

nav ul li:last-child {
  display: none;
}

@media only screen and (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 69px;
    width: 100%;
    background: #ffffcc;
    left: 0;
  }

  header nav ul {
    display: block;
    margin: 0 auto;
    width: 90%;
  }

  header nav ul li {
    margin: 0 auto;
    text-align: center;
  }

  header nav ul li:last-child {
    border: none;
    display: block;
  }

  header nav ul li a {
    display: block;
  }

  header nav ul li a.current,
  header nav ul li a:hover {
    background-color: transparent;
    -webkit-transition: .3s;
    transition: .3s;
  }
}

.h1_pagettl {
  background-color: #cc3366;
  color: #ffffff;
  padding: 20px 30px;
  margin-bottom: 10px;
}

.h1_pagettl h1 {
  font-size: 52px;
  font-size: 5.2rem;
  font-weight: 400;
}

.h1_pagettl span {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 400;
}

@media only screen and (max-width: 768px) {
  .h1_pagettl {
    padding: 10px 15px;
    border-top: 3px solid #ffffcc;
    text-align: center;
  }

  .h1_pagettl h1 {
    font-size: 24px;
    font-size: 2.4rem;
  }

  .h1_pagettl span {
    display: block;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

h2.main_ttl {
  border-left: 15px solid #cc3366;
  padding: 10px 15px;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 400;
  margin-bottom: 18px;
}

@media only screen and (max-width: 768px) {
  h2.main_ttl {
    border-left: 5px solid #cc3366;
    padding: 5px;
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 1em;
  }
}

h3.sub_ttl {
  font-size: 42px;
  font-size: 4.2rem;
  line-height: 1;
  margin: 5px 0 10px;
  padding: .5em;
  color: #cc3366;
  font-weight: 400;
  background: #ffffcc;
  border-bottom: solid 3px #cc3366;
}

@media only screen and (max-width: 768px) {
  h3.sub_ttl {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.mainvisual {
  width: 100%;
}

.container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}

/**
 * swiper.js
 */
.swiper-container {
  width: 100%;
  height: 100%;
  z-index: 1;
  line-height: 1.5;
}

.swiper-slide:not(:first-child) {
  -webkit-transition-duration: 0;
  transition-duration: 0;
}

.swiper-button-prev,
.swiper-button-next {
  fill: #fff;
  stroke: #cccccc;
  stroke-width: 1;
  z-index: 10000;
  width: 20px;
  margin-top: -18px;
  background-image: none;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #666563;
  opacity: 10;
}

.swiper-pagination-bullet-active {
  background: #cc3366;
}

.swiper-pagination {
  position: static;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
  line-height: 1;
  padding: 9px 0;
}

@media (min-width: 768px) {

  .swiper-button-prev,
  .swiper-button-next {
    width: 27px;
    margin-top: -35px;
  }
}

@media only screen and (max-width: 640px) {
  .swiper-slide {
    height: 100%;
    line-height: 1;
  }

  .swiper-container-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    line-height: .8;
    padding: 5px 0 7px;
  }
}

/* TOP_バナー */
#top_bnr {
  padding-bottom: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

#top_bnr a img:hover {
  opacity: .8;
}

ul.top_bnr01 li {
  width: 100%;
}

ul.top_bnr02 {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

ul.top_bnr02 li {
  width: 50%;
}

ul.top_bnr03 {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

ul.top_bnr03 li {
  width: calc(100% / 3);
}

@media only screen and (max-width: 768px) {
  #top_bnr {
    padding-bottom: 25px;
  }
}

.top_sign {
  width: 400px;
}

.top_sign .sign_block {
  background-color: #cc3366;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.top_sign .sign_block:hover {
  opacity: .8;
}

.top_sign .sign_block .sign_img {
  width: 160px;
}

.top_sign .sign_block .sign_name {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #ffffff;
  text-align: center;
}

.top_sign .sign_block .sign_name p {
  font-size: 14px;
  font-size: 1.4rem;
}

.top_sign .sign_block .sign_name p.name {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

@media only screen and (max-width: 768px) {
  .top_sign {
    width: 100%;
  }

  .top_sign .sign_block {
    margin-bottom: 10px;
  }

  .top_sign .sign_block .sign_img {
    width: 100px;
  }

  .top_sign .sign_block .sign_name p {
    font-size: 10px;
    font-size: 1rem;
  }

  .top_sign .sign_block .sign_name p.name {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.top_info {
  width: calc(100% - 430px);
}

.top_info h2.info_ttl {
  color: #cc3366;
  font-size: 22px;
  font-size: 2.2rem;
  border-bottom: 5px solid #cc3366;
}

.top_info ul {
  padding: 1em;
  border-bottom: 1px solid #eeeeef;
}

.top_info ul li {
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
}

.top_info ul li span.info_category {
  color: #cc3366;
}

.top_info ul li:first-of-type:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  padding-right: 5px;
  color: #cc3366;
}

.top_info ul:last-of-type {
  border-bottom: 1px solid #cc3366;
  margin-bottom: 2em;
}

@media only screen and (max-width: 768px) {
  .top_info {
    width: 100%;
  }

  .top_info h2.info_ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.btn_right {
  text-align: right;
}

a.info_btn {
  background: #cc3366;
  font-size: 16px;
  font-size: 1.6rem;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 4px;
  -webkit-transition: .3s;
  transition: .3s;
}

a.info_btn:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  padding-right: 5px;
  color: #ffffff;
}

a.info_btn:hover {
  background: #ffffff;
  color: #cc3366;
  -webkit-transition: .3s;
  transition: .3s;
}

a.info_btn:hover:before {
  color: #cc3366;
}

@media only screen and (max-width: 768px) {
  .btn_right {
    text-align: center;
    margin-bottom: 2em;
  }
}

.announce_txt {
  text-align: center;
  padding: 20px 0;
}

.announce_txt p {
  font-size: 20px;
  font-size: 2rem;
}

.announce_txt p.announce {
  color: #cc3366;
  padding-bottom: 1em;
}

@media only screen and (max-width: 768px) {
  .announce_txt {
    padding: 10px 0;
  }

  .announce_txt p {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

dl.policy_block {
  margin-top: 1em;
  margin-bottom: 2em;
}

dl.policy_block dt {
  font-size: 16px;
  font-size: 1.6rem;
  border-bottom: 2px solid #cc3366;
  margin-bottom: 1em;
}

dl.policy_block dd {
  font-size: 14px;
  font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
  dl.policy_block dt {
    font-size: 14px;
    font-size: 1.4rem;
  }

  dl.policy_block dd {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.contact_list {
  width: 80%;
  margin: 0 auto;
}

.contact_list ul li {
  display: inline-block;
  font-size: 20px;
  font-size: 2rem;
}

.contact_list ul li:first-of-type {
  width: 40%;
  color: #cc3366;
}

@media only screen and (max-width: 768px) {
  .contact_list {
    width: 90%;
  }

  .contact_list ul li {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
  }

  .contact_list ul li:first-of-type {
    width: 100%;
  }
}

ul.blog_meta {
  padding: 1em 0 0;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}

ul.blog_meta li {
  font-size: 16px;
  font-size: 1.6rem;
}

ul.blog_meta li.meta_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f07b";
  font-weight: 900;
  padding-right: 5px;
  color: #cc3366;
}

.blog_ttl {
  font-size: 18px;
  font-size: 1.8rem;
  padding: 3px 5px;
}

.blog_ttl:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0c8";
  font-weight: 900;
  padding-right: 5px;
  color: #cc3366;
}

.blog_content {
  margin: 30px 0;
  overflow: hidden;
}

.blog_content p {
  font-size: 16px;
  font-size: 1.6rem;
}

@media only screen and (max-width: 768px) {
  ul.blog_meta li {
    font-size: 14px;
    font-size: 1.4rem;
  }

  .blog_ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }

  .blog_content {
    margin: 10px 0;
  }

  .blog_content p {
    font-size: 14px;
    font-size: 1.4rem;
  }

  .blog_item {
    padding: 0 15px;
  }
}

.archive_category_block {
  background-color: #FDF9EA;
  padding: 20px;
  margin-bottom: 20px;
}

.archive_category_block .archive_date {
  background-color: #C40B21;
  color: #ffffff;
  font-size: 18px;
  font-size: 1.8rem;
  padding: 3px 5px;
  margin-bottom: 10px;
}

.archive_category_box {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.archive_category_box .archive_img {
  width: 170px;
  margin-right: 20px;
}

.archive_category_box .archive_doc {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.archive_category_box .archive_doc .archive_title {
  font-size: 20px;
  font-size: 2rem;
  padding: 20px 0;
}

.archive_category_box.link_block:hover {
  opacity: .8;
}

@media only screen and (max-width: 768px) {
  .archive_category_block {
    padding: 10px;
    margin-bottom: 10px;
  }

  .archive_category_block .archive_date {
    font-size: 16px;
    font-size: 1.6rem;
  }

  .archive_category_box .archive_img {
    min-width: 105px;
    width: 35%;
    margin-right: 10px;
  }

  .archive_category_box .archive_doc {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .archive_category_box .archive_doc .archive_date {
    font-size: 16px;
    font-size: 1.6rem;
  }

  .archive_category_box .archive_doc .archive_title {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 10px 0;
  }

  .archive_category_box .archive_doc .archive_excerpt {
    display: none;
  }
}

.archive_block {
  padding: 1em 0;
  border-bottom: 1px solid #eeeeef;
}

.archive_block p {
  font-size: 16px;
  font-size: 1.6rem;
}

@media only screen and (max-width: 768px) {
  .archive_block p {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.post-navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 0;
  font-size: 14px;
  font-size: 1.4rem;
}

.post-navigation .prev,
.post-navigation .next,
.post-navigation .pg_center {
  padding: 0 1%;
  position: relative;
  width: calc(100% / 3);
  text-align: center;
}

.post-navigation .prev:before {
  font-family: "Font Awesome 5 Free";
  content: "\f053";
  display: inline-block;
  vertical-align: middle;
  margin-right: 1em;
  font-weight: 700;
}

.post-navigation .next:after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  display: inline-block;
  vertical-align: middle;
  margin-left: 1em;
  font-weight: 700;
}

h2.side_ttl {
  background-color: rgba(204, 51, 102, 0.3);
  border-bottom: 2px solid #cc3366;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 10px;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  h2.side_ttl {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.side_menu {
  margin-bottom: 60px;
}

.side_menu ul li a {
  display: block;
  border-bottom: 1px dashed #cccccc;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 10px 0 10px;
}

@media only screen and (max-width: 768px) {
  .side_menu {
    margin-bottom: 30px;
  }

  .side_menu ul li {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 10px 0 10px 18px;
  }
}

.side_bnr01 {
  border: 1px solid #cccccc;
  text-align: center;
  padding: 20px 0;
}

.side_bnr01 .side_bnr_ttl {
  width: 200px;
  background: url(../images/common/bg_pattern.png);
  padding: 10px 0;
  position: relative;
  margin: 0 auto 24px;
  border-radius: 5px;
  color: #ffffff;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
}

.side_bnr01 .side_bnr_ttl:after {
  content: ' ';
  width: 0;
  height: 0;
  position: absolute;
  border: 10px solid transparent;
  border-top-color: #ea564c;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.side_bnr01 ul li {
  margin-bottom: 10px;
}

.side_bnr01 ul li:last-of-type {
  margin-bottom: 0;
}

.side_bnr02 {
  margin-top: 20px;
  text-align: center;
}

.side_bnr02 ul li {
  margin-bottom: 10px;
}

.side_bnr02 ul li:last-of-type {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .side_bnr01 {
    padding: 10px 0;
  }

  .side_bnr01 .side_bnr_ttl {
    font-size: 12px;
    font-size: 1.2rem;
  }

  .side_bnr02 {
    margin-top: 10px;
  }
}

/* 修正 */

span.hissu {
  color: #ff0033;
}

.form_block *,
.form_block *:before,
.form_block *:after {
  box-sizing: border-box;
}

.form_block {
  margin: 20px auto;
  border-collapse: collapse;
  font-size: 16px;
  font-size: 1.6rem;
}

.form_block th,
.form_block td {
  padding-bottom: 1em;
}

.form_block th {
  width: 220px;
  text-align: left;
}

.form_block td {
  padding-left: 1em;
}

.form_block td a {
  color: #cc3366;
  text-decoration: underline;
}

.form_block td a:hover {
  text-decoration: none;
}

.form_block tr:last-of-type {
  vertical-align: top;
}

@media only screen and (max-width: 768px) {
  .form_block {
    margin: 30px auto;
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
  }

  .form_block th,
  .form_block td {
    display: block;
    padding-bottom: 0;
  }

  .form_block th {
    width: 100%;
    text-align: left;
    padding: 0 15px 10px;
  }

  .form_block td {
    padding: 0 15px 20px;
  }
}

.form_block option,
.form_block input[type=text],
.form_block input[type=email],
.form_block input[type=search],
.form_block input[type=url] {
  width: 100%;
  border: 1px solid #cccccc;
}

.form_block input[type=email],
.form_block input[type=text] {
  height: 2em;
}

.form_block input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input::-webkit-input-placeholder {
  color: rgba(101, 101, 101, 0.47);
  font-size: 16px;
  font-size: 1.6rem;
  padding-left: 5px;
}

input:-ms-input-placeholder {
  color: rgba(101, 101, 101, 0.47);
  font-size: 16px;
  font-size: 1.6rem;
  padding-left: 5px;
}

input::placeholder {
  color: rgba(101, 101, 101, 0.47);
  font-size: 16px;
  font-size: 1.6rem;
  padding-left: 5px;
}

.form_block textarea {
  width: 100%;
  border: 1px solid #cccccc;
  height: 10em;
}

.form_block textarea::-webkit-input-placeholder {
  color: rgba(101, 101, 101, 0.47);
  font-size: 16px;
  font-size: 1.6rem;
  padding-top: 5px;
  padding-left: 5px;
}

.form_block textarea:-ms-input-placeholder {
  color: rgba(101, 101, 101, 0.47);
  font-size: 16px;
  font-size: 1.6rem;
  padding-top: 5px;
  padding-left: 5px;
}

.form_block textarea::placeholder {
  color: rgba(101, 101, 101, 0.47);
  font-size: 16px;
  font-size: 1.6rem;
  padding-top: 5px;
  padding-left: 5px;
}

/* 修正 */

.submit_block {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-pack: space-around;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.submit-btn input {
  background: #cc3366;
  width: 60%;
  max-width: 256px;
  min-width: 256px;
  margin: 30px auto;
  display: block;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #ffffff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 1px solid #cc3366;
}

.submit-btn input:hover {
  background: #ffffcc;
  color: #cc3366;
}

.submit-btn_re input {
  background: #ffffff;
  width: 60%;
  max-width: 256px;
  min-width: 256px;
  margin: 30px auto;
  display: block;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #666666;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 1px solid #cc3366;
}

.submit-btn_re input:hover {
  background: #ffffcc;
  color: #cc3366;
}

@media only screen and (max-width: 768px) {
  .submit_block {
    -webkit-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .submit-btn input,
  .submit-btn_re input {
    width: 60%;
    max-width: 240px;
    min-width: 240px;
    margin: 10px auto;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.select_d {
  overflow: hidden;
  width: 90%;
  text-align: center;
}

.select_d select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.select_d select::-ms-expand {
  display: none;
}

.select_d.select01 {
  position: relative;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
  background: #ffffff;
}

.select_d.select01:before {
  position: absolute;
  top: 1em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
}

.select_d.select01 select {
  padding: 8px 38px 8px 8px;
  color: #666666;
}

ul.check_d {
  width: 90%;
  margin: 2em auto;
  text-align: left;
  margin: 0.5rem 0.5rem 2rem 0.5rem;
  padding: 1rem 1rem 0.5rem 1rem;
  list-style: none;
  border: 1px solid #cccccc;
}

ul.check_d label {
  line-height: 135%;
  position: relative;
  margin: 0.5rem;
  cursor: pointer;
}

ul.check_d li {
  margin: 0 0 0.5rem 0;
  padding: 0;
}

ul.check_d .op01 {
  position: relative;
  top: -0.375rem;
  margin: 0 1rem 0 0;
  cursor: pointer;
  outline: none;
}

ul.check_d .op01:before,
ul.check_d .op01:after {
  position: absolute;
  z-index: 1;
  top: -0.125rem;
  left: -0.125rem;
  width: 1rem;
  height: 1rem;
  content: '';
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border: 2px solid #da3c41;
  background: #ffffff;
}

ul.check_d .op01:after {
  z-index: 0;
  border: none;
}

ul.check_d .op01:checked:before {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  background: #da3c41;
}

ul.radio_d {
  width: 90%;
  margin: 2em auto;
  text-align: left;
  margin: 0.5rem 0.5rem 2rem 0.5rem;
  padding: 0.5rem 1rem;
  list-style: none;
  border: 1px solid #cccccc;
}

ul.radio_d label {
  font-family: Arial, sans-serif;
  line-height: 135%;
  position: relative;
  margin: 0.5rem;
  cursor: pointer;
}

ul.radio_d li {
  margin: 0 0 0.5rem 0;
  padding: 0;
}

ul.radio_d .op01 {
  position: relative;
  margin: 0 1rem 0 0;
  cursor: pointer;
}

ul.radio_d .op01:before,
ul.radio_d .op01:after {
  position: absolute;
  z-index: 1;
  top: -0.3125rem;
  left: -0.125rem;
  width: 1rem;
  height: 1rem;
  content: '';
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 2px solid #da3c41;
  border-radius: 50%;
  background: #ffffff;
}

ul.radio_d .op01:after {
  z-index: 0;
  top: -0.0625rem;
  border: none;
}

ul.radio_d .op01:checked:before {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  background: #da3c41;
}

.wpcf7 .wpcf7-response-output {
  font-size: 16px;
  font-size: 1.6rem;
  margin: 10px 0 0;
  padding: 8px 35px 8px 14px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 4px;
}

.wpcf7 .wpcf7-validation-errors {
  color: #B94A48;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7;
}

.wpcf7 .wpcf7-mail-sent-ok {
  color: #3A87AD;
  background-color: #D9EDF7;
  border: 1px solid #BCE8F1;
}

.wpcf7 .wpcf7c-conf {
  background-color: #ffffcc;
  color: black;
  border: 1px solid #333333;
}

#footer {
  background-color: #ffffff;
}

.fo_bnr {
  background-color: #ffb2cc;
  padding-top: 20px;
}

.fo_bnr ul {
  width: 1000px;
  margin: 0 auto;
  padding-bottom: 20px;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.fo_bnr ul li {
  width: calc(100% / 4 - 20px);
  margin-left: 20px;
}

.fo_bnr ul li:first-of-type {
  margin-left: 0px;
}

.fo_bnr ul li a:hover {
  opacity: .8;
}

@media only screen and (max-width: 768px) {
  .fo_bnr {
    padding-top: 10px;
  }

  .fo_bnr ul {
    width: 100%;
    padding: 0px 10px 0;
    -webkit-justify-content: space-between;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-pack: space-between;
  }

  .fo_bnr ul li {
    width: calc(100% / 2 - 5px);
    margin-left: 0px;
    margin-bottom: 10px;
  }
}

.fo_sitemap {
  padding: 20px 0;
  background-color: #cc3366;
}

.fo_sitemap ul.page_list {
  width: 1000px;
  margin: 0 auto 1em;
}

.fo_sitemap ul.page_list:last-of-type {
  margin: 0 auto;
}

.fo_sitemap ul.page_list li {
  font-size: 14px;
  font-size: 1.4rem;
  display: inline-block;
  padding-right: 1em;
}

.fo_sitemap ul.page_list li a {
  color: #ffffff;
}

.fo_sitemap ul.page_list li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0c8";
  font-weight: 900;
  padding-right: 5px;
  color: #ffffff;
}

@media only screen and (max-width: 768px) {
  .fo_sitemap {
    padding: 10px;
    background-color: #cc3366;
  }

  .fo_sitemap ul.page_list {
    width: 100%;
    margin: 0;
  }

  .fo_sitemap ul.page_list:last-of-type {
    margin: 0;
  }

  .fo_sitemap ul.page_list li {
    font-size: 14px;
    font-size: 1.4rem;
    display: block;
    padding-right: 0em;
    padding-bottom: 10px;
  }
}

#fo_manager {
  text-align: center;
  color: #666666;
  padding: 30px 0;
}

#fo_manager .m_name {
  padding-bottom: 15px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #cc3366;
}

#fo_manager .m_address ul li {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

@media only screen and (max-width: 768px) {
  #fo_manager {
    padding: 15px 0;
  }

  #fo_manager .m_name {
    padding-bottom: 5px;
    font-size: 20px;
    font-size: 2rem;
  }
}

.copy {
  clear: both;
  margin: 0 auto;
  overflow: hidden;
}

.copy p {
  text-align: center;
  padding: 10px 0 15px;
  font-size: 10px;
  font-size: 1rem;
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

#page-top a {
  text-align: center;
}

#page-top a:hover {
  opacity: .8;
}

@media only screen and (max-width: 768px) {
  #page-top {
    bottom: 10px;
    right: 10px;
  }

  #page-top a img {
    width: 80%;
  }
}

.wp-pagenavi {
  clear: both;
  text-align: center;
  margin-top: 50px;
}

.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 12px;
  font-size: 1.2rem;
  color: #666666;
  background-color: #EFEFEF;
  padding: 8px 15px;
  margin: 0 2px;
  white-space: nowrap;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
}

.wp-pagenavi a:hover {
  color: #ffffff;
  background-color: #cc3366;
}

.wp-pagenavi span.current {
  color: #ffffff;
  background-color: #cc3366;
}

.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink {
  background-color: #ffffff;
  border: 0px;
}

/* img */
.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

img[class*="wp-image-"],
img[class*="attachment-"] {
  height: auto;
  max-width: 100%;
}

/* clearfix */
.clearfix {
  overflow: hidden;
  zoom: 1;
}

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

/* 260324追加 */

/* =============================================
   確認画面（Confirm Plus Contact Form 7）完全版
   ============================================= */

#wpcf7cpcnf *,
#wpcf7cpcnf *:before,
#wpcf7cpcnf *:after {
  box-sizing: border-box;
}

/* --- テーブル全体 --- */
#wpcf7cpcnf table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  font-size: 1.6rem;
  margin: 20px auto;
}

/* --- 行ごとに下線 --- */
#wpcf7cpcnf table tr {
  border-bottom: 1px solid #cccccc;
}

#wpcf7cpcnf table tr:first-of-type {
  border-top: 1px solid #cccccc;
}

/* --- th（項目名） --- */
#wpcf7cpcnf table th {
  width: 220px;
  text-align: left;
  padding: 0.8em 1em 0.8em 0;
  vertical-align: top;
  font-weight: bold;
  color: #333333;
}

#wpcf7cpcnf table th p {
  margin: 0;
}

/* --- td（入力内容） --- */
#wpcf7cpcnf table td {
  padding: 0.8em 0 0.8em 1em;
  vertical-align: top;
  color: #555555;
}

#wpcf7cpcnf table td p {
  margin: 0;
}

/* --- モバイル --- */
@media only screen and (max-width: 768px) {
  #wpcf7cpcnf table {
    font-size: 16px;
    font-size: 1.6rem;
  }

  #wpcf7cpcnf table th,
  #wpcf7cpcnf table td {
    display: block;
    padding-bottom: 0;
  }

  #wpcf7cpcnf table th {
    width: 100%;
    padding: 12px 15px 6px;
    border-bottom: none;
  }

  #wpcf7cpcnf table td {
    padding: 0 15px 12px;
  }
}

/* =============================================
   ボタンエリア
   ============================================= */

/* .wpcf7cp-btns を .submit_block と同じFlexレイアウトに */
#wpcf7cpcnf .wpcf7cp-btns {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* ボタン共通 */
#wpcf7cpcnf .wpcf7cp-btns button {
  width: 60%;
  max-width: 256px;
  min-width: 256px;
  margin: 30px auto;
  display: block;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  font-size: 18px;
  font-size: 1.8rem;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/* 修正ボタン（.submit-btn_re と同じ） */
#wpcf7cpcnf .wpcf7cp-cfm-edit-btn {
  background: #ffffff;
  color: #666666;
  border: 1px solid #cc3366;
}

#wpcf7cpcnf .wpcf7cp-cfm-edit-btn:hover {
  background: #ffffcc;
  color: #cc3366;
}

/* 送信ボタン（.submit-btn と同じ） */
#wpcf7cpcnf .wpcf7cp-cfm-submit-btn {
  background: #cc3366;
  color: #ffffff;
  border: 1px solid #cc3366;
}

#wpcf7cpcnf .wpcf7cp-cfm-submit-btn:hover {
  background: #ffffcc;
  color: #cc3366;
}

/* モバイル：ボタン縦並び */
@media only screen and (max-width: 768px) {
  #wpcf7cpcnf .wpcf7cp-btns {
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  #wpcf7cpcnf .wpcf7cp-btns button {
    width: 60%;
    max-width: 240px;
    min-width: 240px;
    margin: 10px auto;
    font-size: 16px;
    font-size: 1.6rem;
  }
}