html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  line-height: 3.2rem;
  letter-spacing: 0.05rem;
  font-size: 1.6rem;
  /* Googleフォント */
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  min-width: 1000px;
  overflow-x: scroll;
  overflow-y: scroll;
  animation: fadeIn 1.5s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

main {
  overflow-x: hidden;
}

a {
  transition: .5s;
}

a:hover {
  opacity: 0.6;
}

.bold {
  font-weight: 700;
}

.pc_display_none {
  display: none;
}

.pc_display_block {
  display: block;
}

.sp_header_right_gr, 
.sp_header_nav {
  display: none;
}

/* ボタン */
.btn {
  margin: 0 auto;
  max-width: 270px;
  min-width: 270px;
  height: 60px;
  line-height: 2.2rem;
  padding: 1em;
  display: block;
  color: #fff;
  background: #000;
  font-weight: 500;
  border-radius: 100vh;
  text-align:center;
  transition: 0.3s ease-in-out;
  position: relative;
  border: 2px solid #000;
}

.btn:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../images/arrow2.svg") no-repeat center;
  background-size: contain;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}

.btn:hover {
  opacity: 1;
  color: #000;
  background: #fff;
  opacity: 1;
}

.btn:hover:after {
  right: 1.5rem;
  opacity: 1;
}

/* 横幅 */
.inner {
  width: 100%;
  max-width: 1104px;
  margin: 0 auto;
  padding: 0 40px;
}

/* アニメーション */
@keyframes yurayura {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-30px, -5px);
  }
}

.yurayura { 
  animation: yurayura 5s ease-in-out infinite;
}

/* 下からぴょん */
.bottom-in-img {
  transition: .3s;
  opacity: 0;
}

.bottom-in {
  animation: fadeIn-pyon .5s forwards;
  opacity: 1;
}

@keyframes fadeIn-pyon {
  0% {
    transform: translateY(60%);
    opacity: 0;
  }
  60% {
    transform: translateY(-20%);
  }
  100% {
    transform: translateY(0);
  }
  40%,100% {
    opacity: 1;
  }
}

/* ズームイン */
.zoom-in { 
  animation: zoom-in .6s ease-in-out forwards;
  opacity: 0;
}
  @keyframes zoom-in {
  0% {
    transform: scale(0%);
    opacity: 0;
  }
  60% {
    transform: scale(130%);
  }
  100% {
    transform: scale(100%);
  }
  40%,100% {
    opacity: 1;
  }
  }

/* スクロール時のフェードイン */
.fade-in-section {
  opacity: 0;
  transform: translate(0, 5%);
  transition: 2s;
}

.fade-in {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 下からフェードイン */
.fade-in-bottom {
  animation: fadeIn-bottom 1s ease-in-out forwards;
  opacity: 0;
  animation-delay: 1.5s;
}
@keyframes fadeIn-bottom {
  0% {
    opacity: 0;
  }
  100% {
    transform: translateY(-5%);
    opacity: 1;
  }
}

/* ヘッダー */
.header {
  width: 100%;
  min-width: 1000px;
  height: 100px;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  z-index: 999;
  padding: 20px;
  font-weight: 500;
  align-items: center;
}

.header_logo img, 
.company_logo {
  width: 150px;
}

.header_nav {
  display: flex;
  gap: 30px;
}

.header_menu {
  display: flex;
  gap: 20px;
}

.header_right_gr {
  display: flex;
  gap: 20px;
  align-items: center;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1200;
}

.header_link {
  display: inline-block;
  position: relative;
  line-height: 4rem;
  opacity: 1 !important;
}

.header_link::after {
  background-color: #000;
  bottom: -4px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
  width: 100%;
}

.header_link:hover::after {
  transform: scale(1, 1);
  opacity: 1;
}


/* ===============================================
TOPページ
=============================================== */

/* ~~~~~~~~~~~~~~ ファーストビュー ~~~~~~~~~~~~~~ */
.fv {
  width: 100%;
  background-color: #E9F3F7;
  position: relative;
  min-height: 300px;
  padding-top: 100px;
}

.cv_gr {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  right: -3px;
  top: 200px;
  text-align: center;
  z-index: 1000;
}

.cv {
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: inline-block;
  border: 2.5px solid #000;
  box-shadow: 3px 3px #000;
  border-radius: 20px 0 0 20px;
  padding: 25px 10px;
  font-weight: 700;
  width: 70px;
  line-height: 4rem;
}

.cv:hover {
  transform: translateX(5px);
  opacity: 1;
}

.cv_btn_tel {
  background-color: #F9F7D7;
}

.cv_btn_line {
  background-color: #D4E9E1;
}

.cv_bubble {
  position: absolute;
  top: -60px;
  right: 0px;
  z-index: 999;
}

.sp_tel_icon, .sp_line_icon, .cv_bubble_sp {
  display: none;
}

.h1_fv {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60%;
  position: relative;
  margin-top: 60px;
  margin-bottom: -150px;
}

.fv_h1_img {
  max-width: 424px;
  margin: 0 auto;
  position: relative;
  z-index: 54;
}

.fv_img_gr {
  position: relative;
  width: 100%;
  z-index: 51;
  background-color: #E9F3F7;
}

.character {
  position: absolute;
  bottom: 30%;
  left: 20%;
  max-width: 143px;
  width: 10vw;
}

.fv_img {
  width: 100%;
}

.fv_img_sp {
  display: none;
}

.cloud {
  position: absolute;
  top: 60px;
  left: -40px;
  z-index: 52;
  animation-delay: .5s;
  opacity: 0;
}

.cloud2 {
  position: absolute;
  bottom: 15%;
  left: 30%;
  z-index: 52;
  animation-delay: 1s;
}

.cloud3 {
  position: absolute;
  bottom: 0%;
  left: 45%;
  z-index: 52;
  animation-delay: .5s;
}

.cloud4 {
  position: absolute;
  top: 180px;
  right: 30%;
  z-index: 52;
  animation-delay: 1s;
}

.cloud5 {
  position: absolute;
  top: 280px;
  right: 20%;
  z-index: 52;
  animation-delay: 1.5s;
}

.cloud6 {
  position: absolute;
  top: 60px;
  right: -10px;
  z-index: 52;
  animation-delay: .5s;
}

.cloud7 {
  position: absolute;
  bottom: 20%;
  right: 80px;
  z-index: 52;
  animation-delay: 1.5s;
}

.cloud8 {
  position: absolute;
  bottom: -5%;
  right: 50px;
  z-index: 52;
  animation-delay: .5s;
}

@media screen and (max-width: 1280px) {
  .fv_h1_img {
    width: 25vw;
    margin: 0 auto;
  }

  .h1_fv {
    margin-top: 20px;
    margin-bottom: -200px;
  }

  .cloud {
    width: 26vw;
    top: 7px;
  }
  
  .cloud2 {
    width: 19vw;
    bottom: auto;
    top: 30%;
  }
  
  .cloud3 {
    width: 15vw;
    bottom: 20%;
    right: 30%;
    left: auto;
  }
  
  .cloud4 {
    display: none;
  }
  
  .cloud5 {
    display: none;
  }
  
  .cloud6 {
    width: 10vw;
  }
  
  .cloud7 {
    width: 10vw;
    top: 35%;
    bottom: auto;
    right: 150px;
  }
  
  .cloud8 {
    width: 8vw;
    bottom: 20%;
  }
}

/* トラックアニメーション */
.track_wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: -8vw;
}

.track {
  width: 10vw;
  height: 5.9vw;
  background-image: url('../images/track_step.svg');
  background-size: 10vw 23.6vw;
  animation: drive_step 1s steps(4, end) infinite,driving 14s linear infinite;
  animation-delay: 2.5s;
  transform: translate(-10vw, 0px);
}

@keyframes drive_step {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -23.6vw;
  }
}

@keyframes driving {
  0% {
    transform: translate(-10vw, 0px);
  }
  30% {
    transform: translate(30vw, -20%);
  }
  50% {
    transform: translate(50vw, -60%);
  }
  60% {
    transform: translate(60vw, -90%);
  }
  80% {
    transform: translate(80vw, -150%);
  }
  100% {
    transform:  translate(100vw, -150%);
  }
}

@media screen and (max-width: 1000px) {
/* トラックアニメーション */
.track_wrapper {
  margin-top: -80px;
}

.track {
  width: 100px;
  height: 60px;
  background-size: 100px 240px;
  animation-delay: 2.5s;
  transform: translate(-100px, 0px);
}

@keyframes drive_step {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -240px;
  }
}

