@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

input[type=checkbox],
input[type=radio] {
  display: none;
}

*:focus {
  outline: none;
}

body,
html,
div,
p,
span,
blockquote,
u,
s,
i,
b,
table,
tr,
th,
td,
ul,
ol,
dl,
li,
dt,
dd,
strong,
h1,
h2,
h3,
h4,
h5,
em,
header,
footer,
nav,
aside,
section,
input,
select,
option,
textarea,
button {
  margin: 0;
  padding: 0;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: justify;
  text-justify: inter-ideograph;
  color: inherit;
}

body {
  font-weight: 400;
  font-size: 16px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #000;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

ul,
ol {
  list-style-type: none;
}

a {
  text-decoration: none;
  transition-property: all;
  transition: 0.3s linear;
}
a:hover {
  opacity: 0.7;
}

table {
  border-collapse: collapse;
}

.wrap {
  width: 100vw;
  overflow-x: hidden;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1090px;
}

.black {
  color: #000 !important;
}

.white {
  color: #fff !important;
}

.bg-black {
  background: #000 !important;
}

.bg-white {
  background: #fff !important;
}

.small {
  font-size: 0.8rem !important;
}

.normal {
  font-size: 1rem !important;
}

.big {
  font-size: 1.5rem !important;
}

.large {
  font-size: 2rem !important;
}

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

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

.right {
  text-align: right !important;
}

.bold {
  font-weight: 700 !important;
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  background: #fff;
}

.header_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
}
@media (max-width: 768px) {
  .header_wrap {
    position: relative;
  }
}

.header_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.header_menu li {
  padding-left: 15px;
}
.header_menu a {
  display: block;
  color: #000;
}
@media (max-width: 768px) {
  .header_menu {
    width: 100%;
  }
  .header_menu li {
    padding-left: 0;
    width: 100%;
    text-align: center;
  }
  .header_menu li:nth-child(n+2) {
    margin-top: 10px;
  }
  .header_menu li a {
    padding: 10px 0;
    font-size: 1.5rem;
  }
}

.header_bars {
  position: relative;
}
.header_bars span {
  display: block;
  margin: 5px 0;
  width: 30px;
  height: 3px;
  background: #000;
  border-radius: 5px;
  transition: 0.6s;
}
.header_bars:hover {
  cursor: pointer;
}

@media (max-width: 768px) {
  .header_bars.active span:nth-child(1) {
    position: absolute;
    top: 0px;
    transform: rotate(45deg);
  }
  .header_bars.active span:nth-child(2) {
    opacity: 0;
  }
  .header_bars.active span:nth-child(3) {
    position: absolute;
    bottom: 0px;
    transform: rotate(-45deg);
  }
}

.header_logo {
  margin-top: 10px;
  width: 100px;
}

.header_info {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  transition: 0.6s;
}
.header_info .b_button {
  margin: 0 25px;
  width: 150px;
}
@media (max-width: 768px) {
  .header_info {
    display: block;
    position: absolute;
    top: 30px;
    right: 0;
    left: 0;
    padding: 60px 20px 0;
    height: calc(100vh - 101.23px);
    background-image: url(../img/rame.jpg);
    background-size: cover;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
  }
  .header_info .b_button {
    margin: 20px auto 40px;
    width: min(100%, 250px);
  }
}

@media (max-width: 768px) {
  .header_info.active {
    opacity: 1;
    visibility: inherit;
  }
}

.header_sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  background: #EFEFEF;
  border-radius: 30px;
}
.header_sns a {
  display: table;
  width: 30px;
  height: 30px;
}
.header_sns a:nth-child(n+2) {
  margin-left: 15px;
}
.header_sns img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .header_sns {
    margin: 0 auto;
    width: 250px;
  }
}

.insta {
  background-image: linear-gradient(72.44deg, #FF7A00 11.92%, #FF0169 51.56%, #D300C5 85.69%);
}
.insta .sec_ttl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  color: #fff;
}
.insta .sec_ttl::before, .insta .sec_ttl::after {
  content: "";
  display: block;
  width: 2px;
  height: 50px;
  background: #fff;
}
@media (max-width: 768px) {
  .insta .sec_ttl::before, .insta .sec_ttl::after {
    height: 80px;
  }
}
.insta .sec_ttl::before {
  margin-right: 30px;
  transform: rotate(-25deg);
}
.insta .sec_ttl::after {
  margin-left: 30px;
  transform: rotate(30deg);
}
.insta .b_button {
  background: transparent;
  border: 2px solid #fff;
}

.f_menu p {
  font-size: 0.8rem;
}

.f_menu_logo {
  display: block;
  margin: 30px auto;
  width: 150px;
}

.f_menu_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.f_menu_list a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-right: 20px;
  color: #000;
}
.f_menu_list a:nth-child(n+2)::before {
  content: "";
  display: block;
  margin-right: 20px;
  width: 1px;
  height: 10px;
  background: #000;
}
.f_menu_list a:last-child {
  padding-right: 0;
}

.copyright {
  font-size: 0.8rem;
  color: #fff;
  text-align: center;
  background: #000;
  padding: 20px 0;
}

