@charset "UTF-8";

*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  display: revert
}

*,
*:before,
*:after {
  box-sizing: border-box
}

a,
button {
  cursor: revert
}

ol,
ul,
menu {
  list-style: none
}

img {
  max-inline-size: 100%;
  max-block-size: 100%
}

table {
  border-collapse: collapse
}

input,
textarea {
  -webkit-user-select: auto
}

textarea {
  white-space: revert
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert
}

:where(pre) {
  all: revert
}

::-moz-placeholder {
  color: u nset
}

::placeholder {
  color: unset
}

::marker {
  content: initial
}

:where([hidden]) {
  display: none
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto
}

:where([draggable=true]) {
  -webkit-user-drag: element
}

:where(dialog:modal) {
  all: revert
}

:root {
  --font-ja: dnp-shuei-mgothic-std, sans-serif;
  --font-ja-bold: 600;
  --font-ja-light: 400;
  --font-en: TTForsW05DemiBold;
  --color-gray: #3c3c3c;
  --color-grayge-dark: #bcb9b7;
  --ease-back-out: cubic-bezier(.34, 1.56, .64, 1)
}

:root {
  font-size: 2.6666666667vw
}

@media only screen and (min-width: 769px) {
  :root {
    font-size: .6944444444vw
  }
}

body {
  font-family: var(--font-ja);
  font-weight: var(--font-ja-light);
  line-height: 1.6;
  font-size: 1.6rem;
  overflow-wrap: break-word;
}

:focus-visible {
  outline: revert
}

img,
video {
  max-width: 100%;
  height: auto
}

button {
  cursor: pointer
}

.intro {
  width: 100%;
  height: 70%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding-bottom: 2.8rem
}

@media only screen and (max-width: 768px) {
  .intro {
    gap: 2rem
  }
}

.intro__logo {
  aspect-ratio: 400/115;
  width: 40rem;
  display: block;
  animation: intro-logo 0.5s -0.5s steps(2, jump-none) infinite alternate
}

@media only screen and (max-width: 768px) {
  .intro__logo {
    width: 12rem
  }
}

.intro:before,
.intro:after {
  content: "";
  display: block;
  aspect-ratio: 238/222;
  width: 11.9rem;
  background: 50% 50%/contain no-repeat;
  position: relative;
  top: -1rem;
  transform-origin: center bottom
}

@media only screen and (max-width: 768px) {
  .intro:before,
  .intro:after {
    width: 4rem;
    top: -.4rem
  }
}

.intro:before {
  background-image: url(/img/2025/09/heart01.png);
  animation: intro-rotate-left .5s steps(2, jump-none) infinite alternate
}

.intro:after {
  background-image: url(/img/2025/09/heart01.png);
  animation: intro-rotate-right .5s -.5s steps(2, jump-none) infinite alternate
}

@keyframes intro-logo {
  0% {
    scale: 1
  }

  to {
    scale: .98
  }
}

@keyframes intro-rotate-left {
  0% {
    transform: rotate(0)
  }

  to {
    transform: rotate(-6deg)
  }
}

@keyframes intro-rotate-right {
  0% {
    transform: rotate(0)
  }

  to {
    transform: rotate(6deg)
  }
}

.kv {
  --translate-progress: 0;
  --animation-opacity: 0;
  overflow: hidden;
  position: relative
}

@media only screen and (min-width: 769px) {
  .kv {
    aspect-ratio: 1440/997
  }
}

.kv__picture {
  display: block;
  position: relative;
  left: .0rem;
  border-radius: 2rem;
}

@media only screen and (min-width: 769px) {
  .kv__picture {
    border-radius: 5rem;
    overflow: hidden;
    width: 91.67%;
    margin: 4.1rem auto 0;
    position: relative;
    left: .5rem
  }
}

.kv__picture img {
  display: block;
  width: 100%
}

.kv__picture:before,
.kv__picture:after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  background: var(--color-grayge)
}

.kv__picture:before {
  left: 0;
  translate: calc(-100% * var(--translate-progress)) 0
}

.kv__picture:after {
  right: 0;
  translate: calc(100% * var(--translate-progress)) 0
}

.kv:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: url(/img/2025/09/decoration.webp) 38% -40%/105.7% auto no-repeat;
  opacity: var(--animation-opacity)
}