@keyframes driving {
  0% {
    transform: translate(-100px, 0px);
  }
  30% {
    transform: translate(300px, -20px);
  }
  50% {
    transform: translate(500px, -40px);
  }
  60% {
    transform: translate(600px, -60px);
  }
  80% {
    transform: translate(800px, -90px);
  }
  100% {
    transform:  translate(1000px, -90px);
  }
}
}

/* ~~~~~~~~~~~~~~ メッセージ ~~~~~~~~~~~~~~ */
#message {
  padding: 200px 0 18vw 0;
  background-color: #F8F7E2;
  text-align: center;
}

.message_top {
  text-align: center;
  position: relative;
  display: inline-block;
}

.message_head_gr {
  display: block;
  position: relative;
  z-index: 10;
}

.message_head_sp {
  display: none;
}

.message_head {
  display: block;
  margin: 0 auto;
}

.message_tx {
  margin-top: 80px;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  display: inline-block;
  line-height: 3.5rem;
}

.message_tx span {
  font-weight: 700;
}

.message_img1 {
  position: absolute;
  right: -280px;
  top: 100px;
  max-width: 330px;
}

.message_img2 {
  position: absolute;
  left: -280px;
  bottom: -50px;
  max-width: 291px;
}

.message_bottom {
  display: flex;
  gap: 30px;
  margin-top: 100px;
}

.message_left {
  width: 60%;
  background-image: url(../images/message_bubble.svg);
  background-size: 100%;
  background-position: 50%;
  aspect-ratio: 643 / 213;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.message_bottom_tx {
  text-align: left;
  padding: 30px 80px;
}

.message_bottom_tx span {
  font-weight: bold;
}

.message_bubble {
  width: 100%;
}

.message_right {
  width: 40%;
  position: relative;
  display: flex;
  justify-content: start;
}

.message_img3 {
  width: 290px;
  position: relative;
  z-index: 6;
}

.bk_shape1 {
  position: absolute;
  right: -150px;
  top: -150px;
}

.bk_shape2 {
  position: absolute;
  left: -50px;
  top: -50px;
  z-index: 1;
}

.bk_shape3 {
  position: absolute;
  right: -20px;
  top: -80px;
  z-index: 1;
}

.bk_shape4 {
  position: absolute;
  right: 20%;
  bottom: -80px;
  z-index: 1;
}

/* 回るテキスト */
.circle_tx {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 160px;
  height: 160px;
  margin: auto;
  z-index: 2;

  font-family: "Comic Neue", cursive;
  font-weight: 400;
}

.circleText {
  overflow: visible;
  animation: rotation 18s linear infinite;
}

.circleText__circle {
  fill: none;
}

.circleText__text {
  fill: #EFE299;
  font-size: 1.3rem;
  font-weight: 700;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

/* セパレーター */
.bk_wave {
  width: 100%;
}

/* トラックアニメーション2 */
.track_wrapper2 {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: -8vw;
}

.track2 {
  width: 10vw;
  height: 5.9vw;
  background-image: url('../images/track_step2.svg');
  background-size: 10vw 23.6vw;
  transform: translate(10vw, -19vw) rotate(0deg);
}

.track2_anime {
  animation: drive_step 1s steps(4, end) infinite,driving2 13s linear forwards;
}

@keyframes driving2 {
  0% {
    transform: translate(10vw, -19vw) rotate(0deg);
  }
  10% {
    transform: translate(0vw, -19vw) rotate(0deg);
  }
  20% {
    transform: translate(-10vw, -18.5vw) rotate(-5deg);
  }
  30% {
    transform: translate(-20vw, -16.5vw) rotate(-14deg);
  }
  40% {
    transform: translate(-30vw, -13.5vw) rotate(-20deg);
  }
  50% {
    transform: translate(-40vw, -9vw) rotate(-20deg);
  }
  60% {
    transform: translate(-50vw, -6vw) rotate(-20deg);
  }
  70% {
    transform: translate(-60vw, -3.5vw) rotate(-10deg);
  }
  80% {
    transform: translate(-70vw, -2vw) rotate(-7deg);
  }
  100% {
    transform: translate(-70vw, -2vw) rotate(-7deg);
  }
}

.message_track_gr {
  position: relative;
}

.message_illust {
  position: absolute;
  width: 23vw;
  left: 12vw;
  top: -30vw;
  transform: translate(0, 0) scale(1);
}

.message_illust_anime {
  animation: in 1.5s ease-in 9s forwards;
}

@keyframes in {
  0% {
    transform: translate(0, 0) scale(1);
  }
  30% {
    transform: translate(0, -10vw) scale(1.2, 1.2);
  }
  100% {
    transform: translate(0vw, 22vw) scale(0, 0);
  }
}

.message_illust2 {
  position: absolute;
  left: 15vw;
  top: -26vw;
  width: 23vw;
}

@media screen and (max-width: 1000px) {
#message {
  padding: 200px 0 180px 0;
  background-color: #F8F7E2;
  text-align: center;
}

/* トラックアニメーション2 */
.track_wrapper2 {
  margin-top: -85px;
}

.track2 {
  width: 100px;
  height: 60px;
  background-size: 100px 240px;
  transform: translate(100px, -190px) rotate(0deg);
}

@keyframes driving2 {
  0% {
    transform: translate(100px, -190px) rotate(0deg);
  }
  10% {
    transform: translate(0px, -190px) rotate(0deg);
  }
  20% {
    transform: translate(-100px, -185px) rotate(-5deg);
  }
  30% {
    transform: translate(-200px, -165px) rotate(-14deg);
  }
  40% {
    transform: translate(-300px, -135px) rotate(-20deg);
  }
  50% {
    transform: translate(-400px, -90px) rotate(-20deg);
  }
  60% {
    transform: translate(-500px, -60px) rotate(-20deg);
  }
  70% {
    transform: translate(-600px, -35px) rotate(-10deg);
  }
  80% {
    transform: translate(-700px, -20px) rotate(-7deg);
  }
  100% {
    transform: translate(-700px, -20px) rotate(-7deg);
  }
}

.message_illust {
  position: absolute;
  width: 230px;
  left: 120px;
  top: -300px;
}

@keyframes in {
  0% {
    transform: translate(0, 0) scale(1);
  }
  10% {
    transform: translate(0, 0) scale(0.7, 0.7);
  }
  30% {
    transform: translate(0, -100px) scale(1.2, 1.2);
  }
  100% {
    transform: translate(0vw, 220px) scale(0, 0);
  }
}

.message_illust2 {
  position: absolute;
  left: 150px;
  top: -260px;
  width: 230px;
}
}

/* ~~~~~~~~~~~~~~ FLOW ~~~~~~~~~~~~~~ */
#flow {
  padding: 0px 0 100px 0;
  background-color: #F8F8F8;
}

.flow_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px 20%;
  position: relative;
}

.flow_head_gr {
  display: flex;
  justify-content: flex-end;
}

.flow_gr {
  position: relative;
}

.flow_img {
  width: 100%;
  margin-top: -20px;
  position: relative;
  z-index: 10;
  text-align: right;
  margin-bottom: 20px;
}

.flow_h3 {
  font-size: 2rem;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 10px;
  background-color: #fff;
  border: #000 1.5px solid;
  display: inline-block;
  letter-spacing: 0.3rem;
  text-align: center;
  margin-left: -30px;
  position: relative;
  z-index: 11;
}

.flow_h4 {
  display: block;
  width: 90%;
  margin: 0 auto;
}

.flow_h4 span {
  background-color: #fff;
  border-radius: 10px;
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 700;
  padding: 2px 10px;
  letter-spacing: 0.1rem;
  margin-bottom: 0.2rem;
}

.flow_tx {
  margin: 10px auto 0 auto;
  display: block;
  width: 90%;
}

.flow_illust1 {
  position: absolute;
  left: -50px;
  top: 150px;
  z-index: 12;
}

.flow_illust2 {
  position: absolute;
  right: -50px;
  top: 160px;
  z-index: 12;
}

.flow_illust3 {
  position: absolute;
  left: -50px;
  top: 150px;
  z-index: 12;
}

.flow_illust4 {
  position: absolute;
  right: -50px;
  top: -80px;
  z-index: 12;
}

.flow_gr2, .flow_gr4 {
  margin-top: 200px;
}

.flow_gr1::after {
  content: "";
  display: block;
  aspect-ratio: 322 / 110;
  width: 400px;
  background: url(../images/flow_line1.svg) no-repeat;
  position: absolute;
  left: 80%;
  top: 250px;
}

