@charset "UTF-8";
/* ===============================================
# global
=============================================== */
/* ===============================================
# フォントのCDN
=============================================== */
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
/* ===============================================
# 関数
=============================================== */
/* ===============================================
# 変数
=============================================== */
:root {
  --font-size12: 0.75rem;
  --font-size16: 1rem;
  --font-size18: 1.125rem;
  --font-size20: 1.25rem;
  --font-size22: 1.375rem;
  --font-size24: 1.5rem;
  --font-size26: 1.625rem;
  --font-size28: 1.75rem;
  --font-size30: 1.875rem;
  --font-size32: 2rem;
  --font-size36: 2.25rem;
  --font-size40: 2.5rem;
  --font-size50: 3.125rem;
}

:root {
  --color-white:#fff;
  --color-white-hover:#d4d2d2;
  --color-black:#000;
  --color-gray:#6c757d;
  --color-gray-boarder:#ced4da;
  --color-brown:#603813;
  --color-red:#e44d3f;
  --color-red-hover:#f0776c;
  --color-orange:#F9C35D;
  --color-yellow:#FFFF80;
  --color-yellow-hover:#eded5a;
  --color-green:#3FA037;
  --color-green-hover:#9cdb8e;
  --color-bg:#FFF4E0;
}

/* ===============================================
# ミックスイン
=============================================== */
/* ===============================================
# common
=============================================== */
/* ===============================================
# 共通ベース
=============================================== */
* {
  box-sizing: border-box;
  font-size: 1rem;
  font-family: "Zen Maru Gothic", sans-serif;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

*::-webkit-scrollbar {
  display: none;
}

html {
  width: 100%;
  height: 100%;
}

body {
  min-width: 375px;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg);
  overflow-x: hidden;
}

main.is-active {
  display: none;
}

h1, h2, h3, p, a {
  color: var(--color-brown);
  line-height: 1.6;
}

a {
  text-decoration: none;
  display: inline-block;
}

img {
  max-width: 100%;
  width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* ===============================================
# コンテナ
=============================================== */
.container {
  width: 100%;
  padding: 0 20px;
  margin-bottom: 200px;
}
@media screen and (max-width: 780px) {
  .container {
    margin-bottom: 100px;
  }
}

.cont {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.kv .cont {
  max-width: 1500px;
}

#contact-top .cont {
  max-width: 620px;
}

/* ===============================================
# アニメーション
=============================================== */
@keyframes open_menu {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}
.key-open_menu {
  animation-name: open_menu;
}

@keyframes close_menu {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}
.key-close_menu {
  animation-name: close_menu;
}

.anime {
  animation-duration: 1s;
}
.anime.loop {
  animation-iteration-count: infinite;
}
.anime.delay-1s {
  animation-delay: 1s;
}
.anime.delay-2s {
  animation-delay: 2s;
}
.anime.delay-3s {
  animation-delay: 3s;
}
.anime.delay-4s {
  animation-delay: 4s;
}
.anime.delay-5s {
  animation-delay: 5s;
}
.anime.fast {
  animation-duration: 500ms;
}
.anime.slow-2s {
  animation-duration: 2s;
}
.anime.slow-10s {
  animation-duration: 10s;
}
.anime.slow-20s {
  animation-duration: 20s;
}
.anime.ease-in {
  animation-timing-function: ease-in;
}
.anime.ease-out {
  animation-timing-function: ease-out;
}

/* ===============================================
# hover
=============================================== */
.header--menu a:hover {
  color: var(--color-white-hover);
}
.header--menu img:hover {
  width: 30px;
}
.header--menu .btn-yellow:hover {
  background-color: var(--color-yellow-hover);
}
.header--menu .btn-yellow a:hover {
  color: var(--color-green);
}

.btn:hover {
  background-color: var(--color-green-hover);
}

/* ===============================================
# page
=============================================== */
/* ===============================================
# topページ
=============================================== */
.kv {
  width: 100%;
}
.kv img {
  margin-bottom: 50px;
}
.kv p {
  max-width: 750px;
  font-size: var(--font-size20);
  margin: 0 auto;
  line-height: 1.8;
}

.service {
  width: 100%;
}

.service--list--item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 100px;
}
@media screen and (max-width: 800px) {
  .service--list--item {
    flex-direction: column-reverse;
  }
}
.service--list--item:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 800px) {
  .service--list--item:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}