@media only screen and (min-width: 769px) {
  .kv:after {
    background-position: 19% 100%;
    background-size: 102.8% auto
  }
}


/*--------------Newly added--------------*/
/*--------↓TOPCSS↓-------*/
/*TOP画像フェードイン*/
.cont {
    width: 100%;
    height: 100%;
}
.slider-area {
    position: relative;
    width: 100%;
    height: 100%;
}
.slider-item {
    inset: 0;
    opacity: 0;
    z-index: 0;
    animation: slideShow 10s linear 1s;
    animation-fill-mode: forwards;
}
.slider-item:nth-child(2) {
    animation-delay: 5s;
}
.slider-item img {
}
@keyframes slideShow {
    0% {
        opacity: 0;
        animation-timing-function: ease-in;
    }
    8% {
        opacity: 1;
        animation-timing-function: ease-out;
    }
    20% {
        opacity: 1;
    }
    40%,
    100% {
        opacity: 0;
    }
}
.slider-last {
    inset: 0;
    opacity: 0;
    z-index: 0;
    animation: slidestop 10s linear 1s;
    animation-fill-mode: forwards;
}
.slider-last:nth-child(2) {
    animation-delay: 5s;
}
.slider-item img {
}
@keyframes slidestop {
    0% {
        opacity: 0;
        animation-timing-function: ease-in;
    }
    8% {
        opacity: 1;
        animation-timing-function: ease-out;
    }
    20% {
        opacity: 1;
    }
    40%,
    100% {
        opacity: 1;
    }
}
/*画像重ねる*/
.example{
    position: relative;
}
.example img{
    max-width: 99%;
    height: auto;
}
.example img:nth-of-type(2){
    position: absolute;
    right: 0%;
    bottom: 0%;
    width: 100%;
    height: auto;
}
.example2{
    position: relative;
}
.example2 img{
    max-width: 25%;
    height: auto;
}
.example2 img:nth-of-type(2){
    position: absolute;
    right: 0%;
    bottom: 0%;
    width: 100%;
    height: auto;
}
/*画像右からスライドフェードイン-inview*/
.fadeIn_right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 2s;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
/*imgBox*/
.imgBox {
  text-align: center;
  margin: 0;
}
.imgBox img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
/*imgBoxBox*/
.imgBoxBox {
  text-align: center;
  margin: 0 0 20px 0;
}
.imgBoxBox img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
/*txtBox*/
.txtBox {
  text-align: center;
}
.txtBox p {
  font-size: 60px;
  font-weight: bold;
  padding: 2em 0;
  margin: 0;
}
.section-pc {
  max-width: 70%;
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
}
.section {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
}
.section p._a {
  font-size: 12px;
  font-weight: bold;
  margin: 0;
}
.section p._a .link {
  display: inline-block;
  color: #607D8B;
  padding-left: 1.3em;
  text-indent: -1.3em;
}
.section p._a .link:before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 2px solid #607D8B;
  border-right: 2px solid #607D8B;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-right: 10px;
}
/*画像右からスライドフェードイン-inview*/
.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 2s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
/*imgBox*/
.imgBox {
  text-align: center;
  margin: 0;
}
.imgBox img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
/*txtBox*/
.txtBox {
  text-align: center;
}
.txtBox p {
  font-size: 60px;
  font-weight: bold;
  padding: 2em 0;
  margin: 0;
}
.section {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
}
.section p._a {
  font-size: 12px;
  font-weight: bold;
  margin: 0;
}
.section p._a .link {
  display: inline-block;
  color: #607D8B;
  padding-left: 1.3em;
  text-indent: -1.3em;
}
.section p._a .link:before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 2px solid #607D8B;
  border-right: 2px solid #607D8B;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-right: 10px;
}
/*--------↑TOPCSS↑-------*/
/*--------↓ヘッダーメニューCSS↓-------*/
/* body,main,footerについては仮で設定していたのでこちらは移行しません。 */
/* body {
    margin: 0;
}
* {
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
main {
    height: 1000px;
    background-color: #e8e8e8;
}
footer {
    height: 800px;
    background-color: azure;
} */
header.site-header {
    position: fixed;
    top: 0px;
    width: 100%;
    height: 50px;
    z-index: 2;
}
.header-inner {
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    background-image: linear-gradient(0deg, #ffffff 30%, #ffdaedf2 70%, #ffb4dae6);
}
h1.header-logo {
    margin: 0;
    margin-bottom: 0;
}
h1.header-logo a img {
    max-width: 150px;
}
.header-menu ul {
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 30px;
}
.header-menu ul li {
    margin-right: 25px;
}
.header-menu ul li:last-child {
    margin-right: 0;
}
.header-menu ul li a {
    text-decoration: none;
    color: #333333;
    font-size: clamp(4px, 0.8vw, 14px);
    font-weight: 700;
}
.header-menu ul li a::after {
    content: "";
    display: block;
    width: 0%;
    height: 1px;
    background-color: #b993d6;
}
@media screen and (max-width:1030px){
    .header-menu ul {
        margin-left: 20px;
    }
    .header-menu ul li {
        margin-right: 10px;
    }
    .header-menu ul li a {
        font-size: 14px;
    }
}
@media screen and (max-width:1280px) {
    .header-menu,
    .header-menu-2 {
        display: none;
    }
}
.header-menu-2 ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.header-menu-2 ul li {
    display: flex;
    align-items: center;
    margin-left: 40px;
}
.header-menu-2 ul li a {
    text-decoration: none;
    color: #333333;
    white-space: nowrap;
    font-weight: 700;
    font-size:14px;
}
.header-menu-2 ul li a i {
    position: relative;
    margin-right: 18px;
}
.header-menu-2 ul li a i:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 40px;
    height: 40px;
    border-radius: 40px;
    z-index: -1;
}
.fa-solid.fa-book-open,
.fa-solid.fa-question,
.fa-regular.fa-envelope {
    color: #333333;
}
@media screen and (max-width:1030px){
    .header-menu-2 ul li {
        margin-left: 20px;
    }
    .header-menu-2 ul li a {
        font-size: 14px;
    }
    .header-menu-2 ul li a i {
        position: relative;
        margin-right: 10px;
    }
    .header-menu-2 ul li a i:after {
        width: 30px;
        height: 30px;
        border-radius: 30px;
    }
}
.header-menu-2 ul li:nth-child(1) i::after {
    background: #70e1f5;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #ffd194, #70e1f5);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #ffd194, #70e1f5); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.header-menu-2 ul li:nth-child(2) i::after {
    background: #ff4e50;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #f9d423, #ff4e50);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #f9d423, #ff4e50); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.header-menu-2 ul li:nth-child(3) i::after {
    background: #b993d6;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #8ca6db, #b993d6);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #8ca6db, #b993d6); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.header-menu-2 ul li a:hover i::after {
    background: #00d2ff;
    transition: .5s;
}
.header-menu-2 ul li a:hover {
    transform: translateY(-3px);
    transition: .3s;
}
/* humburger */
.humburger {
    display: none;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 999;
}
.humburger span {
    position: absolute;
    left: 50%;
    width: 30px;
    height: 2px;
    background-color: #333333;
}
.humburger span:nth-child(1) {
    top: 10px;
    transform: translateX(-50%);
}
.humburger span:nth-child(2){
    top:50%;
    transform: translate(-50%,-50%);
}
.humburger span:nth-child(3) {
    bottom: 10px;
    transform: translateX(-50%);
}
.humburger.active span:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(315deg);
    transition: .3s ease-out;
}
.humburger.active span:nth-child(2){
    display: none;
}
.humburger.active span:nth-child(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-315deg);
    transition: .3s ease-out;
}
/* sp-menu */
.sp-site-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 30px;
    z-index: 2;
}
.sp-header-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 100%;
    display: inline-block;
    width: 100%;
    z-index: 99;
}
.sp-header-menu ul {
    list-style: none;
    margin: 0;
    margin-top: 100px;
    padding: 0;
    text-align: center;
    background-color: rgba(255,105,180);
    height: 100vh;
    overflow: auto;
}
.sp-header-menu ul li {
    padding: 15px;
    border-bottom: 1px solid #ffffff;
}
.sp-header-menu ul li:first-child {
    margin-top: 0;
    border-top: 1px solid #ffffff;
}
.sp-header-menu ul li {
    text-decoration: none;
    color: #ffffff;
}
.sp-header-menu.show {
    left: 0;
    transition: .4s ease-out;
}
.sp-header-menu a {
    color: #ffffff;
}
.sp-header-menu2 {
    border-bottom: 2px solid #ffffff !important;
    margin-bottom: 200px;
}
@media screen and (max-width: 1280px) {
    .sp-header-menu {
        display: block;
    }
    .humburger {
        display: block;
    }
    .sp-header-menu ul {
        margin-top: 77px;
    }
}
@media screen and (max-width:1280px) {
    .sp-header-menu ul {
        margin-top: 77px;
    }
}
/* main-visual */
.main-visual img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: grayscale(50%);
}
/*ハート回転*/
.items{
    margin:10px auto;
    color: #ff5252;
    font-size:3em;
}
.Heart4{
    animation: anime4 1.5s alternate infinite;
}
@keyframes anime4{
    0% {transform: rotateY(0deg);}
    100% {transform: rotateY(360deg);}
}
/* ボタン本体のスタイル */
.heart-button {
    /* ボタン要素の大きさや色 */
    position: relative;
    display: inline-block;
    background-color: #ffd8da;
    padding: 0.3em 1.8em;
    border-radius: 5px;
    border: 2px solid transparent;

/* ボタンの文字の設定 */
    font-family: 'Quicksand', sans-serif;
    font-weight: bold;
    font-size: clamp(4px, 0.8vw, 14px);
    color: #ffffff;
    letter-spacing: 0.0em;

/* その他必要なスタイル */
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}
/* ハートの共通スタイル */
.heart-button::before,
.heart-button::after {
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    position: absolute;
    opacity: 0;
}
/* 左上のハートのスタイル */
.heart-button::before {
    background-image: url("/img/2025/09/heart.png");
    top: 0;
    left: -12px;
}
/* 右下のハートのスタイル */
.heart-button::after {
    background-image: url("/img/2025/09/heart-reverse.png");
    bottom: -6px;
    right: -14px;
}
/* ===ホバー時のスタイル=== */
/* ボタンホバー時のスタイル */
.heart-button:hover {
    background-color: #ffffff;
    border-color: #ef4b53;
    color: #ef4b53;
}
/* ボタンホバー時の左上のハートのスタイル */
.heart-button:hover::before {
    animation: heart 1.5s infinite ease-out;
}
/* ボタンホバー時の右下のハートのスタイル */
.heart-button:hover::after {
    animation: heart 1.5s 0.2s infinite ease-out;
}
/* ========= アニメーションの設定 ======== */
@keyframes heart {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        transform: translateY(-20px) scale(1.4);
        opacity: 0;
    }
}
/* ========= SPのスタイル ======== */
@media screen and (max-width: 768px) {

/* ボタン本体のスタイル */
.heart-button {
    background-color: #ffffff;
    border-color: #ef4b53;
    color: #ef4b53;
    }
/* 左上のハートのスタイル */
.heart-button::before {
    animation: heart 1.5s infinite ease-out;
}
/* 右下のハートのスタイル */
.heart-button::after {
    animation: heart 1.5s 0.2s infinite ease-out;
}
}
/*動くグラデーション文字*/
.character {
  color: hsl(calc(var(--hue) + var(--index) * 36deg) 80% 70%);
  text-shadow: 0 0 0.1em hsl(calc(var(--hue) + var(--index) * 36deg) 80% 85%);
  animation: hueRotation 3s linear infinite;
}
@keyframes hueRotation {
  from {
    --hue: 0deg;
  }
  to {
    --hue: -360deg;
  }
}
/*画像の上に文字を重ねる*/
.kasaneru{
  position: relative;/*親要素にrelative*/
}
.kasaneru p{
  position: absolute;/*重ねたい子要素にabsolute*/
  top:70%;
  left: 49%;
 -ms-transform: translate(-70%,-30%);/*ベンダープレフィックス*/
  -webkit-transform: translate(-70%,-30%);/*ベンダープレフィックス*/
  transform: translate(-70%,-30%);/*センター寄せの修正*/
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 0px;
  display:block;
  margin: 0!important;/*文字がずれている場合や*/
  padding: 0!important;/*文字が折り返される場合*/
}
/*ハート回転*/
.items{
  margin:5px auto;
  color: #FF5252;
  font-size:3em;
}
.Heart4{
  animation: anime4 1.5s alternate infinite;
}
@keyframes anime4{
  0% {transform: rotateY(0deg);}
  100% {transform: rotateY(360deg);}
}
/*--------↑ヘッダーメニューCSS↑-------*/