.flow_gr2::after {
  content: "";
  display: block;
  aspect-ratio: 320 / 160;
  width: 400px;
  background: url(../images/flow_line2.svg) no-repeat;
  background-position: 50%;
  position: absolute;
  left: -93%;
  bottom: -150px;
}

.flow_gr3::after {
  content: "";
  display: block;
  aspect-ratio: 322 / 110;
  width: 400px;
  background: url(../images/flow_line1.svg) no-repeat;
  position: absolute;
  left: 80%;
  top: 250px;
}

.bk_shape6 {
  position: absolute;
  width: 180px;
  bottom: -40px;
  left: -40px;
}

/* トラックアニメーション3 */
.track_wrapper3 {
  position: absolute;
  top: 24%;
  left: 52%;
}

.track3 {
  
  width: 128px;
  height: 76px;
  background-image: url('../images/track_step.svg');
  background-size: 128px 304px;
  transform: rotate(16.5deg);
}

.track3_anime {
  animation: drive_step2 1s steps(4, end) infinite,driving3 5s linear forwards;
}

@keyframes drive_step2 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -304px;
  }
}

@keyframes driving3 {
  0% {
    transform: translate(0% 0%) rotate(16.5deg);
  }
  100% {
    transform:  translate(450%, 240%) rotate(16.5deg);
  }
}

/* トラックアニメーション4 */
.track_wrapper4 {
  position: absolute;
  bottom: -0.5%;
  right: 100%;
}

.track4 {
  width: 128px;
  height: 76px;
  background-image: url('../images/track_step.svg');
  background-size: 128px 304px;
  opacity: 0;
  transform: rotate(-26.54deg) scale(-1, 1);
}

.track4_anime {
  animation: drive_step2 1s steps(4, end) infinite,driving4 5s linear forwards;
  animation-delay: 1s;
}

@keyframes driving4 {
  0% {
    opacity: 0;
    transform: translate(0% 0%) rotate(-26.54deg) scale(-1, 1);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform:  translate(-300%, 240%) rotate(-26.54deg) scale(-1, 1);
  }
}

/* トラックアニメーション5 */
.track_wrapper5 {
  position: absolute;
  top: 27%;
  left: 52%;
}

.track5 {
  width: 128px;
  height: 76px;
  background-image: url('../images/track_step.svg');
  background-size: 128px 304px;
  transform: rotate(16.5deg);
}

.track5_anime {
  animation: drive_step2 1s steps(4, end) infinite,driving5 5s linear forwards;
  animation-delay: 2s;
}

@keyframes driving5 {
  0% {
    transform: translate(0% 0%) rotate(16.5deg);
  }
  100% {
    transform:  translate(450%, 240%) rotate(16.5deg);
  }
}


@media screen and (max-width: 1060px) {
  .track_wrapper3 {
    top: 25%;
    left: 50%;
  }
  .track_wrapper4 {
    bottom: -3%;
  }
  .track_wrapper5 {
    top: 28%;
    left: 50%;
  }
}

/* ~~~~~~~~~~~~~~ お悩み ~~~~~~~~~~~~~~ */
#worries {
  padding: 100px 0 150px 0;
  background-color: #E9F3F7;
  text-align: center;
}

.worries_head {
  width: 100%;
  max-width: 513px;
}

.worries_container {
  padding: 80px 0;
  position: relative;
}

.worries_gr {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

.worries_gr1 {
  width: 28%;
  aspect-ratio: 294 / 234;
  padding: 0% 30px 5% 30px;
  margin-left: 100px;
}

.worries_gr2 {
  width: 28%;
  aspect-ratio: 339 / 245;
  padding: 0% 30px 4% 30px;
}

.worries_gr3 {
  width: 28%;
  aspect-ratio: 349 / 296;
  padding: 0% 30px 6% 30px;
  margin-right: -30px;
  margin-top: 40px;
}

.worries_gr4 {
  width: 28%;
  aspect-ratio: 320 / 283;
  padding: 0% 30px 15% 30px;
  margin-top: -40px;
  margin-right: 20px;
}

.worries_gr5 {
  width: 28%;
  aspect-ratio: 293 / 241;
  padding: 0% 30px 10% 30px;
  margin-right: 30px;
}

.worries_gr::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 7;
}

.worries_gr1::after {
  background-image: url(../images/worries_bubble.svg);
}

.worries_gr2::after {
  background-image: url(../images/worries_bubble2.svg);
}

.worries_gr3::after {
  background-image: url(../images/worries_bubble4.svg);
}

.worries_gr4::after {
  background-image: url(../images/worries_bubble3.svg);
}

.worries_gr5::after {
  background-image: url(../images/worries_bubble5.svg);
}

.worries_tx {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 4rem;
  position: relative;
  z-index: 8;
  display: inline-block;
  text-align: left;
}

.worries_gr img {
  position: absolute;
  z-index: 8;
}

.audio {
  top: -20px;
  right: -40px;
}

.clock {
  bottom: 20px;
  right: -8px;
}

.ring {
  top: -20px;
  left: -8px;
}

.sax {
  bottom: 20px;
  left: -8px;
}

.worries_gr_top {
  display: flex;
  justify-content: center;
  gap: 20%;
}

.worries_gr_bottom {
  display: flex;
  justify-content: center;
}

.worries_tx_img {
  width: 100%;
  max-width: 420px;
}

/* ~~~~~~~~~~~~~~ Voice ~~~~~~~~~~~~~~ */
#voice {
  padding: 0 0 150px 0;
}

.voice_head_gr {
  display: flex;
  justify-content: flex-end;
  margin-top: -120px;
}

.voice_container {
  display: flex;
  gap: 40px;
  margin-top: 80px;
}

.voice_gr {
  position: relative;
  border-radius: 20px;
  border: 2px dashed #000;
  background-color: #fff;
  width: 50%;
  padding: 30px;
}

.voice_gr2 {
  margin-top: 80px;
  margin-bottom: -80px;
}

.voice_h3 {
  font-weight: 700;
  font-size: 2.2rem;
  text-align: center;
  position: relative;
  z-index: 7;
}

.voice_h3::after {
  content: "";
  display: inline-block;
  background-image: url(../images/head_line.svg);
  background-repeat: no-repeat;
  width: 42%;
  height: 37%;
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
}

.voice_tx {
  margin-top: 2rem;
}

.audio2 {
  position: absolute;
  z-index: 8;
  top: -50px;
  left: -27px;
}



/* ~~~~~~~~~~~~~~ point ~~~~~~~~~~~~~~ */
.point_container {
  display: flex;
  position: relative;
  margin-top: 400px;
  justify-content: space-between;
}

.point_img1 {
  position: absolute;
  width: 450px;
  top: -300px;
  left: -120px;
  z-index: 6;
}

.point_bubble {
  position: absolute;
  top: -333px;
  left: 311px;
  z-index: 7;
}

.bk_shape7 {
  position: absolute;
  top: -200px;
  right: -70px;
  z-index: 1;
}

.point_gr {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30%;
  height: 30%;
  aspect-ratio: 1 / 1;
  text-align: center;
  position: relative;
  z-index: 10;
  background-color: #F5F5F5;
  border-radius: 100vh;
  border: 2px dashed #909090;
  padding: 30px;
  white-space: nowrap;
}

.point_gr1 {
  margin-right: -20px;
}


.point_gr2 {
  margin: 60px -20px -60px -15px;
}

.point_gr3 {
  margin: -80px -20px 80px -15px;
}

.point_gr3 {
  margin: -40px -20px 40px -15px;
}

.point_num {
  position: absolute;
  top: 12px;
  left: 5px;
}

.point_tx {
  font-size: 1.8rem;
  margin-top: 5px;
  font-weight: bold;
}

.cta_container_outer {
  position: relative;
}

.cta_container {
  background-color: #F6EFC5;
  border-radius: 20px;
  padding: 50px 30px;
  margin: 160px auto 0 auto;
  position: relative;
  background-image: url(../images/cv_bk_img.svg);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  max-width: 840px;
  width: 100%;
}

.cta_tx1 {
  position: absolute;
  padding: 1rem 1.5rem 1rem 2rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  top: -20px;
  left: 60px;
  transform: rotate(-10deg);
}

.cta_tx1::before,
.cta_tx1::after {
  position: absolute;
  top: 1.8rem;
  height: 2rem;
  content: '';
}

.cta_tx1::before {
  border-left: solid 2px;
  left: 0;
  transform: rotate(-30deg);
}

.cta_tx1::after {
  border-right: solid 2px;
  right: 0;
  transform: rotate(30deg);
}

