@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
*, *::before, *::after {
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  outline: none;
  box-sizing: border-box;
  border-spacing: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

* {
  color: #252525;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}

body {
  position: relative;
  width: 100%;
  max-width: 1000px;
  padding-top: 80px;
  padding-bottom: 350px;
  margin: 0 auto;
}

header {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
}

footer {
  width: 100vw;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.flex {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

@media (max-width: 900px) {
  body {
    width: 100vw;
    max-width: 100vw;
    min-width: 100vw;
    padding-top: 0;
    padding-bottom: 343.8px;
  }
		html,body{
width:100%;
overflow-x:hidden;
}
}
header {
height: 80px;
  background: white;
  box-shadow: 0 0 10px 0 rgba(37, 37, 37, 0.25);
}

.h {
  width: 100%;
  max-width: 1000px;
  height: 100%;
  justify-content: space-between;
  margin: 0 auto;
}
.h h1 {
    width: fit-content;
}
.h .name {
  font-size: 18px;
	line-height: 1.1;
}
.h .right {
  gap: 70px;
}
.h nav {
  gap: 45px;
}
.h nav a {
  font-size: 15px;
}
.h nav .more {
  cursor: pointer;
  position: relative;
  background: 1px solid red;
}
.h nav .more span {
  width: 12px;
  aspect-ratio: 7/14;
  background-image: url("../Media/Icon/arrow.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  margin-left: 10px;
}
.h nav .more .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 0 10px 0 rgba(37, 37, 37, 0.25);
  padding: 10px 0;
  flex-direction: column;
  min-width: 150px;
}
.h nav .more .dropdown a {
  padding: 10px 15px;
  white-space: nowrap;
}
.h nav .more .dropdown a:hover {
  background: #f5f5f5;
}
.h nav .more:hover .dropdown {
  display: flex;
}
.h .btn {
  font-size: 15px;
  color: white;
  background: linear-gradient(to right, #BE4AD3, #30337A);
  padding: 14px 18px;
}

.mobile-header-btn, .mobile-header {
  display: none;
}

@media (max-width: 900px) {
  header {
    height: 56px;
    box-shadow: none;
  }
	.h {
    display: block !important;
    position: fixed;
    top: 10px;
    left: 25px;
    width: 100%;
		width: 136px;
		height: 36px;
    aspect-ratio: 1 / 1;
    background: none;
/*     background-image: url(../Media/Icon/mobile-menu.svg); */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10020;
    z-index: 99999;
    cursor: pointer;
}
	.h .name {
/*     color: white; */
		font-size: 16px;
}
  header .h .right {
    display: none !important;
  }
  header .mobile-header-btn {
    display: block !important;
    position: fixed;
    top: 10px;
    right: 15px;
    width: 45px;
    aspect-ratio: 1/1;
    background: none;
/*     background-image: url("../Media/Icon/mobile-menu.svg"); */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10020;
    z-index: 99999;
    cursor: pointer;
  }
	/* ハンバーガーボタン */

.mobile-header-btn {
    width: 40px;
    height: 40px;
    position: relative;
    border: none;
    background: none;
    cursor: pointer;
}


/* 3本線 */

.mobile-header-btn::before,
.mobile-header-btn::after,
.mobile-header-btn span {

    content: "";
    position: absolute;
    left: 8px;

    width: 24px;
    height: 2px;

    background: #000;

    transition: 0.3s;
}


/* 上 */

.mobile-header-btn::before {
    top: 12px;
}

/* 中 */

.mobile-header-btn span {
    top: 19px;
}

/* 下 */

.mobile-header-btn::after {
    top: 26px;
}


/* 開いたとき → × */

.mobile-header-btn.active::before {
    transform: rotate(45deg);
    top: 19px;
}

.mobile-header-btn.active span {
    opacity: 0;
}

.mobile-header-btn.active::after {
    transform: rotate(-45deg);
    top: 19px;
}
  header .mobile-header {
    display: flex !important;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 10010;
    flex-direction: column;
    gap: 50px;
  }
  header .mobile-header a {
    font-size: 24px;
    font-weight: 500;
  }
  header .mobile-header.active {
    transform: translateX(0);
    pointer-events: auto;
  }
}
/* Footer CSS */
/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡ Main ≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
footer {
  height: 350px;
  background: #5B5B5B;
}

.f {
  width: 100%;
  max-width: 1000px;
  height: 100%;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  position: relative;
}
.f .name {
  width: 100%;
  color: white;
  font-size: 24px;
  font-weight: 500;
}
.f .line {
  width: 100%;
  border-top: 2px solid white;
  margin: 25px 0 40px 0;
}
.f .top {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}
.f .top .info {
  width: 50%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 25px;
}
.f .top .info .address, .f .top .info .tel, .contact_time {
  color: white;
  font-size: 16px;
  line-height: 1.5;
}
.f .top .menu {
  width: 50%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 25px;
}
.f .top .menu nav {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.f .top .menu nav a {
  color: white;
  font-size: 16px;
}
.f .top .menu nav span {
  color: white;
  font-size: 16px;
  margin: 0 20px;
}
.f .copyright {
  width: 100%;
  color: white;
  font-size: 14px;
  text-align: center;
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 900px) {
  footer {
    height: auto;
  }
  .f {
    width: calc(100% - 30px);
    margin: 40px 15px 15px 15px;
    height: auto;
  }
  .f .name {
    font-size: 20px;
    text-align: center;
  }
  .f .line {
    border-top: 1px solid white;
  }
  .f .top {
    width: 100%;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .f .top .info {
    width: 100%;
    gap: 0;
    margin-top: 20px;
  }
  .f .top .info .address, .f .top .info .tel {
    width: 100%;
    font-size: 14px;
    text-align: center;
  }
  .f .top .info .address br, .f .top .info .tel br {
    display: none;
  }
  .f .top .menu {
    width: 100%;
    align-items: center;
  }
  .f .top .menu nav a {
    font-size: 15px;
	          white-space: nowrap;
  }
  .f .top .menu nav span {
    margin: 0 5px;
  }
  .f .copyright {
    position: relative;
    bottom: 0;
    margin-top: 10px;
  }
	.contact_time {
    text-align: center;
    font-size: 14px;
    margin: 0px auto;
}
}
.form {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  margin-top: 50px;
  border: none !important;
  background: none !important;
}

@media (max-width: 900px) {
  .form {
    width: 100%;
    margin: 50px 0 0;
  }
}
.wpcf7-form {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 15px;animation-direction
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item {
  margin-top: 5px;
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  color: white !important;
  font-size: 16px !important;
  font-weight: 500 !important;
	white-space: nowrap;
	gap: 5px;
}
.wpcf7-form p {
  margin: 0 !important;
}
.wpcf7-form p label {
  color: white;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
	    display: flex;
	align-items: center;
}
.wpcf7-form p label b {
  color: white;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
}
.wpcf7-form p label input {
  width: 100%;
  height: 20px;
  background: white !important;
  border: 1px solid #EEEEEE !important;
  margin-top: 5px;
	margin-right: 5px;
  padding: 4px 12px 0 12px !important;
  letter-spacing: 1px;
  line-height: 40px;
}
.wpcf7-form p label input::-moz-placeholder {
  font-family: "Noto Sans JP";
  color: rgba(0, 0, 0, 0.3);
  font-weight: 300 !important;
}
.wpcf7-form p label input::placeholder {
  font-family: "Noto Sans JP";
  color: rgba(0, 0, 0, 0.3);
  font-weight: 300 !important;
}
.wpcf7-form p:has(textarea), .wpcf7-form p:has(input[type=submit]) {
  grid-column: 1/-1;
}
.wpcf7-form p textarea {
  width: 100%;
  height: 140px;
  background: white;
  border: 1px solid #EEEEEE !important;
  padding: 12px 12px !important;
  margin-top: 5px;
  resize: none;
}
.wpcf7-form p textarea::-webkit-scrollbar {
  display: none;
}
.wpcf7-form p input[type=submit] {
  width: 280px;
  height: 40px;
  background: linear-gradient(to right, #BE4AD3, #30337A);
  border: 1px solid white;
  margin: 0 auto;
  padding: 0;
  display: block;
  color: white;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 6px;
}
.wpcf7-form p .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7-form p .wpcf7-not-valid {
  border: 1px solid #FF4747 !important;
}
.wpcf7-form .wpcf7-response-output {
  grid-column: 1/-1;
  height: 40px;
  margin: 0;
  padding: 0;
  font-size: 16px;
  letter-spacing: 6px;
  display: grid;
  place-items: center;
}
.wpcf7-form:is(.init, .invalid) .wpcf7-response-output {
  display: none;
}
.wpcf7-form.sent .wpcf7-response-output {
  background: #E8FFE8;
  border: 1px solid #5EFF5E;
  color: #032103;
  margin-top: -50px;
}
.wpcf7-form:is(.failed, .aborted, .spam, .unaccepted) .wpcf7-response-output {
  background: #FFE8E8;
  border: 1px solid #FF5E5E;
  color: #210303;
  margin-top: -50px;
}

.s404 {
  display: flex;
  width: 100%;
  padding: 150px 0px 150px 0;
  flex-direction: column;
  position: relative;
  gap: 50px;
}
.s404 .background {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../Media/BG/1.webp");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: -1;
}
.s404 h2 {
  width: 100%;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
.s404 p {
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.s404 p b {
  font-weight: 500;
}
.s404 a {
  font-size: 16px;
  color: white;
  background: linear-gradient(to right, #BE4AD3, #30337A);
  padding: 14px 30px;
}

@media (max-width: 900px) {
  .s404 {
    padding: 100px 15px 100px 15px;
  }
  .s404 h2 {
    font-size: 20px;
  }
  .s404 p {
    font-size: 14px;
  }
  .s404 p b {
    font-size: 14px;
  }
  .s404 a {
    font-size: 15px;
    padding: 12px 24px;
  }
}

.sp_show {
    display: none;
}
.pc_show {
    display: inline;
}

/* スマホ */
@media (max-width: 768px) {
    .sp_show {
        display: inline;
    }
    .pc_show {
        display: none;
    }
}

.cf7-form {
  max-width: 720px;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-label.required::after {
  content: "必須";
  background: #d9534f;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  margin-left: 8px;
  border-radius: 3px;
}

.form-control {
  width: 100%;
}

/* テキスト入力 */

.input-text {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

/* セレクト */

.input-select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

/* textarea */

.input-textarea {
  width: 100%;
  min-height: 140px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

/* ラジオ */

.radio-group label {
  margin-right: 20px;
}

/* 日時 */

.datetime-group {
  display: flex;
  gap: 12px;
}

.datetime-item {
  flex: 1;
}

/* 送信ボタン */

.form-submit {
  text-align: center;
  margin-top: 40px;
}

.submit-btn {
  background: #2c6ebd;
  color: #fff;
  padding: 14px 40px;
  border-radius: 6px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.submit-btn:hover {
  background: #1e4f8a;
}

/* スマホ */

@media (max-width: 768px) {

  .datetime-group {
    flex-direction: column;
  }

}


/* 初期状態：少し下＋透明 */
.home section.flex,
.page-id-16 section.flex,
.page-id-18 section.flex,
.page-id-24 section.flex,
.page-id-22 section.flex{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示時 */
.home section.flex.is-visible,
.page-id-16 section.flex.is-visible,
.page-id-18 section.flex.is-visible,
.page-id-24 section.flex.is-visible,
.page-id-22 section.flex.is-visible{
  opacity: 1;
  transform: translateY(0);
}