/*ヘッダー設定変更*/ 
#header .head-cover{
height: 0px;
 }
#primary {
margin-top: 0px;
}
/*ページタイトル消す*/ 
h1.entry-title{
 display:none;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important;margin: 0 auto;}
.sp { display: none !important;}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 1436px) {
.pc { display: none !important; }
.sp { display: block !important;margin: 0 auto;}
}
/* 固定ページのページタイトルを消す */
.entry-title{
 display:none;
}
/* 全体太文字 */
body {
font-size: 60%!important;
font-weight: bold;
}
/* BOX文字 */
.su-box-title {
font-size: 90%!important;
}
/* 全固定ページで非表示 */
.page .entry-title {
display: none;
}
/* 全投稿ページで非表示 */
.post .entry-title {
display: none;
}
/* 文章左右マージン */
.sentence {
padding: 0px 10px 0px 10px;
}

/*ヘッダー設定変更*/ 
.info {
padding: 0 0 0 0;
}
#head-in {
padding-top: 0px;
background: rgba(255,255,255,0.0);
}
#nav, #gnavi ul {
background: rgba(220,20,60,0.6);
}
#primary {
margin-top: 15px;
}
/* 固定ページのTOPマージン */
.container {
padding-top: 20px;
}

/* 画像と画像の隙間を無くす */
blockquote.aligncenter, .wp-caption.aligncenter, .post img.aligncenter {
    clear: both;
    margin-top: 0;
    margin-bottom: 0;
}
.wp-block-latest-posts.wp-block-latest-posts__list {
    list-style: none;
    clear: both;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: bottom;
}
.wp-block-latest-posts__post-excerpt, .wp-block-latest-posts__post-full-content {
    margin-bottom: 0;
    margin-top: 0;
}
.post img.alignleft {
    margin: 0;
}
/* ▲上を非表示 */
#mobile-buttons {
    position: static;
}