.item--text {
  width: 60%;
}
@media screen and (max-width: 800px) {
  .item--text {
    width: 100%;
  }
}
.item--text h3 {
  font-size: var(--font-size26);
  color: var(--color-green);
  text-align: center;
  margin-bottom: 20px;
}
.item--text p {
  margin-bottom: 50px;
}
.item--image {
  width: 40%;
}
@media screen and (max-width: 800px) {
  .item--image {
    width: 100%;
  }
}

/* ===============================================
# ドッグセラピー
=============================================== */
.therapy--service--list {
  max-width: 700px;
}
@media screen and (max-width: 780px) {
  .therapy--service--list {
    width: 80%;
  }
}
.therapy--service--item {
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 780px) {
  .therapy--service--item {
    margin-bottom: 20px;
  }
}
.therapy--service--item p::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -40px;
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("../../assets/images/icon/therapy_icon.png");
  background-position: center;
  background-size: cover;
}

.efficacy--list {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.efficacy--item {
  text-align: center;
}
.efficacy--item:nth-of-type(3) img {
  width: 80%;
}
.efficacy--item img {
  margin-bottom: 20px;
}
.efficacy--item span {
  font-size: var(--font-size20);
  color: var(--color-brown);
}
@media screen and (max-width: 780px) {
  .efficacy--item span {
    font-size: var(--font-size16);
  }
}

.examples--block {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 100px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.examples--block img {
  width: 50%;
}
@media screen and (max-width: 550px) {
  .examples--block img {
    width: 100%;
  }
}
.examples--block-a {
  background-image: url(../../assets/images/foot_left.png);
}
.examples--block-b {
  flex-direction: row-reverse;
  background-image: url(../../assets/images/foot_right.png);
}
@media screen and (max-width: 780px) {
  .examples--block-a, .examples--block-b {
    background-image: none;
  }
}
@media screen and (max-width: 550px) {
  .examples--block-a, .examples--block-b {
    flex-direction: column;
    align-items: center;
  }
}
.examples--block--text {
  width: 50%;
}
@media screen and (max-width: 550px) {
  .examples--block--text {
    width: 100%;
  }
}
.examples--block--text h4 {
  color: var(--color-green);
  font-size: var(--font-size28);
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 780px) {
  .examples--block--text h4 {
    font-size: var(--font-size20);
  }
}
.examples--block--text h4::after {
  content: "";
  display: block;
  width: 150px;
  height: 40px;
  margin: 0 auto;
  background-image: url(../../assets/images/underline.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 20px;
}
@media screen and (max-width: 780px) {
  .examples--block--text h4::after {
    width: 100px;
    transform: translateY(-10px);
  }
}

.dog--item {
  display: flex;
  gap: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 780px) {
  .dog--item {
    gap: 20px;
  }
}
@media screen and (max-width: 550px) {
  .dog--item {
    flex-direction: column;
    align-items: center;
  }
}
.dog--item img {
  width: 50%;
}
@media screen and (max-width: 550px) {
  .dog--item img {
    width: 100%;
  }
}
.dog--item--profile {
  width: 50%;
}
@media screen and (max-width: 550px) {
  .dog--item--profile {
    width: 100%;
  }
}
.dog--item--profile h4 {
  text-align: center;
  color: var(--color-green);
  font-size: var(--font-size26);
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 780px) {
  .dog--item--profile h4 {
    font-size: var(--font-size20);
  }
}

.fee--inner {
  font-weight: bold;
  background-color: var(--color-white);
  border-radius: 30px;
  border: solid 5px var(--color-green);
  padding: 30px;
  text-align: center;
}
.fee--inner time {
  display: block;
  text-align: center;
  font-size: var(--font-size30);
  font-weight: bold;
  color: var(--color-brown);
  margin-bottom: 30px;
}
@media screen and (max-width: 550px) {
  .fee--inner time {
    font-size: var(--font-size26);
  }
}
.fee--inner time::before {
  display: inline-block;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url(../../assets/images/icon/clock.png);
  transform: translate(-40px, 5px);
}
@media screen and (max-width: 550px) {
  .fee--inner time::before {
    width: 25px;
    height: 25px;
    transform: translate(-33px, 5px);
  }
}
.fee--inner .week,
.fee--inner .range {
  margin-bottom: 20px;
}
.fee--inner .week br,
.fee--inner .range br {
  display: none;
}
@media screen and (max-width: 550px) {
  .fee--inner .week br,
  .fee--inner .range br {
    display: block;
  }
}
.fee--inner span {
  font-size: var(--font-size30);
}
@media screen and (max-width: 550px) {
  .fee--inner span {
    font-size: var(--font-size26);
  }
}
.fee--inner .range {
  font-size: var(--font-size30);
}
@media screen and (max-width: 550px) {
  .fee--inner .range {
    font-size: var(--font-size26);
  }
}
.fee--inner .range::before {
  display: inline-block;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  width: 65px;
  height: 45px;
  background-image: url(../../assets/images/icon/car.png);
  transform: translate(-70px, 3px);
}
@media screen and (max-width: 550px) {
  .fee--inner .range::before {
    width: 40px;
    transform: translate(-50px, 2px);
  }
}
.fee--inner h4 {
  font-size: var(--font-size30);
  color: var(--color-orange);
}
@media screen and (max-width: 550px) {
  .fee--inner h4 {
    font-size: var(--font-size26);
  }
}
.fee--inner h4 span {
  display: inline-block;
  margin: 20px 0;
}

/* ===============================================
# ドッグトレーニング
=============================================== */
.training_menu {
  width: 100%;
}
.training_menu--inner {
  background-color: var(--color-green);
  border-radius: 30px;
  padding-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 20px;
  background-image: url(../../assets/images/foot_left.png);
  background-position: center 60%;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 980px) {
  .training_menu--inner {
    background-image: none;
  }
}
.training_menu--item {
  max-width: 300px;
  transform: translateY(-25px);
}
.training_menu--item img,
.training_menu--item h4 {
  margin-bottom: 20px;
}
.training_menu--item h4 {
  color: var(--color-yellow);
  font-weight: bold;
  font-size: var(--font-size26);
  text-align: center;
}
.training_menu--item p {
  color: var(--color-white);
}

.voice {
  width: 100%;
}
.voice--list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 800px) {
  .voice--list {
    flex-direction: column;
    align-items: center;
    width: 80%;
    gap: 50px;
  }
}
@media screen and (max-width: 580px) {
  .voice--list {
    width: 100%;
  }
}
.voice--case {
  width: 30%;
}
@media screen and (max-width: 800px) {
  .voice--case {
    width: 100%;
  }
}
.voice--case img {
  margin-bottom: 10px;
}

/* ===============================================
# お問い合わせ
=============================================== */
.wpcf7 dl > div {
  margin-bottom: 25px;
}
.wpcf7 dt {
  margin-bottom: 5px;
}
.wpcf7 .required {
  display: inline-block;
  width: 40px;
  height: 20px;
  color: var(--color-white);
  background-color: var(--color-red);
  font-size: var(--font-size12);
  border-radius: 3px;
  text-align: center;
}
.wpcf7 .required.any {
  background-color: var(--color-gray);
}
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7 .wpcf7-form-control-wrap span {
  display: block;
}
.wpcf7 .wpcf7-form-control-wrap input, .wpcf7 .wpcf7-form-control-wrap textarea {
  width: 100%;
  background-color: var(--color-white);
  border: solid 1px var(--color-gray-boarder);
  padding: 3px 10px;
  border-radius: 5px;
}
.wpcf7 .privacy .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .privacy label {
  display: flex;
  justify-content: center;
}
.wpcf7 .privacy label input {
  width: 20px;
  margin-right: 20px;
}
.wpcf7 .privacy label span {
  display: inline-block;
}
.wpcf7 .wpcf7-spinner {
  display: none;
}

/* ===============================================
# parts
=============================================== */
/* ===============================================
# header
=============================================== */
.header {
  width: 100%;
  height: 150px;
  padding-left: 50px;
  margin-bottom: 100px;
}
@media screen and (max-width: 995px) {
  .header {
    padding-left: 20px;
    margin-bottom: 0;
  }
}
.header.is-active {
  padding-left: 0;
}
.header--inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header--inner.is-active {
  height: 100%;
}
.header--logo {
  max-width: 150px;
}
@media screen and (max-width: 995px) {
  .header--logo {
    max-width: 100px;
    transform: translateY(-20px);
  }
}
.header--logo.is-active {
  display: none;
}
.header nav {
  width: 950px;
}
@media screen and (max-width: 995px) {
  .header nav {
    display: none;
  }
}
.header--menu {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  background-color: var(--color-green);
  border-radius: 30px 0 0 30px;
}
.header--menu li {
  margin: 0 1rem;
}
.header--menu li:nth-of-type(5), .header--menu li:nth-of-type(6) {
  width: 40px;
}
.header--menu a {
  color: var(--color-white);
  font-size: var(--font-size18);
  font-weight: bold;
}
.header--menu img {
  width: 35px;
}

/* ===============================================
# footer
=============================================== */
.footerContact {
  width: 100%;
}
.footerContact.is-active {
  display: none;
}
.footerContact--inner h2 {
  font-size: var(--font-size26);
  font-weight: bold;
  text-align: center;
  color: var(--color-green);
  margin-bottom: 20px;
}
.footerContact--inner h2 span {
  color: var(--color-brown);
  font-size: var(--font-size20);
  display: block;
}
.footerContact--inner > p {
  text-align: center;
  margin-bottom: 60px;
}
.footerContact--icon {
  display: flex;
  justify-content: center;
  gap: 100px;
}
@media screen and (max-width: 450px) {
  .footerContact--icon {
    gap: 0;
    justify-content: space-between;
  }
}
.footerContact--icon .line,
.footerContact--icon .mail {
  max-width: 160px;
}
.footerContact--icon .line img,
.footerContact--icon .mail img {
  max-width: 120px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 550px) {
  .footerContact--icon .line img,
  .footerContact--icon .mail img {
    max-width: 100px;
  }
}
.footerContact--icon .line span,
.footerContact--icon .mail span {
  font-weight: bold;
}

.footer {
  background-color: var(--color-green);
  padding: 20px 50px;
}
@media screen and (max-width: 550px) {
  .footer {
    padding: 20px;
  }
}
.footer.is-active {
  display: none;
}
.footer img {
  max-width: 600px;
  margin-bottom: 10px;
}
.footer p {
  color: var(--color-white);
}

/* ===============================================
# ボタン
=============================================== */
.btn {
  height: 40px;
  border-radius: 30px;
  margin: 0 auto;
}
.btn a {
  display: block;
  text-align: center;
  font-weight: bold;
  line-height: 40px;
}

.btn-yellow {
  background-color: var(--color-yellow);
}
.btn-yellow a {
  color: var(--color-green);
  padding: 0 15px;
}

.btn-green {
  width: 150px;
  background-color: var(--color-green);
}
.btn-green a {
  color: var(--color-white);
}

.privacy .btn-green {
  width: 200px;
  text-align: center;
}
.privacy .btn-green a {
  display: inline-block;
}

.send-btn input {
  width: 100%;
  text-align: center;
  color: var(--color-white);
  line-height: 40px;
  font-weight: bold;
}

.btn-instagram {
  width: 300px;
  height: 50px;
  background-color: var(--color-green);
  margin-bottom: 200px;
}
.btn-instagram a {
  font-size: 30px;
  line-height: 45px;
  color: var(--color-white);
  position: relative;
}
.btn-instagram a::before {
  content: "";
  position: absolute;
  display: block;
  top: 16px;
  left: 28px;
  width: 20px;
  height: 20px;
  background-image: url(../images/svg/Icon_Instagram.svg);
  background-size: cover;
}

/* ===============================================
# タイトル
=============================================== */
.ttl {
  max-width: 1200px;
  margin: 0 auto;
}
.ttl h2 {
  width: 55%;
  margin-left: auto;
  text-align: center;
  font-size: var(--font-size40);
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  .ttl h2 {
    font-size: var(--font-size26);
  }
}
@media screen and (max-width: 420px) {
  .ttl h2 {
    width: 75%;
  }
}
.ttl h2 span {
  display: block;
  font-size: var(--font-size20);
  font-weight: 500;
  color: var(--color-green);
}
.ttl img {
  transform: translateY(-100px);
}
@media screen and (max-width: 700px) {
  .ttl img {
    transform: translateY(-50px);
  }
}
@media screen and (max-width: 420px) {
  .ttl img {
    transform: translateY(0);
  }
}

.sub_ttl {
  color: var(--color-green);
  text-align: center;
  font-size: var(--font-size30);
  font-weight: bold;
  margin-bottom: 60px;
}
@media screen and (max-width: 780px) {
  .sub_ttl {
    font-size: var(--font-size24);
  }
}

.fee .sub_ttl {
  position: relative;
}
@media screen and (max-width: 550px) {
  .fee .sub_ttl {
    font-size: var(--font-size20);
  }
}
.fee .sub_ttl::before, .fee .sub_ttl::after {
  width: 60px;
  height: 60px;
  display: inline-block;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
}
@media screen and (max-width: 550px) {
  .fee .sub_ttl::before, .fee .sub_ttl::after {
    width: 40px;
    height: 40px;
  }
}
.fee .sub_ttl::before {
  background-image: url(../../assets/images/trip_left.png);
  transform: translate(-60px, -7px);
}
@media screen and (max-width: 550px) {
  .fee .sub_ttl::before {
    transform: translate(-40px, -2px);
  }
}
.fee .sub_ttl::after {
  background-image: url(../../assets/images/trip_right.png);
  transform: translate(0px, -6px);
}
@media screen and (max-width: 550px) {
  .fee .sub_ttl::after {
    transform: translate(0px, -1px);
  }
}

.service--ttl {
  width: 20%;
  margin: 0 auto;
}

.privacy {
  color: var(--color-brown);
  margin-bottom: 100px;
}
@media screen and (max-width: 530px) {
  .privacy {
    margin-bottom: 50px;
  }
}
.privacy .ttl {
  margin-bottom: 100px;
}
@media screen and (max-width: 530px) {
  .privacy .ttl {
    margin-bottom: 50px;
  }
}
.privacy .ttl h2 {
  margin: 0 auto;
}
@media screen and (max-width: 780px) {
  .privacy .ttl h2 {
    font-size: var(--font-size26);
  }
}
@media screen and (max-width: 530px) {
  .privacy .ttl h2 {
    font-size: var(--font-size20);
  }
}
.privacy p {
  margin-bottom: 50px;
}
.privacy dt {
  margin-bottom: 10px;
}
.privacy dd {
  margin: 0 0 50px 40px;
  line-height: 1.4;
}
@media screen and (max-width: 780px) {
  .privacy dd {
    margin: 0 0 30px 20px;
  }
}

/* ===============================================
# ハンバーガー
=============================================== */
.hamburger {
  display: none;
  width: 75px;
  height: 70px;
  background-color: var(--color-green);
  text-align: center;
  border-radius: 33px 0 0 33px;
  position: fixed;
  top: 20px;
  right: 0;
  z-index: 9999;
}
@media screen and (max-width: 995px) {
  .hamburger {
    display: block;
  }
}
.hamburger span {
  display: inline-block;
  width: 35px;
  height: 5px;
  border-radius: 3px;
  margin-left: 3px;
  background-color: var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.hamburger span:first-of-type {
  top: 32%;
}
.hamburger span:last-of-type {
  top: 67%;
}
.hamburger.is-open span:nth-of-type(1) {
  transform: rotate(-45deg);
}
.hamburger.is-open span:nth-of-type(2) {
  display: none;
}
.hamburger.is-open span:nth-of-type(3) {
  transform: rotate(45deg);
}
.hamburger.is-open span:nth-of-type(1), .hamburger.is-open span:nth-of-type(3) {
  top: 45%;
  left: 30%;
}

/* ===============================================
# プロフィール
=============================================== */
.profile {
  width: 100%;
  background-color: var(--color-white);
  padding-top: 60px;
  padding-bottom: 60px;
}
.profile--inner {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 800px) {
  .profile--inner {
    flex-direction: column;
  }
}
.profile--image {
  width: 25%;
}
@media screen and (max-width: 800px) {
  .profile--image {
    width: auto;
  }
}
.profile--name {
  width: 75%;
}
@media screen and (max-width: 800px) {
  .profile--name {
    width: 90%;
  }
}
.profile--name h2 {
  font-size: var(--font-size26);
  font-weight: bold;
  color: var(--color-green);
  border-bottom: solid 3px var(--color-orange);
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.profile--name .post {
  display: block;
  color: var(--color-brown);
  font-weight: bold;
}
.profile--name .furigana {
  color: var(--color-brown);
  font-weight: normal;
  margin-left: 20px;
}

/* ===============================================
# スマホメニュー
=============================================== */
.sp_menu {
  min-height: 500px;
  width: 100%;
  height: 100%;
  background-color: var(--color-green);
  position: absolute;
  top: 0;
  right: -100%;
  z-index: 2;
  transition: 1s;
  display: none;
}
.sp_menu.is-open {
  transition: 0.5s;
  right: 0;
  display: block;
}
.sp_menu--list {
  width: 60%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sp_menu--item {
  border-bottom: solid 1px var(--color-white);
  text-align: center;
  padding: 10px;
}
.sp_menu--item a {
  color: var(--color-white);
  font-weight: bold;
  font-size: var(--font-size20);
}
.sp_menu .sns {
  display: flex;
  gap: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 150px);
}

/* ===============================================
# 下層ページキャッチコピー
=============================================== */
.catch--inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 780px) {
  .catch--inner {
    flex-direction: column-reverse;
  }
}
.catch--text {
  max-width: 730px;
}
.catch--text h2 {
  min-width: 730px;
  background-color: var(--color-white);
  padding: 20px;
  border-radius: 30px;
  font-size: var(--font-size30);
  color: var(--color-green);
  display: block;
  margin-bottom: 60px;
}
@media screen and (max-width: 780px) {
  .catch--text h2 {
    min-width: 0;
    font-size: var(--font-size20);
    text-align: center;
  }
}
@media screen and (max-width: 550px) {
  .catch--text h2 {
    text-align: left;
  }
}
@media screen and (max-width: 550px) {
  .catch--text h2 br {
    display: none;
  }
}
.catch--text p {
  font-size: var(--font-size18);
  text-align: left;
  line-height: 2;
}
@media screen and (max-width: 780px) {
  .catch--img {
    transform: none;
    max-width: 30%;
    margin: 0 auto;
  }
}

.training .catch--inner {
  flex-direction: row;
}
@media screen and (max-width: 980px) {
  .training .catch--inner {
    flex-direction: column;
    align-items: center;
  }
}/*# sourceMappingURL=style.css.map */