.content_image img{
  object-fit: cover;
  max-height: 270px;
}
@media (min-width: 768px) {
  .content_image img{
    min-height: 140px;
  }
}
.container {
  padding: 0 1em;
  max-width: 1370px;
  margin: 0 auto;
}
.content_catch {
  margin: 4em auto;
  font-weight: 700;
  text-align: center;
  color: var(--key_color);
}
.content_catch h2{
  font-size: 40px;
  letter-spacing: 0.05em;
}
.content_catch span {
  display: inline-block;
}
.catch_column {
  max-width: 1100px;
  margin: 0 auto 4em auto;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .content_image img {
    width: 100%;
    height: auto;
  }
  .content_catch {
    margin: 2em auto;
  }
  .content_catch h2 {
    font-size: 30px;
  }
  .catch_column {
    text-align: justify;
    font-size: 16px;
    line-height: 1.4;
  }
}

.content_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5%;
}
.about_table {
  font-size: 18px;
  line-height: 1.4;
  margin: 0 auto;
}
.about_table th {
  font-weight: 400;
  width: 9em;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}
.about_table td {
  padding: 13px;
}
.about_table th span,.about_table td span {
  font-weight: 700;
}
.box_width {
  width: 47.5%;
}
@media (max-width: 1000px) {
  .content_box {
    display: block;
  }
  .content_box img {
    text-align: center;
    width: 100%;
  }
  .about_table {
    font-size: 14px;
    line-height: 1.2;
    margin: 2em auto;
  }
  .about_table td {
    padding: 6px;
  }
  .box_width {
    width: 100%;
  }
}

.content_card {
  padding: 0 1em;
}
.card_container {
  justify-content: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, 345px);
  gap: 60px 20px;
  margin: 0 auto;
  max-width: 1440px;
}
.card_container > a {
  position: relative;
  display: block;
  width: 345px;
  border-radius: 15px;
  overflow: hidden;
}
.card_container > a {
  pointer-events: none;
}
.card_title {
  font-size: 20px;
  line-height: 1.25;
  padding-bottom: 16px;
  font-weight: 700;
  padding: 10px;
  text-align: center;
  color: var(--key_color);
}
.card_title span {
  color: #000;
}
.card_description {
  font-weight: 400;
  line-height: 1.8;
  margin-top: 12px;
}

.img_c {
  display: block;
  margin: 7em auto 3em auto;
}
.content_copy h3,.content_copy h4 {
  font-weight: 700;
}
.content_copy h3 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 1.2em;
}
.content_copy h4 {
  font-size: 24px;
  margin: 0.7em 0;
  color: var(--key_color);
}
.content_copy h4 span {
  font-size: 20px;
  color: #000;
}
.content_copy p, .content_ul {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 1.2em;
}
.mb {
  margin-bottom: 7em;
}
.photo_box {
  display: flex;
  gap: 2%;
}
.photo_box img {
  width: 49%;
}
.iframe-wrp {
  position: relative;
  width: 100%;
  padding-top: 54.83%; /* = height ÷ width × 100 */
  margin: 1em 0;
}
.iframe-wrp iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .card_container {
    gap: 30px 20px;
  }
  .content_copy h3 {
    font-size: 20px ;
  }
  .content_copy h4 {
    font-size: 18px;
  }
  .content_copy p, .content_ul {
    font-size: 14px;
  }
  .mb {
    margin-bottom: 5em;
  }
}

/* お問合せフォーム */
.form_table {
  width: 800px;
  margin: 0 auto;
  border: 1px solid #d2d2d2;
  background: #f5f5f5;
}
.form_table th {
  width: 18%;
  font-weight: 700;
  text-align: left;
  vertical-align: middle;
  padding: 10px;
}
.form_table td {
  width: 82%;
  padding: 10px;
}
.required {
  color: #FF0000;
  font-size: 12px;
}
.smalltxt {
  font-size: 12px;
  font-weight: 400;
}
.form_table tr:last-child td {
  padding-bottom: 8px;
}
.form_table tr td input,.form_table tr td textarea {
  width: 100%;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
}
.form_table tr td input::placeholder {
  font-size: 14px;
  color: #d2d2d2;
}
.b_text {
  margin-top: 2px;
  font-size: 10px;
}

.form-textarea {
  vertical-align: top !important;
}
.form_button {
  width: 100%;
  margin: 1em auto;
  display: flex;
  justify-content: center;
  gap: 5%;
}
.form_button input {
  width: 100px;
  border: 1px solid #d2d2d2;
  background: #f5f5f5;
  font-weight: 700;
  border-radius: 5px;
  padding: 2px;
}
.form_button input:hover {
  background: var(--key_color);
  color: #fff;
}
@media (max-width: 768px) {
  .form_table {
    width: 100%;
  }
  .form_table th, .form_table td {
    display: block;
    width: 100%;
  }
  .form_table td {
    padding: 0 8px;
  }
}

/* SNSアイコン */
.snsbtniti {
  margin-top: 4em;
}
.snsbtniti li {
  text-align: center!important;
}
.snsbtniti li p{
  margin-bottom: 10px;
}
.flowbtn {
  font-family: 'Noto Sans Japaneses', sans-serif; 
  position: relative;
  display: inline-block;
  width: 140px;
  height: 65px;
  font-size: 35px;
  border-radius: 4px;
  color: #fff!important;
  transition: .5s;
  text-decoration: none;
  box-shadow: 0 1px 2px #999;
  margin-bottom:10px;
}
.flowbtn i {
  position: relative;
  top: 5px;
}
.flowbtn div {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  margin-top: 5px;
}
.flowbtn:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  text-decoration: none;
  cursor: pointer;
}
.my_instagram1 {
 background: linear-gradient(45deg, rgba(254,212,117,1) 0%,rgba(229,61,93,1) 50%,rgba(194,49,134,1) 70%,rgba(156,56,187,1) 100%);
}