.post img.alignright {
    margin: .0 0 0 0;
}


/*ContactForm7カスタマイズ*/
table.CF7_table{
  width:100%;
  margin:0 auto;
  border: 3px solid #ff69b4;
}

table.CF7_table tr{
  border-top: 1px solid #ff69b4;
}

table.CF7_table tr th{
  text-align: left ;
  padding-left: 20px;
}

.single .entry-content table.CF7_table,
.page .entry-content table.CF7_table{
  display:table;
}

/*入力欄*/
.CF7_table input, .CF7_table textarea,.CF7_table select {
  border: 1px solid #d8d8d8;
}

.CF7_table ::placeholder {
  color:#797979;
}

/*「必須」文字*/
.CF7_req{
  font-size: clamp(12px, 16px, 20px);
  padding: 5px;
  background: #ff1493;
  color: #fff;
  border-radius: 3px;
  margin-right:1em;
}

/*「任意」文字*/
.CF7_unreq{
  font-size: clamp(12px, 16px, 20px);
  padding: 5px;
  background: #d8bfd8;
  color: #fff;
  border-radius: 3px;
  margin-right:1em;
}

/* タイトル列 */
@media screen and (min-width: 1281px){
  .CF7_table{
  width:700px;/*横幅*/
  }
  .CF7_table th{
  width:30%;/*横幅*/
  background-color:#ffc0cb;/*ブルーグレー*/
  font-size: clamp(12px, 16px, 20px);
  }
  .CF7_table th td{
  width:70%;/*横幅*/
  font-size: clamp(12px, 16px, 20px);
  }
.wpcf7-tel { 
  width: 50%!important;
  height: 45px;
  background: #ffffff;
}
.wpcf7-select { 
  width: 30%!important;
  height: 45px;
  text-align: center;
  background: #ffffff;
}
.wpcf7-text { 
width: 80%!important;
height: 45px;
background: #ffffff;
}
.wpcf7-textarea { 
width: 80%!important;
 height: 200px;
background: #ffffff;
}
}