.cta_tx2 {
  font-size: 2rem;
  font-weight: bold;
}

.cta_btn {
  display: block;
  width: 100%;
  max-width: 400px;
  background-color: #fff;
  border: #000 2px solid;
  border-radius: 100vh;
  padding: 20px;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto;
}

.cta_btn:hover {
  background-color: #D4E9E1;
  transform: scale(0.98, 0.98);
  opacity: 1;
}

.cta_btn:first-of-type {
  margin: 20px auto 10px auto;
}

.cta_btn span {
  padding-left: 0.5rem;
}

.cta_gr {
  width: 50%;
  text-align: center;
}

/* 回るテキスト */
.circle_tx.circle_tx2 {
  position: absolute;
  top: -80px;
  right: auto;
  left: -80px;
  width: 250px;
  height: 250px;
  margin: auto;
  z-index: -1;
}

.circleText2 {
  overflow: visible;
  animation: rotation 18s linear infinite;
}

.circleText__text2 {
  fill: #EAEAEA;
  font-size: 1.3rem;
  font-weight: 700;
}

/* ~~~~~~~~~~~~~~ item list ~~~~~~~~~~~~~~ */
#item_list {
  background-color: #ECF5F1;
  margin-top: -10px;
  position: relative;
  padding: 0;
}

.item_list_head_gr {
  margin-top: -180px;
}

.item_list_img {
  width: 207px;
  position: absolute;
  right: 50px;
  top: -40px;
}

.item_list_container {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 30px 20px;
  position: relative;
  z-index: 6;
}

.item_gr {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.item_img {
  width: 100%;
  position: relative;
  z-index: 6;
  margin-bottom: -2rem;
}

.item_name {
  text-align: center;
  font-weight: bold;
  background-color: #FCEB8A;
  border-radius: 100vh;
  position: relative;
  z-index: 7;
  display: inline-block;
  padding: 0 20px;
  white-space: nowrap;
}

.item_list_attention {
  margin-top: 50px;
  font-size: 1.4rem;
  position: relative;
  z-index: 6;
}

.bk_wave_bottom {
  position: relative;
  z-index: 1;
  margin-top: -60px;
  margin-bottom: -10px;
}

/* ~~~~~~~~~~~~~~ FAQ ~~~~~~~~~~~~~~ */
#faq {
  margin-top: -80px;
  padding-bottom: 150px;
  position: relative;
  z-index: 7;
}

.faq_head_gr {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 80px;
}

.question_body {
  position: relative;
  background-color: #F5F5F5;
  border-radius: 20px;
  padding: 25px 70px;
  margin-top: 20px;
}

.q, .a {
  font-size: 2.8rem;
  font-weight: 700;
  position: absolute;
  top: -0.2rem;
  left: -4rem;
}

.question_title {
  font-weight: bold;
  font-size: 1.8rem;
  cursor: pointer;
}

.question_answer, .question_title {
  position: relative;
}

.question_title::before {
  display: block;
  content: "";
  position: absolute;
  top: 1.6rem;
  right: -3rem;
  width: 20px;
  height: 2px;
  background-color: #000;
  transition: .2s;
  transform: rotate(90deg);
}

.question_title::after {
  display: block;
  content: "";
  position: absolute;
  top: 1.6rem;
  right: -3rem;
  width: 20px;
  height: 2px;
  background-color: #000;
  transition: .2s;
  transform: rotate(0deg);
}

.question_title.on::before {
	transform: rotate(135deg);
}

.question_title.on::after {
	transform: rotate(45deg);
}

.question_answer {
  margin-top: 20px;
  display: none;
}

/* ~~~~~~~~~~~~~~ Blog ~~~~~~~~~~~~~~ */
#blog {
  position: relative;
  background-color: #F8F7E2;
  margin-top: -10px;
}

.blog_caption {
  font-size: 1.4rem;
}

.blog_head_gr {
  display: flex;
  margin-bottom: 80px;
  align-items: flex-end;
  gap: 30px;
}

.blog_head {
  margin-top: -300px;
}

.blog_camera {
  position: absolute;
  top: -150px;
  right: 150px;
}

.blog_container {
  position: relative;
  z-index: 10;
}

.blog_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 40px;
  margin-bottom: 80px;
}

.sp_blog_list {
  display: none;
}

.thumbnail {
  width: 100%;
  aspect-ratio: 300 / 220;
  overflow: hidden;
  border-radius: 20px;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.blog_list a {
  opacity: 1;
}

.blog_list a:hover {
  .thumbnail img {
    transform: scale(1.05, 1.05);
    opacity: 1;
  }
}

.line {
  width: 100%;
}

.date_cat_gr {
  margin-top: 15px;
  margin-bottom: -15px;
  padding-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.date {
  margin-right: 10px;
  font-size: 1.4rem;
}

.category {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  font-size: 1.3rem;
  padding: 0px 10px;
  border-radius: 30px;
  line-height: 2.4rem;
  display: inline-block;
}

.blog_h3 {
  margin-top: 30px;
  font-weight: 600;
  line-height: 2.5rem;
}

/* ~~~~~~~~~~~~~~ Insta ~~~~~~~~~~~~~~ */
#insta {
  position: relative;
  margin-top: -60px;
  padding: 0 0 100px 0;
  z-index: 8;
}

.insta_head_gr {
  display: flex;
  justify-content: flex-end;
}

.insta_illust {
  position: absolute;
  top: 0px;
  left: 100px;
}

/* インスタループ */
.insta_wrap {
  margin-top: 80px;
  margin-bottom: 80px;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
    to {
    transform: translateX(-100%);
  }
  }
  #sb_instagram {
    display: flex !important;
    overflow: hidden;
    width: 500vw !important;
  }
  .sbi_images {
    display: flex !important;
    padding: 0 !important;
    animation: infinity-scroll-left 40s infinite linear 0.5s both;
  }

  .sbi_item {
    width: calc(100vw / 5);
    margin-right: 20px !important;
  }


/* ~~~~~~~~~~~~~~ フッター ~~~~~~~~~~~~~~ */
#footer {
  position: relative;
  min-width: 1000px;
}

.footer {
  color: #fff;
  background-color: #000;
  padding: 100px 0 30px 0;
  margin-top: -5px;
  position: relative;
  z-index: 2;
}

.footer_container {
  display: flex;
  gap: 35px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer_left {
  text-align: center;
  line-height: 2.5rem;
}

.footer_logo {
  width: 120px;
}

.footer_tx {
  text-align: left;
  font-size: 1.4rem;
  margin-top: 20px;
}

.footer_right {
  width: 61%;
}

.footer_cv_gr {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.footer_insta {
  margin-right: 10px;
}

.footer_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 270px;
  max-width: 270px;
  height: 60px;
  background-color: #fff;
  color: #000;
  border-radius: 100vh;
  padding: 0 20px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1rem;
}

.footer_btn_line:hover {
  background-color: #D4E9E1;
  opacity: 1;
}

.footer_btn_tel:hover {
  background-color: #F9F7D7;
  opacity: 1;
}

.footer_btn span {
  padding-left: 1rem;
}

.footer_btn img {
  width: 26px;
}

.copy_right, .recaptcha {
  font-size: 1.1rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-align: center;
}

.footer_menu {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 40px;
  font-size: 1.4rem;
}

.footer_link {
  display: inline-block;
  position: relative;
  line-height: 4rem;
  opacity: 1 !important;
}

.footer_link::after {
  background-color: #fff;
  bottom: -4px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
  width: 100%;
}

.footer_link:hover::after {
  transform: scale(1, 1);
  opacity: 1;
}

.footer_bk {
  width: 100%;
  margin-bottom: -75px;
}

.page_top {
  position: absolute;
  top: -60px;
  right: 20px;
  z-index: 10;
}

.page_top:hover {
  transform: translateY(-5px);
  opacity: 1;
}

.page_top_img {
  transform: rotate(-90deg);
  width: 60px;
  height: 60px;
}

/* トラックループ */
.footer_track {
  width: 744px;
  height: 76px;
  background-image: url('../images/footer_track_step.svg');
  background-size: 744px 304px;
  animation: drive_step2 1s steps(4, end) infinite;
  flex-shrink: 0;
}

.slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
}

.slider-track {
  display: flex;
  animation: scrollLoop 30s linear infinite;
  will-change: transform;
}

@keyframes scrollLoop {
  0% {
    transform: translateX(-2232px); /* 744px × 3枚分 */
  }
  100% {
    transform: translateX(0);
  }
}

  
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
下層ページ：レールについて
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.child_header {
  padding-top: 120px;
  position: relative;
}