.totop {
  display: table;
  position: fixed;
  right: 20px;
  bottom: 20px;
}
.totop img {
  width: 25px;
}
.totop:hover {
  cursor: pointer;
}

.breadcrumb {
  padding: 6px 0;
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.breadcrumb ul li::after {
  content: "»";
  margin: 0 10px;
}
.breadcrumb ul li:last-child::after {
  display: none;
}

article h2 {
  margin-top: 100px;
  padding: 10px 15px;
  font-weight: 700;
  font-size: 1.5rem;
}
article h3 {
  margin-top: 60px;
  padding: 10px;
  font-weight: 700;
  font-size: 1.5rem;
}
article h4 {
  margin-top: 40px;
  font-weight: 700;
}
article p {
  margin-top: 30px;
  line-height: 2;
}
article a {
  text-decoration: underline;
}
article a:hover {
  text-decoration: none;
}
article .wp-block-table {
  margin-right: 10px;
  margin-left: 10px;
}
article table {
  min-width: 100%;
  border-bottom: 2px solid #dfdfdf;
}
article table tr:nth-child(odd) {
  background: #dfdfdf;
}
article table th, article table td {
  padding: 10px;
}
article table th {
  font-weight: 700;
  color: #fff;
  background: #acacac;
}
article strong {
  font-weight: 700;
  font-style: normal;
}
article em {
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(transparent 60%, #acacac 60%);
}
article ul, article ol {
  margin-top: 30px;
  padding: 15px 10px 15px 40px;
  background: #dfdfdf;
}
article ul li, article ol li {
  padding-top: 10px;
}
article ul li:first-child, article ol li:first-child {
  padding-top: 0;
}
article ul {
  list-style-type: disc;
}
article ol {
  list-style-type: decimal;
}
article dl {
  margin-top: 30px;
}
article dl dt {
  padding-top: 10px;
}
article dl dt:first-child {
  padding-top: 0;
}
article dl dd {
  padding: 3px 0 3px 20px;
}
article input[type=text],
article input[type=tel],
article input[type=email],
article textarea {
  padding: 5px 10px;
  width: 100%;
  border: 1px solid #acacac;
}
article input[type=submit] {
  display: table;
  margin: 0 auto;
  padding: 5px 40px;
  color: #000;
  background: #acacac;
  border: 2px solid #acacac;
}
article input[type=submit]:hover {
  color: #000;
  background: #fff;
}
article input[type=submit]:active {
  color: #000;
  background: #fff;
}
article blockquote {
  position: relative;
  margin-top: 30px;
  padding: 40px;
  background: #dfdfdf;
}
article blockquote p:first-child {
  margin-top: 0;
}
article blockquote::before, article blockquote::after {
  display: block;
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
article blockquote::before {
  top: 10px;
  left: 10px;
  background-image: url("../img/icon_quote1.svg");
}
article blockquote::after {
  right: 10px;
  bottom: 10px;
  background-image: url("../img/icon_quote2.svg");
}
article blockquote cite {
  padding-top: 20px;
  font-style: normal;
  font-size: 0.8rem;
  color: #acacac;
}

.toc {
  display: table;
  margin-top: 30px;
  padding: 15px;
  border: 1px solid #acacac;
}

.toc_title {
  margin-top: 0;
  text-align: center;
  font-weight: 700;
}

.toc_list {
  counter-reset: dt;
}
.toc_list dt, .toc_list dd {
  text-decoration: underline;
}
.toc_list dt:hover, .toc_list dd:hover {
  cursor: pointer;
  text-decoration: none;
}
.toc_list dt {
  counter-increment: dt;
  counter-reset: dd;
  padding: 20px 0 0 20px;
}
.toc_list dt::before {
  content: counter(dt) ". ";
  margin-left: -20px;
}
.toc_list dd {
  counter-increment: dd;
  padding-left: 47px;
}
.toc_list dd::before {
  content: counter(dt) "-" counter(dd) ". ";
  margin-left: -34px;
}

.sec_padi {
  padding: 160px 0;
}
@media (max-width: 768px) {
  .sec_padi {
    padding: 120px 0;
  }
}

.sec_padi_m {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .sec_padi_m {
    padding: 80px 0;
  }
}

.sec_padi_m_top {
  padding-top: 120px;
}
@media (max-width: 768px) {
  .sec_padi_m_top {
    padding-top: 80px;
  }
}

.sec_padi_s {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .sec_padi_s {
    padding: 60px 0;
  }
}

.sec_ttl {
  font-size: 30px;
  color: #FF8099;
  margin-bottom: 40px;
}

.b_button {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 10px 0;
  width: min(100%, 250px);
  text-align: center;
  text-transform: uppercase;
  z-index: 2;
  background: #FF8099;
  border: 2px solid #FF8099;
}
.b_button span {
  position: relative;
  z-index: 2;
  color: #fff;
  transition: 0.5s;
}
.b_button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #fff;
  transition: 0.5s;
  z-index: 1;
  opacity: 0;
}
.b_button:hover {
  opacity: 1;
  background: #fff;
}
.b_button:hover span {
  color: #FF8099;
}
.b_button:hover::before {
  width: 100%;
  opacity: 1;
}

.fv {
  position: relative;
  width: 100%;
  height: 80vh;
  background-image: url(../img/fv.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.fv_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  padding: 60px;
  background: #fff;
}
.fv_img img {
  display: block;
  width: 175px;
}
@media (max-width: 768px) {
  .fv_img {
    padding: 30px;
  }
}

.messa {
  padding: 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/message.jpg);
  background-position: center center;
}
@media (max-width: 768px) {
  .messa {
    padding: 50px 30px;
  }
}

.messa_ttl {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .messa_ttl {
    font-size: 1.5rem;
  }
}

.messa_text {
  max-width: 500px;
  margin: 0 auto;
}

.service_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.service_content dl {
  width: 55%;
}
.service_content dl dt {
  font-size: min(3vw, 40px);
}
.service_content dl dd {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .service_content dl {
    width: 100%;
  }
}
.service_content img {
  width: 40%;
}
@media (max-width: 768px) {
  .service_content img {
    margin-top: 30px;
    width: 100%;
  }
}

.service_sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 100px;
}

.service_sns_item {
  padding: 15px 15px 30px 15px;
  width: 23%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}
.service_sns_item img {
  width: 100%;
}
.service_sns_item a {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 5px 0;
  width: min(100%, 150px);
  border: 1px solid #FF8099;
  text-align: center;
  text-transform: uppercase;
  z-index: 2;
}
.service_sns_item a span {
  position: relative;
  z-index: 2;
  color: #FF8099;
  transition: 0.5s;
}
.service_sns_item a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #FF8099;
  transition: 0.5s;
  z-index: 1;
  opacity: 0;
}
.service_sns_item a:hover {
  opacity: 1;
}
.service_sns_item a:hover span {
  color: #fff;
}
.service_sns_item a:hover::before {
  width: 100%;
  opacity: 1;
}
@media (max-width: 768px) {
  .service_sns_item {
    width: 48%;
  }
  .service_sns_item:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media (max-width: 428px) {
  .service_sns_item {
    width: 100%;
  }
  .service_sns_item:nth-child(n+2) {
    margin-top: 30px;
  }
}

.service_sns_item_ttl {
  margin-bottom: 15px;
}

.service_sns_item_text {
  margin: 20px 0;
}

.con {
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/rame.jpg);
}
.con h2 {
  margin-bottom: 0;
}
.con p {
  margin: 40px 0;
  text-align: center;
}