/* レスポンシブ */
@media screen and (max-width: 1280px){
  table.CF7_table{
  table-layout: fixed;
  word-break: break-all;
  word-wrap: break-all;
  }
  .CF7_table tr, .CF7_table td, .CF7_table th{
  display: block;
  width: 100%;
  line-height:2.5em;
  font-size: clamp(12px, 16px, 20px);
  }
  .CF7_table th{
  background-color:#ffc0cb;
  }
  .CF7_table th td{
  width: 100%;
  font-size: clamp(12px, 16px, 20px);
  }
  .wpcf7-tel { 
  width: 100%!important;
  height: 45px;
background: #ffffff;
}
.wpcf7-select { 
  width: 50%!important;
  height: 45px;
  text-align: center;
  background: #ffffff;
}
.wpcf7-text { 
width: 100%!important;
height: 45px;
background: #ffffff;
}
.wpcf7-textarea { 
width: 100%!important;
height: 200px;
background: #ffffff;
}
}

/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
  background-color:#ff1493;
  border:0;
  color:#fff;
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight:bold;
  margin:0 auto;
  padding: 20px 30px 20px 30px;
}

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

.wpcf7-spinner{
  width:0;
  margin:0;
}

.post td, .post th {
    font-size: clamp(12px, 16px, 20px);
}