.child_about_illust {
  position: absolute;
  top: 150px;
  right: 50px;
  animation: fadeIn-pyon .5s forwards;
}

.breadcrumb {
  display: flex;
  font-size: 1.2rem;
  color: #828282;
  flex-wrap: wrap;
  line-height: 2rem;
  margin: 5rem 0;
}

.breadcrumb li::after {
  content: "/";
  margin: 0 1rem;
}

.breadcrumb li:last-child::after {
  content: "";
  margin: 0;
}

.mark {
  font-weight: 700;
  color: #000;
}

/* ~~~~~~~~~~~~~~ レールについて ~~~~~~~~~~~~~~ */
#about {
  background-color: #F8F7E2;
  padding-bottom: 80px;
  margin-top: 80px;
}

.about_container {
  margin-top: -200px;
}

.about_gr1 {
  display: flex;
  gap: 60px;
}

.about_gr_left {
  width: 50%;
}

.about_gr1 .about_gr_right {
  width: 50%;
  margin-right: -50px;
  margin-top: -100px;
}

.about_img1 {
  width: 100%;
}

.about_h2 {
  display: block;
  width: 400px;
  margin-bottom: 30px;
}

.about_tx {
  text-align: justify;
}

.about_gr2 {
  display: flex;
  gap: 80px;
  margin-top: 80px;
}

.about_img2 {
  width: 100%;
  margin: 0 auto;
  display: block;
}

.about_gr2 .about_gr_left {
  width: 30%;
}

.about_gr2 .about_gr_right {
  width: 70%;
}

.about_gr3 {
  display: flex;
  gap: 80px;
  margin-top: 150px;
  flex-direction: row-reverse;
}

.about_img3 {
  width: 100%;
}

.about_gr3 .about_gr_left {
  width: 50%;
}

.about_gr3 .about_gr_right {
  width: 50%;
  margin-left: -60px;
}

.about_h2_2 {
  display: block;
  width: 210px;
  margin-bottom: 30px;
}

.about_gr4 {
  display: flex;
  gap: 80px;
  margin-top: 100px;
  flex-direction: row-reverse;
}

.about_img4 {
  width: 100%;
}

.about_gr4 .about_gr_left {
  width: 25%;
  margin-top: -150px;
}

.about_gr4 .about_gr_right {
  width: 75%;
}

/* ~~~~~~~~~~~~~~ 会社概要 ~~~~~~~~~~~~~~ */
#company {
  padding: 60px 0 100px 0;
}

.company_head_gr {
  text-align: center;
  margin-bottom: 60px;
}