.contact_table {
  width: 100%;
}
.contact_table th {
  padding: 10px 10px 10px 0;
}
.contact_table td {
  padding: 10px 0 10px 10px;
}
@media (max-width: 768px) {
  .contact_table tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
  .contact_table th, .contact_table td {
    width: 100%;
  }
  .contact_table th {
    padding-bottom: 0;
    padding-right: 10px;
  }
  .contact_table td {
    padding-top: 5px;
    padding-left: 0;
  }
}
.contact_table input[type=text],
.contact_table input[type=tel],
.contact_table input[type=email],
.contact_table textarea {
  padding: 5px 10px;
  width: 100%;
  border: 1px solid #000;
}
.contact_table label:hover {
  cursor: pointer;
}
.contact_table input[type=checkbox] + label {
  position: relative;
  padding-right: 20px;
}
.contact_table input[type=checkbox] + label::before {
  display: inline-block;
  content: "";
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 10px;
  width: 1em;
  height: 1em;
  border: 1px solid #000;
}
.contact_table input[type=checkbox]:checked + label::after {
  display: block;
  position: absolute;
  content: "";
  top: -4px;
  left: 4px;
  width: 0.4em;
  height: 1em;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  transform: rotate(45deg);
}
.contact_table input[type=radio] + label {
  position: relative;
  padding-right: 20px;
}
.contact_table input[type=radio] + label::before {
  display: inline-block;
  content: "";
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 10px;
  width: 1em;
  height: 1em;
  border: 1px solid #000;
  border-radius: 50%;
}
.contact_table input[type=radio]:checked + label::after {
  display: block;
  position: absolute;
  content: "";
  top: 3px;
  left: 4px;
  width: 0.6em;
  height: 0.6em;
  background: #000;
  border-radius: 50%;
}

.contact_error {
  display: none;
  padding-top: 5px;
}

.contact_error_all {
  display: none;
  text-align: center;
}

.contact_submit button {
  display: table;
  margin: 10px auto 0 auto;
  padding: 10px 50px;
  color: #fff;
  background: #000;
  border: 2px solid #000;
}
.contact_submit button:active {
  color: #000;
  background: #fff;
}
.contact_submit a {
  display: table;
  margin: 10px auto 0 auto;
  padding: 10px 50px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(0, 0, 0, 0.5);
}

.not_found h1 {
  font-size: 30px;
  text-align: center;
  color: #FF8099;
}
.not_found p {
  text-align: center;
}
.not_found .b_button {
  color: #FF8099;
  background: #fff;
}
.not_found .b_button span {
  color: #FF8099;
}
.not_found .b_button::before {
  background: #FF8099;
}
.not_found .b_button:hover span {
  color: #fff;
}