.post {
    font-size: clamp(12px, 16px, 20px);
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

/*スライダー画像上にテキスト配置sp*/
 .container-sp{
        position: relative !important;
        width:100%;
      }
      img{
        width: 100%;
      }
      .container-sp p{
        position: absolute;
        padding: 10px;
        margin:0;
      }
      .container-sp .tag{
        top: 0;
        left: 0;
        width: 100%;
        margin: 0; /*余計な隙間を除く*/
        padding: 0px 5px 0px 5px;
        text-align: left;
        background: rgba(0, 0, 0, 0.3);
        font-size: 1.5rem;
        font-weight: 300;
        color: #fff;
      }
      .container-sp .date {
        top: 50%;
        left: 40%;
        font-size: 1.0rem;
        background-color: rgba(0, 0, 0, 0);
        color: #333333;
        padding: 0 5px 0px 2px;
        text-decoration: none;
      }

.container-sp .date {
  top: 50%;
  left: 30%;
  }
.container-sp a {
  text-decoration: none;
  color: #333333;
}
.button-sp {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #333333;
  border-radius: 2px;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  font-size: 1rem;

  &:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%)scaleY(1)scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55,0,0.1,1);
    z-index: -1;
  }

  &:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%)scaleY(1)scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #ef4b53;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55,0,0.1,1);
    z-index: -1;
  }

  &:hover {
    color: #ffffff;
    border: 1px solid #ef4b53;

    &:before {
      top: -35%;
      background-color: #ef4b53;
      transform: translateX(-50%)scaleY(1.3)scaleX(0.8);
    }

    &:after {
      top: -45%;
      background-color: #ef4b53;
      transform: translateX(-50%)scaleY(1.3)scaleX(0.8);
    }
  }
}
/*スライダー画像上にテキスト配置PC*/
.cont{
position: relative;
  width:100%;
  }
img{
  width: 100%;
  }
.cont p{
  position: absolute;
  padding: 10px;
  margin:0;
  width: 100%;
  }
.cont .tag{
  top: 0;
  left: 0;
  width: 100%;
  margin: 0; /*余計な隙間を除く*/
  padding: 5px 10px 5px 10px;/*文字周りの余白*/
  text-align: left;
  background: rgba(0, 0, 0, 0.3);
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}
.cont .date {
  top: 50%;
  left: 50%;
  }
a {
  text-decoration: none;
  color: #333333;
}
.button {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #333333;

  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  font-size: 2rem;

  &:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%)scaleY(1)scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55,0,0.1,1);
    z-index: -1;
  }

  &:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%)scaleY(1)scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #ef4b53;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55,0,0.1,1);
    z-index: -1;
  }

  &:hover {
    color: #ffffff;
    border: 1px solid #ef4b53;

    &:before {
      top: -35%;
      background-color: #ef4b53;
      transform: translateX(-50%)scaleY(1.3)scaleX(0.8);
    }

    &:after {
      top: -45%;
      background-color: #ef4b53;
      transform: translateX(-50%)scaleY(1.3)scaleX(0.8);
    }
  }
}