.company_container {
  display: flex;
  gap: 6vw;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.company_contents_wrap {
  width: 100%;
}

.company_contents {
  display: grid;
  grid-template-columns: 4fr 3fr;
  gap: 60px;
  margin-bottom: 60px;
  width: 100%;
}

.company_map_gr {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.company_gr {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 3rem;
}

.company_gr p {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 5rem;
}

.map {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.company_list {
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid #CCCCCC;
}

.company_list_title {
  width: 30%;
  font-weight: 500;
}

.company_list_description {
  width: 70%;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
下層ページ：ブログ
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.child_header_blog {
  background-color: #ECF5F1;
  margin-bottom: -10px;
}

.child_header_blog .blog_caption {
  margin-top: 20px;
}

.child_about_illust2 {
  position: absolute;
  top: 170px;
  right: 150px;
  animation: fadeIn-pyon .5s forwards;
}

.child_blog_container {
  margin-top: 80px;
  margin-bottom: 180px;
}

.category_li_container {
  display: flex;
  gap: 30px;
  border-bottom: dotted 2px #000;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

.category_list_gr {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.category_list_gr li {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  font-size: 1.3rem;
  padding: 0px 10px;
  border-radius: 30px;
  line-height: 3rem;
  display: inline-block;
}

.category_title {
  font-size: 1.8rem;
}

/* ページネーション */
.nav-links > .page-numbers {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 2rem;
  margin-top: 80px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 3rem;
  font-size: 1.4rem;
}

.page-numbers .page-numbers {
  display: inline-block;
  text-align: center;
  background-color: #fff;
  color: #2A2625;
  border-radius: 100vh;
  width: 30px;
  height: 30px;
}

.page-numbers.current {
  display: inline-block;
  text-align: center;
  background-color: #2A2625;
  color: #fff;
  border-radius: 100vh;
  width: 30px;
  height: 30px;
}

.prev, .next, .dots {
  background: none !important;
  color: #2A2625;
}

.next {
  padding-left: 1rem;
  width: 5rem !important;
}

.prev {
  padding-right: 1rem;
  width: 5rem !important;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
下層ページ：ブログ 詳細
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.news_detail_wrap {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 60px;
}

.news_detail_head_gr {
  border-bottom: #000 2px dotted;
  margin-bottom: 60px;
}

.detail_date {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.news_detail_h1 {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 5.5rem;
  margin-bottom: 30px;
  text-align: justify;
}

.news_detail_main_img {
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.news_detail_main_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news_detail_contents {
  margin-bottom: 100px;
}

.news_detail_contents .wp-block-image {
  display: flex;
  justify-content: center;
}

.news_detail_contents .wp-block-image img {
  margin: 40px auto;
  border-radius: 20px;
}

h2.wp-block-heading {
  font-size: 2.4rem;
  border-bottom: 2px solid #F09D39;
  padding-bottom: 1rem;
  margin-bottom: 20px;
  margin-top: 30px;
  line-height: 3.5rem;
  font-weight: bold;
}

h3.wp-block-heading {
  font-size: 2rem;
  border-left: 5px solid #F09D39;
  padding-left: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 3rem;
  font-weight: bold;
}

.detail_date_cat_gr {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.detail_date_cat_gr .category {
  line-height: 3rem;
}

.news_detail_bottom_wrap {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 60px;
}

.news_detail_bottom_wrap .cta_container {
  margin-top: 0;
}

.news_detail_discription_container {
  background-color: #F8F8F8;
  padding: 40px;
  margin: 40px 0;
  border-radius: 20px;
  text-align: justify;
}

.news_detail_discription_li {
  margin-top: 2rem;
}

.news_detail_discription_title {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}

.news_detail_discription_li:first-child {
  margin-top: 0;
}

.news_detail_discription_title:before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  background-color: #96CBB7;
  border-radius: 50%;
  margin-right: 5px;
}

.area_container {
  margin-top: 40px;
}

.area_main_title {
  font-size: 1.8rem;
  font-weight: bold;
  align-items: center;
  display: flex;
}

.area_main_title::after {
  content: "";
  background-color: #000;
  height: 1px;
  flex-grow: 1;
  margin-left: 2rem;
}

.area_li {
  margin-top: 2rem;
}

.area_title {
  font-weight: bold;
}

.news_detail_discription_span {
  display: inline-block;
  margin-top: 1rem;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
下層ページ：お問い合わせ
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.child_header_contact {
  background-color: #F8F7E2;
  margin-bottom: -10px;
}

.child_contact_container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 60px;
}

.child_about_illust3 {
  width: 207px;
  position: absolute;
  top: 170px;
  right: 150px;
  animation: fadeIn-pyon .5s forwards;
}

/*ContactForm7カスタマイズ*/
.wp-block-contact-form-7-contact-form-selector {
  padding-bottom: 120px;
}

table.CF7_table{
  text-align: left;
	width:100%;
	margin: 60px auto 0px auto;
	border: none;
}

.CF7_table th{
	width:30%;/*横幅*/
	background-color: transparent;
  padding-right: 30px;
}

.CF7_table p {
  margin-bottom: 30px;
  text-align: left;
}

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

/*入力欄*/
.CF7_table input, .CF7_table textarea {
	border: none;
  background: #F9F9F9;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  padding: 5px 10px;
  width: 100%;
}

.CF7_table input[type="radio"], .CF7_table input[type="checkbox"] {
  background: transparent !important;
  appearance: auto;
  width: 15px;
  margin-right: 5px;
}

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

.wpcf7-radio {
  display: flex;
}

.wpcf7-acceptance label {
  display: flex;
}

.radio .wpcf7-list-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.check_contents p {
  display: flex !important;
  justify-content: center !important;
}

/*「必須」文字*/
.CF7_req{
	font-size: 1.5rem;
	color: #e25333;
	margin-left:2px;
}

/* 「送信する」ボタン */
.submit_btn {
  margin: 0 auto !important;
  max-width: 300px !important;
  min-width: 240px !important;
  height: 50px !important;
  line-height: 1.5rem !important;
  padding: 1em !important;
  display: block !important;
  color: #fff !important;
  background: #000 !important;
  font-weight: 500 !important;
  border-radius: 100vh !important;
  text-align:center !important;
  transition: 0.3s ease-in-out !important;
  position: relative !important;
  border: 2px solid #000;
}

.submit_btn:hover {
  background: #fff !important;
  color: #000 !important;
  border: 2px solid #000;
}

.wpcf7-spinner {
  display: block !important;
  margin: 0 auto !important;
  background-color: #F09D39 !important;
}

.privacy_link {
  border-bottom: solid 1px #565758 !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #F09D39 !important;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
下層ページ：お問い合わせ完了
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.thanks-title {
  font-size: 3rem !important;
  font-weight: 600 !important;
  margin-bottom: 40px !important;
  text-align: center;
  border: none !important;
  padding: 0 !important;
}

.thanks_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20vh;
}

.tanks_wrap {
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
下層ページ：404
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.wrap_404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
 margin: 0px auto 0vh auto;
 height: 100vh;
 position: relative;
}

.wrap_404 .button_bk {
  width: 100%;
}

.title404 {
  font-size: 3.6rem;
  font-weight: 500;
}

.wrap_404 p {
  margin: 50px 0;
  text-align: center;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SP版
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

@media screen and (max-width: 767px) {
  html {
    font-size: calc((100vw - 390px) / 80 + 9.5px);
  }

  body {
    min-width: auto;
    line-height: 3rem;
    overflow-x: hidden;
  }

  .inner {
    padding: 0 24px;
  }

  .cv_gr {
    display: none;
  }

  .pc_display_none {
    display: block;
  }

  .header_nav {
    display: none;
  }

  .sp_header_nav, .sp_header_right_gr {
    display: block;
  }

  .header {
    padding: 10px;
    height: 60px;
    min-width: auto;
  }

  .btn {
    height: 6rem;
  }

  /* スマホ用メニューボタン */  
  .sp_header_nav{
    display: block;
    padding: 60px 25px 40px 25px;
    color: #fff;
    background-color: #000;
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    z-index: 1001;
    transition: .5s;
    font-size: 1.5rem;
    overflow-x: hidden;
    line-height: 5rem;
  }

  .sp_header_nav.active{
    width: 100%;
    left: 0%;

  }

  .hamburger {
    display: block; 
    position: relative;
    width: 45px; 
    height: 45px;
    background-color: #000;
    border-radius: 100vh;
    cursor: pointer;
  }
  
  .hamburger span{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    height: 2px; 
    width: 60%; 
    border-radius: 2px;
    transition: all 0.4s ease-in-out;
  }
  .hamburger span:first-of-type{/* ハンバーガーメニューの1番目の線 */
    top: 16px;
  }
  .hamburger span:nth-of-type(2){/* ハンバーガーメニューの2番目の線 */
    bottom: 15px;
  }

  /* メニュークリック時 */
  .hamburger.active span:first-of-type{/* ハンバーガーメニューの1番目の線 */
    transform: translate(-50%, 6px) rotate(45deg);
    z-index: 1002;
  }
  .hamburger.active span:nth-of-type(2){/* ハンバーガーメニューの2番目の線 */
    transform: translate(-50%, -6px) rotate(-45deg);
    z-index: 1002;
  }

.sp_link {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 6rem;
}

.sp_header_insta {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  margin-top: 30px;
}

.sp_nav_btn {
  margin: 0 auto;
}

.sp_nav_cv_gr {
  margin-top: 30px;
}

.sp_nav_btn:first-child {
  margin-bottom: 20px;
}

.footer_btn {
  max-width: 250px;
  font-size: 1.6rem;
}

.header_logo img {
  width: 90px;
}

.cv_gr {
  display: flex;
  flex-direction: row;
  gap: 0px;
  top: auto;
  bottom: -3px;
  left: 0;
  right: auto;
  width: 100%;
}

.cv {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  display: inline-block;
  border: 2.5px solid #000;
  box-shadow: 0px 0px #000;
  border-radius: 20px 20px 0 0;
  padding: 0;
  width: 50%;
  line-height: 4.5rem;
}

.cv:hover {
  transform: translateY(5px);
  opacity: 1;
}

.cv_btn_tel {
  background-color: #F9F7D7;
}

.cv_btn_line {
  background-color: #D4E9E1;
}

.cv_bubble {
  display: none;
}

.cv_bubble_sp {
  display: block;
  position: absolute;
  top: -25px;
  right: 50%;
  transform: translateX(50%);
  width: 10rem;
  z-index: 999;
}

.cv {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cv img {
  width: 2.5rem;
}

.sp_tel_icon, .sp_line_icon {
  width: 24px;
  display: block;
}

/* ~~~~~~~~~~~ FV ~~~~~~~~~~~ */
.h1_fv {
  margin-top: 0;
  margin-bottom: -80px;
}

.fv_h1_img {
  width: 67vw;
}

.fv_img {
  display: none;
}

.fv_img_sp {
  display: block;
  width: 100%;
}

.character {
  width: 20vw;
}

.cloud {
  width: 42vw;
  top: 21px;
  left: -28px;
}

.cloud2 {
  width: 28vw;
  bottom: auto;
  top: 30vw;
  left: 21%;
}

.cloud3 {
  width: 24vw;
  bottom: 13vw;
  right: 23%;
  left: auto;
}

.cloud4 {
  display: none;
}

.cloud5 {
  display: none;
}

.cloud6 {
  width: 22vw;
  top: 44px;
}

.cloud7 {
  width: 16vw;
  top: 40vw;
  right: 40px;
}

.cloud8 {
  width: 15vw;
  bottom: -4vw;
  right: 21px;
}

/* トラックアニメーション */
.track_wrapper {
  margin-top: -22vw;
}

.track {
  width: 25vw;
  height: 15vw;
  background-image: url('../images/track_step.svg');
  background-size: 25vw 60vw;
  animation: drive_step 1s steps(4, end) infinite,driving 14s linear infinite;
  animation-delay: 2.5s;
  transform: translate(-25vw, 0px);
}

@keyframes drive_step {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -60vw;
  }
}

@keyframes driving {
  0% {
    transform: translate(-25vw, 0px);
  }
  20% {
    transform: translate(15vw, -20%);
  }
  50% {
    transform: translate(45vw, -60%);
  }
  60% {
    transform: translate(55vw, -80%);
  }
  80% {
    transform: translate(75vw, -110%);
  }
  90% {
    transform: translate(85vw, -110%);
  }
  100% {
    transform:  translate(100vw, -125%);
  }
}

/* ~~~~~~~~~~~ メッセージ ~~~~~~~~~~~ */
#message {
  padding: 100px 0 250px 0;
}

.message_head {
  display: none;
}

.message_head_sp {
  display: block;
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
}

.bk_shape1 {
  width: 60px;
  right: 0px;
  top: -26px;
}

.bk_shape2 {
  width: 100px;
  left: 0px;
  top: -29px;
}

.message_tx {
  margin-top: 60px;
  text-align: justify;
  letter-spacing: 0rem;
  font-size: 1.6rem;
}

.pc_display_block {
  display: none;
}

.message_top {
  padding-bottom: 500px;
}

.message_img1 {
  width: 64vw;
  right: -20px;
  top: auto;
  bottom: 225px;
  right: -2.3vw;
}

.message_img2 {
  left: -45px;
  bottom: -50px;
  width: 58vw;
  left: -2vw;
}

.message_bottom {
  flex-direction: column;
  margin-top: 80px;
  gap: 0;
}

.message_bottom > div {
  width: 100%;
}

.message_bottom_tx {
  text-align: left;
  line-height: 3.5rem;
  padding: 30px 70px;
}

.message_right {
  justify-content: flex-end;
}

.message_img3 {
  width: 60vw;
  max-width: 290px;
}

.bk_shape3 {
  right: 150px;
  top: auto;
  bottom: -20px;
  width: 80px;
}

.bk_shape4 {
  right: auto;
  left: 2px;
  bottom: -23px;
  width: 66px;
}

.message_illust {
  width: 48vw;
  left: 6vw;
  top: -60vw;
}

.message_illust2 {
  left: 15vw;
  top: -52vw;
  width: 40vw;
}

.circle_tx {
  right: -36px;
  width: 140px;
  height: 140px;
}

/* トラックアニメーション2 */
.track_wrapper2 {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: -15vw;
}

.track2 {
  width: 25vw;
  height: 15vw;
  background-image: url('../images/track_step2.svg');
  background-size: 25vw 60vw;
  transform: translate(25vw, -19vw) rotate(0deg);
}

.track2_anime {
  animation: drive_step 1s steps(4, end) infinite,driving2 13s linear forwards;
}

@keyframes driving2 {
  0% {
    transform: translate(25vw, -19vw) rotate(0deg);
  }
  10% {
    transform: translate(0vw, -19vw) rotate(0deg);
  }
  20% {
    transform: translate(-10vw, -17vw) rotate(-5deg);
  }
  30% {
    transform: translate(-20vw, -15vw) rotate(-14deg);
  }
  40% {
    transform: translate(-30vw, -12vw) rotate(-20deg);
  }
  50% {
    transform: translate(-40vw, -8vw) rotate(-20deg);
  }
  60% {
    transform: translate(-50vw, -5vw) rotate(-20deg);
  }
  70% {
    transform: translate(-60vw, -3.5vw) rotate(-10deg);
  }
  100% {
    transform: translate(-60vw, -3.5vw) rotate(-10deg);
  }
}

/* ~~~~~~~~~~~ FLOW ~~~~~~~~~~~ */
#flow {
  padding: 30px 0 80px 0;
}

.flow_head {
  width: 74.6vw;
  max-width: 330px;
}

.flow_container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
  margin-top: 40px;
}

.flow_container > div {
  width: 75%;
}

.flow_h4 {
  width: 100%;
}

.flow_h4 span {
  font-size: 1.7rem;
  letter-spacing: -0.05rem;
}

.flow_tx {
  font-size: 1.5rem;
  width: 100%;
}

.flow_h3 {
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  padding: 2px 10px;
  margin-left: -1vw;
}

.flow_illust1 {
  left: -5vw;
  top: 28vw;
  width: 13vw;
}

.flow_gr1::after {
  left: 74%;
  top: 35vw;
  width: 53vw;
}

.flow_gr2, .flow_gr4 {
  margin: 0 0 0 auto;
}

.flow_illust2 {
  right: -4vw;
  top: 31vw;
  width: 17vw;
}

.flow_gr2::after {
  width: 44vw;
  left: -37vw;
  bottom: auto;
  top: 36vw;
}

.flow_gr3::after {
  width: 53vw;
  left: 80%;
  top: 37.8vw;
}

.flow_illust3 {
  width: 8vw;
  left: -20px;
  top: 35vw;
}

.flow_illust4 {
  right: -8vw;
  top: -5vw;
  width: 24vw;
}

.bk_shape6 {
  position: absolute;
  width: 100px;
  bottom: 124px;
  left: -40px;
}

/* トラックアニメーション3 */
.track_wrapper3 {
  position: absolute;
  top: 20vw;
  left: 54%;
}

.track3 {
  width: 25vw;
  height: 15vw;
  background-image: url('../images/track_step.svg');
  background-size: 25vw 60vw;
  transform: rotate(16.5deg);
}

.track3_anime {
  animation: drive_step3_sp 1s steps(4, end) infinite,driving3 5s linear forwards;
}

@keyframes drive_step3_sp {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -60vw;
  }
}

/* トラックアニメーション4 */
.track_wrapper4 {
  bottom: auto;
  top: 16vw;
  right: auto;
  left: 10%;
}

.track4 {
  width: 25vw;
  height: 15vw;
  background-image: url('../images/track_step.svg');
  background-size: 25vw 60vw;
  opacity: 1;
  transform: rotate(-26.54deg) scale(-1, 1);
}

.track4_anime {
  animation: drive_step3_sp 1s steps(4, end) infinite,driving4 5s linear forwards;
  animation-delay: 0s;
}

@keyframes driving4 {
  0% {
    opacity: 1;
    transform: translate(0% 0%) rotate(-26.54deg) scale(-1, 1);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform:  translate(-300%, 240%) rotate(-26.54deg) scale(-1, 1);
  }
}

/* トラックアニメーション5 */
.track_wrapper5 {
  position: absolute;
  top: 22vw;
  left: 54%;
}

.track5 {
  width: 25vw;
  height: 15vw;
  background-image: url('../images/track_step.svg');
  background-size: 25vw 60vw;
  transform: rotate(16.5deg);
}

.track5_anime {
  animation: drive_step3_sp 1s steps(4, end) infinite,driving5 5s linear forwards;
  animation-delay: 0s;
}

@keyframes driving5 {
  0% {
    transform: translate(0% 0%) rotate(16.5deg);
  }
  100% {
    transform:  translate(450%, 240%) rotate(16.5deg);
  }
}

/* ~~~~~~~~~~~ こんなお悩み ~~~~~~~~~~~ */

#worries {
  padding: 80px 0 150px 0;
}

.worries_container {
  padding: 80px 0 40px 0;
}

.worries_gr_top {
  flex-direction: column;
  gap: 0%;
}

.worries_gr1 {
  width: 60%;
  padding-bottom: 7%;
  margin-left: 0px;
}

.worries_tx {
  font-size: 1.6rem;
  line-height: 3rem;
}

.audio {
  top: -5.3vw;
  right: -7vw;
  width: 16vw;
}

.worries_gr2 {
  width: 60%;
  padding-bottom: 7%;
  margin: -20% 0 0 auto;
}

.clock {
  width: 14vw;
  bottom: -1.7vw;
  right: -3vw;
}

.worries_gr_bottom {
  flex-direction: column;
}

.worries_gr3 {
  width: 60%;
  padding-bottom: 11%;
  margin: -10% auto 0 0;
}

.ring {
  width: 17.6vw;
  top: -5.3vw;
  left: -6vw;
}

.worries_gr4 {
  width: 60%;
  margin: -20% 0 0 auto;
}

.worries_gr5 {
  width: 60%;
  margin: -20% auto 0 0;
}

.sax {
  width: 15vw;
  top: 13.7vw;
  right: -6vw;
  left: auto;
}

/* ~~~~~~~~~~~ Voice ~~~~~~~~~~~ */
#voice {
  padding: 0 0 40vw 0;
}

.voice_head_gr {
  margin-top: -100px;
}

.voice_head {
  width: 65vw;
  max-width: 244px;
}

.voice_container {
  flex-direction: column;
  gap: 30px;
  margin-top: 80px;
}

.voice_gr {
  width: 100%;
  padding: 30px 20px;
}

.audio2 {
  width: 20vw;
  top: -13vw;
  left: -4.2vw;
}

.voice_gr2 {
  margin: 0;
}

/* ポイント */
.point_img1 {
  max-width: 500px;
  left: -9vw;
}

.point_bubble {
  width: 300px;
  top: -466px;
  left: 40vw;
}

.point_container {
  margin-top: 500px;
}

.point_container {
  flex-direction: column;
}

.point_gr {
  width: 73%;
  height: 73%;
  max-width: 380px;
  max-height: 380px;
  padding: 30px;
}

.point_img2 {
  width: 27vw;
}

.point_tx {
  font-size: 1.8rem;
  line-height: 2.5rem;
  margin-top: 1.5rem;
}

.point_num {
  width: 15vw;
  top: 0vw;
  left: 1.8vw;
}

.point_gr2, .point_gr4 {
  margin: -6vw 0 0 auto;
}

.point_gr3 {
  margin: -6% auto 0 0;
}

.bk_shape7 {
  width: 52vw;
  top: -12vw;
  right: -7vw;
}

.cta_container {
  background-image: none;
  margin-top: 20vw;
  padding: 7vw 5.3vw 5.3vw 5.3vw;
}

.circle_tx.circle_tx2 {
  left: -4rem;
  right: auto;
  width: 180px;
  height: 180px;
}

.circleText__text {
  font-size: 11pt;
}

.circleText__text2 {
  font-size: 10pt;
}

.cta_gr {
  width: 100%;
}

.cta_btn {
  width: 100%;
  max-width: 100%;
  background-color: #fff;
  border: #000 2px solid;
  border-radius: 100vh;
  padding: 2rem;
  font-weight: bold;
  margin: 0 auto;
}

.cta_tx1::before, .cta_tx1::after {
  top: 2rem;
  height: 2rem;
}

.cta_tx1 {
  top: -3rem;
  left: 2rem;
}

.cta_btn:first-of-type {
  margin: 2rem auto 1.2rem auto;
}

.cta_btn img {
  width: 3rem;
}

/* ~~~~~~~~~~~ Item List ~~~~~~~~~~~ */
.item_list_head {
  width: 100%;
  max-width: 362px;
}

.item_list_head_gr {
  margin-top: -27vw;
}

.item_list_img {
  max-width: 230px;
  width: 43vw;
  right: 7vw;
  top: auto;
  bottom: -44vw;
  z-index: 10;
}

.item_list_container {
  margin-top: 15vw;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5.3vw 2.6vw;
}

.item_name {
  padding: 0rem 1rem;
  font-size: 1.4rem;
  line-height: 2rem;
  white-space: nowrap;
}

.item_name_figure {
  font-size: 1rem;
  letter-spacing: -0.1rem;
}

.item_list_attention {
  margin-top: 50px;
}

.item_img {
  margin-bottom: -1rem;
}

/* ~~~~~~~~~~~ FAQ ~~~~~~~~~~~ */
#faq {
  margin-top: 100px;
  padding-bottom: 250px;
}

.faq_head {
  width: 74vw;
  max-width: 280px;
}

.faq_head_gr {
  margin-bottom: 15vw;
  justify-content: flex-start;
}

.question_body {
  padding: 2rem 6rem;
  margin-top: 20px;
}

/* ~~~~~~~~~~~ Blog ~~~~~~~~~~~ */
.blog_head_gr {
  flex-direction: column;
  margin-bottom: 15vw;
}

.blog_camera {
  max-width: 94px;
  width: 18vw;
  top: -34vw;
  right: auto;
  left: 4vw;
}

.blog_head {
  width: 56vw;
  max-width: 210px;
}

.sp_blog_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw 5vw;
  margin-bottom: 15vw;
}

.blog_container .blog_list {
  display: none;
}

.date_cat_gr {
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.blog_h3 {
  margin-top: 20px;
}

.blog_container {
  padding-bottom: 100px;
}

/* ~~~~~~~~~~~ Instagram ~~~~~~~~~~~ */
#insta {
  margin-top: 80px;
  padding: 0 0 150px 0;
}

.insta_illust {
  max-width: 165px;
  width: 35vw;
  top: -60px;
  left: auto;
  right: 4vw;
}

.insta_head_gr {
  justify-content: flex-start;
}

.insta_head {
  max-width: 361px;
  width: 100%;
}

/* ~~~~~~~~~~~ フッター ~~~~~~~~~~~ */
#footer {
  min-width: auto;
}

.footer {
  padding-top: 60px;
  padding-bottom: 100px;
}

.footer_container {
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

.footer_logo {
  width: 100px;
}

.footer_container div {
  width: 100%;
}

.footer_cv_gr {
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.footer_right {
  display: none;
}

.footer_tx {
  text-align: center;
}

.page_top_img {
  width: 40px;
  height: 40px;
}

.footer_bk {
  margin-bottom: -58px;
}

/* トラックループ */
.footer_track {
  width: 480px;
  height: 62px;
  background-image: url('../images/footer_track_step_sp.svg');
  background-size: 480px 245px;
  animation: drive_step2_footer_sp 1s steps(4, end) infinite;
  flex-shrink: 0;
}


@keyframes drive_step2_footer_sp {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -245px;
  }
}

@keyframes scrollLoop {
  0% {
    transform: translateX(-1440px); /* 480px × 3枚分 */
  }
  100% {
    transform: translateX(0);
  }
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
下層ページ：レールについて
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.child_header {
  padding-top: 60px;
}

#about {
  margin-top: 120px;
  padding-bottom: 14vw;
}

.about_head {
  max-width: 476px;
  width: 126vw;
}

.child_about_illust {
  max-width: 160px;
  top: 100px;
  right: 50px;
}

.about_gr1 {
  flex-direction: column-reverse;
  gap: 50px;
}

.about_gr2 {
  flex-direction: column;
  gap: 50px;
}

.about_gr3 {
  flex-direction: column-reverse;
  gap: 50px;
  margin-top: 80px;
}

.about_gr4 {
  flex-direction: column;
  gap: 50px;
  margin-top: 80px;
}

.about_gr1 div, 
.about_gr2 .about_gr_left, 
.about_gr2 .about_gr_right, 
.about_gr3 .about_gr_left, 
.about_gr3 .about_gr_right, 
.about_gr4 .about_gr_left, 
.about_gr4 .about_gr_right {
  width: 100%;
}


.about_gr1 .about_gr_right {
  width: 90%;
  margin: 0 -5vw 0 auto;
}

.about_img2 {
  max-width: 300px;
}

.about_gr4 .about_gr_left {
  margin-top: 0;
}

.about_img4 {
  max-width: 400px;
  margin: 0 auto;
}

.about_h2 {
  max-width: 400px;
  width: 100%;
}

.company_head {
  max-width: 456px;
  width: 100%;
}

.company_contents {
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.map {
  height: 300px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
下層ページ：Blog
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.child_about_illust2 {
  max-width: 140px;
  top: 90px;
  right: 10px;
}

.blog_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw 5vw;
  margin-bottom: 15vw;
}

.child_blog_head {
  max-width: 419px;
  width: 111vw;
}

.child_blog_container {
  margin-top: 60px;
  margin-bottom: 100px;
}

.category_li_container {
  flex-direction: column;
  gap: 20px;
}

/* ページネーション */
.content > .page-numbers {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 80px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 2rem;
  font-size: 1.3rem;
}

.page-numbers .page-numbers {
  display: inline-block;
  text-align: center;
  background-color: #fff;
  color: #2A2625;
  border-radius: 100vh;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  font-size: 1.3rem;
}

.page-numbers.current {
  display: inline-block;
  text-align: center;
  background-color: #2A2625;
  color: #fff;
  border-radius: 100vh;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  font-size: 1.3rem;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
下層ページ：ブログ 詳細
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
.news_detail_wrap, 
.news_detail_bottom_wrap {
  max-width: 100%;
  padding: 0px 24px 60px 24px;
}

.news_detail_h1 {
  font-size: 2.4rem;
  line-height: 4rem;
}

.news_detail_head_gr {
  margin-bottom: 30px;
}

.news_detail_discription_container {
  padding: 30px;
}

.child_contact_container {
  padding: 60px 24px;
  max-width: 100%;
}

.news_detail_contents .wp-block-image img {
  margin: 20px auto;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
下層ページ：お問い合わせ
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.child_about_illust3 {
  max-width: 140px;
  top: 90px;
  right: 10px;
}

.CF7_table p {
  margin-bottom: 0;
}

.CF7_table tr {
  margin-bottom: 20px;
}

.contact-btn:after {
  position: absolute;
  right: 1rem;
}

table.CF7_table{
  width:95%;
  }
  .CF7_table tr, .CF7_table td, .CF7_table th{
  display: block;
  width: 100%;
  }

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
下層ページ：お問い合わせ完了
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.thanks-title {
  font-size: 2.4rem !important;
  line-height: 3.5rem !important;
  margin-bottom: 40px !important;
  text-align: left !important;
}

}

@media screen and (max-width: 640px) {
/* インスタループ */
.insta_wrap {
  margin-top: 60px;
  margin-bottom: 40px;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
    to {
    transform: translateX(-100%);
  }
  }
  .insta_wrap #sb_instagram.sbi_width_resp {
    display: flex !important;
    overflow: hidden;
    width: 800vw !important;
  }
  .sbi_images {
    display: flex !important;
    padding: 0 !important;
    animation: infinity-scroll-left 40s infinite linear 0.5s both;
  }

  .sbi_item {
    width: calc(100vw / 1);
    margin-right: 10px !important;
  }
}

@media screen and (max-width: 500px) {
.message_top {
  padding-bottom: 116vw;
}

.message_img1 {
  bottom: 60vw;
}

.message_img2 {
  bottom: -6vw;
}

.message_left {
  background-image: url(../images/message_bubble_sp.svg);
  aspect-ratio: 332 / 347;
}

.message_bottom_tx {
  padding: 10px 30px 30px 40px;
}

.point_img1 {
  width: 90vw;
  top: -72vw;
  left: -17vw;
}

.point_bubble {
  width: 53vw;
  top: -99vw;
  left: 44vw;
}

.point_container {
  margin-top: 106vw;
}

#faq {
  margin-top: 26vw;
  padding-bottom: 74vw;
}

.insta_illust {
  top: -37vw;
  left: auto;
  right: 4vw;
}

.child_about_illust {
  width: 35vw;
  top: 22vw;
  right: -2vw;
}

.child_about_illust2 {
  width: 35vw;
  top: 24vw;
  right: 2.6vw;
}

.child_about_illust3 {
  width: 35vw;
  top: 7vw;
  right: 2.6vw;
}
}