@charset "utf-8";

/* リセットCSSの読み込み */
@import url("reset.css");

/* 全体の設定 */
html,
body {
  font-family: "M PLUS 1p", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  font-size: clamp(14px, 1.2vw, 18px);
  letter-spacing: 0.03em;
  line-height: 1.8em;
  -webkit-text-size-adjust: none;
  background: #fff;
  color: #3A4048;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding: 160px;
}

/* スマホ・タブレット向け設定 */
@media (max-width: 1080px) {

  html,
  body {
    letter-spacing: 0.02em;
    line-height: 1.6em;
  }
}

/* フォントのジャギー修正 */
p {
  transform: rotateZ(0.03deg);
}

/* 見出し設定 */
h2 {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-size: clamp(50px, 1.2vw, 56px);
  text-align: center;
}

h3 {
  font-size: clamp(30px, 1.2vw, 36px);
}

@media (max-width: 1080px) {
  h2 {
    font-size: clamp(38px, 1.2vw, 46px);
    line-height: 1;
  }

  h3 {
    font-size: clamp(26px, 1.2vw, 30px);
  }
}

/* 画像全般 */
img {
  margin: auto;
}

a img:hover {
  transition: all 0.3s;
  opacity: 0.7;
}

/* iframe設定 */
iframe {
  width: 100%;
}

/* リストタグ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* リンクテキスト設定 */
a {
  color: #3A4048;
  transition: 0.3s;
  text-decoration: none;
}

a:hover {
  color: #FF5B1A;
}

/* AOSアニメーションカスタム */
[data-aos="zoom-in-up"] {
  transform: scale(0.1) translateY(100px) !important;
}

[data-aos="zoom-in-up"].aos-animate {
  transform: scale(3) translateY(0) !important;
}

/* section共通設定 */
section {
  margin: auto;
  width: 100%;
}

@media (max-width: 1000px) {
  section {
    width: 100%;
  }
}

/* 問い合わせボタン */
.con_btn {
  width: 180px;
  height: 50px;
  background: #FF5B1A;
  display: grid;
  place-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
}

.con_btn:hover {
  background: #FE2C55;
}

@media (max-width: 1080px) {
  #header .con_btn {
    display: none;
  }
}

/* ヘッダー設定 */
header {
  z-index: 3;
  width: 90%;
  max-width: 1200px;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 100px 1fr 180px;
  height: 110px;
  justify-items: end;
  align-items: center;
  padding: 0 20px;
}

header menu {
  width: auto;
  padding-right: 25px;
}

header menu ul {
  display: flex;
  gap: 20px;
}

header menu ul a {
  font-weight: 800;
  font-size: clamp(16px, 1.2vw, 24px);
}

header menu li {
  position: relative;
  padding-left: 30px;
}

header menu li::before {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #25F4EE;
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

header menu li:hover::before {
  background-color: #FE2C55;
  transition: 0.3s;
}

header #logo img {
  max-height: 90px;
}

@media (max-width: 1080px) {
  header {
    top: 10px;
    grid-template-columns: 50px 1fr 180px;
    height: 60px;
  }

  header #logo img {
    max-height: 45px;
  }

  header menu {
    display: none;
  }
}

/* ハンバーガーメニュー */
.menu {
  position: relative;
  z-index: 1000;
}

.menu-toggle {
  display: none;
  position: fixed;
  top: 15px;
  right: 7%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  z-index: 1100;
}

.circle-bg {
  width: 100%;
  height: 100%;
  background: #FF5B1A;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bars {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
}

.bars span {
  width: 30px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: transform 0.4s, opacity 0.4s;
}

.menu.open .bars span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu.open .bars span:nth-child(2) {
  opacity: 0;
}

.menu.open .bars span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.menu-items {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #FF5B1A;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  transition: right 0.5s ease;
}

.menu.open .menu-items {
  right: 0;
  line-height: 2;
}

.menu.open .menu-items a {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .menu-toggle {
    display: block;
  }
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
/*全体を囲むブロック*/
#main_area {
  width: 100%;
  background: url(../images/pc_bg.webp);
  background-size: cover;
  background-position: center;
  height: auto;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  /* 高さを適切に管理 */
}

#main_area ul {
  width: 100%;
  max-width: 1850px;
  height: auto;
  aspect-ratio: 1850 / 865;
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  padding-top: 125px;
  position: relative;
  z-index: 2;
}

#main_area dl {
  text-align: left;
  padding: 0 0 0 70px;
}

#main_area dd {
  margin-bottom: 20px;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 500;
}

#main_area dd h1 {
  display: block;
  font-size: clamp(90px, 1.2vw, 120px);
  font-weight: 400;
  font-family: "Poppins", serif;
  color: #FE2C55;
  font-style: normal;
  line-height: 0.8;
}

#main_area dd:nth-of-type(2) {
  margin-bottom: 25px;
}

#main_area dd:nth-of-type(3) {
  margin-bottom: 50px;
  font-weight: 700;
}

#main_area .con_btn {
  width: 300px;
  height: 75px;
  border-radius: 40px;
  font-size: 18px;
}

#main_area .img_area {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 1200px;
  margin-left: clamp(40px, 2vw, 80px);
}

#main_area .marquee-container {
  width: 100vw;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  bottom: -10%;
  left: 0;
  display: flex;
  align-items: center;
  z-index: 1;
}

#main_area .marquee {
  display: flex;
  gap: 40px;
  /* 文字間のスペース */
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: clamp(180px, 10vw, 280px);
  color: #FE2C55;
  white-space: nowrap;
  line-height: 1;
  animation: marquee 20s linear infinite;
}

@media (max-width: 1400px) {

  #main_area .marquee {
    font-size: 140px;
  }
}

@keyframes marquee {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 1080px) {

  /*全体を囲むブロック*/
  #main_area ul {
    height: 500px;
    justify-content: center;
    padding-top: 90px;
    position: relative;
    display: block;
  }

  #main_area dl {
    text-align: center;
    padding: 0px;
  }

  #main_area li {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10px 0px;
    z-index: 2;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  #main_area dd {
    margin-bottom: 20px;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 500;
  }

  #main_area dd h1 {
    font-size: clamp(60px, 10vw, 90px);
    text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF,
      -1px 1px 0 #FFF, 1px -1px 0 #FFF,
      0px 1px 0 #FFF, 0-1px 0 #FFF,
      -1px 0 0 #FFF, 1px 0 0 #FFF;
  }

  #main_area dd:nth-of-type(2) {
    margin-bottom: 10px;
  }

  #main_area dd:nth-of-type(3) {
    margin-bottom: 0px;
    font-weight: 500;
  }

  #main_area .con_btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
  }

  #main_area .marquee-container {
    width: 100vw;
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    bottom: -10%;
    left: 0;
    display: flex;
    align-items: center;
    z-index: 1;
  }

  #main_area .marquee {
    display: flex;
    gap: 40px;
    /* 文字間のスペース */
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: clamp(110px, 10vw, 130px);
    color: #FE2C55;
    white-space: nowrap;
    line-height: 1;
    animation: marquee 20s linear infinite;
  }

  #main_area .img_area_sp {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    margin: 95px auto 0;
    z-index: 1;
    max-width: 700px;
    height: 405px;
  }

  #main_area .img_area_sp figure:nth-of-type(11) {
    position: absolute;
    top: -15px;
    left: 48%;
    transform: translateX(-50%);
    width: 100%;
  }

  #main_area .img_area_sp figure:nth-of-type(11) img {
    min-height: 190px;
    height: 24vw;
  }


  #main_area .img_area_sp figure:nth-of-type(12) {
    position: absolute;
    top: 158px;
    left: 4%;
  }

  #main_area .img_area_sp figure:nth-of-type(12) img {
    min-height: 200px;
    height: 24vw;
  }

  #main_area .img_area_sp figure:nth-of-type(13) {
    position: absolute;
    top: 160px;
    right: 3%;
  }

  #main_area .img_area_sp figure:nth-of-type(13) img {
    min-height: 200px;
    height: 24vw;
  }

  #main_area .bg_line_l img.aos-animate {
    position: absolute;
    top: 2vh;
    left: 8vh;
    animation: animation_border 2s linear forwards;
  }

  #main_area .bg_line_r img.aos-animate {
    position: absolute;
    top: 22vh;
    right: 15vh;
    animation: animation_border 2s linear forwards;
  }

  #main_area .bg_img01 {
    position: absolute;
    top: 0vh;
    left: 10vh;
    width: 8vw;
    max-width: 45px;
    animation: bg_float 4s ease-in-out infinite;
  }

  #main_area .bg_img02 {
    position: absolute;
    top: 10vw;
    left: 5vh;
    width: 8vw;
    max-width: 50px;
    animation: bg_float 3.5s ease-in-out infinite;
  }

  #main_area .bg_img03 {
    position: absolute;
    bottom: 8vh;
    left: 3vh;
    width: 10vw;
    max-width: 55px;
    animation: bg_float 2.5s ease-in-out infinite;
  }

  #main_area .bg_img04 {
    position: absolute;
    bottom: 116px;
    left: 40vw;
    width: 8vw;
    max-width: 50px;
    animation: bg_float 2.5s ease-in-out infinite;
  }

  #main_area .bg_img05 {
    position: absolute;
    bottom: 50px;
    right: 2vh;
    width: 6vw;
    max-width: 35px;
    animation: bg_float 2.5s ease-in-out infinite;
  }

  #main_area .bg_img06 {
    position: absolute;
    bottom: 79px;
    left: 53vw;
    width: 6vw;
    max-width: 40px;
    animation: bg_float 3.5s ease-in-out infinite;
  }

  #main_area .bg_img07 {
    position: absolute;
    top: 64px;
    right: 10vh;
    width: 6vw;
    max-width: 35px;
    animation: bg_float 2.5s ease-in-out infinite;
  }

  #main_area .bg_img08 {
    position: absolute;
    top: 0px;
    right: 4vh;
    width: 12vw;
    max-width: 70px;
    animation: bg_float 5s ease-in-out infinite;
  }
}


/*About
---------------------------------------------------------------------------*/
#About {
  margin: auto;
  margin: 100px 0 0;
  width: 100%;
  position: relative;
}

#About .bg_line_l img.aos-animate {
  position: absolute;
  top: 0;
  left: 0;
  animation: animation_border 1.5s linear forwards;
}

#About .bg_line_r img.aos-animate {
  position: absolute;
  top: 0;
  right: 0;
  animation: animation_border 1.5s linear forwards;
}

@keyframes animation_border {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  25% {
    clip-path: inset(0 0 0 0);
  }

  50% {
    clip-path: inset(0 0 0 100%);
  }

  75% {
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

/* ふわふわ動かすアニメーション */
@keyframes bg_float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

#About .bg_img01 {
  position: absolute;
  top: 20px;
  left: 20%;
  animation: bg_float 3s ease-in-out infinite;
}

#About .bg_img02 {
  position: absolute;
  top: 0px;
  right: 20%;
  animation: bg_float 3s ease-in-out infinite;
}

#About .bg_img03 {
  position: absolute;
  bottom: 0px;
  left: 10%;
  animation: bg_float 3s ease-in-out infinite;
}

#About .bg_img04 {
  position: absolute;
  bottom: 0px;
  right: 15%;
  animation: bg_float 3s ease-in-out infinite;
}

#About article {
  margin: auto;
  max-width: 700px;
  width: 90%;
  text-align: center;
}

#About article h2 {
  margin-bottom: 50px;
}

#About article li {
  margin-bottom: 50px;
  font-size: 16px;
}

#About article li:nth-of-type(1) {
  margin-bottom: 50px;
  position: relative;
}

#About article li:nth-of-type(1) span {
  font-size: 14px;
}

#About article li:nth-of-type(1)::before {
  content: "";
  position: absolute;
  width: 82px;
  height: 100px;
  background-image: url(../images/logo.webp);
  background-repeat: no-repeat;
  background-size: 82px;
  top: 50%;
  transform: translateY(-50%);
  left: 110px;
}

#About article li:last-of-type {
  margin-bottom: 0px;
}

#About article .text_red {
  color: #FE2C55;
}

#About article .text_blue {
  color: #28BFBB;
}

@media (max-width: 1080px) {
  #About {
    margin: 70px auto 0;
  }

  #About article {
    text-align: left;
  }

  #About article h2 {
    margin-bottom: 20px;
  }

  #About article li {
    margin-bottom: 30px;
    font-size: 16px;
  }

  #About article li:nth-of-type(1) {
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    ;
  }

  #About article li:nth-of-type(1) span {
    font-size: 14px;
  }

  #About article li:nth-of-type(1)::before {
    display: none;
  }

  #About article li:last-of-type {
    margin-bottom: 0px;
  }

  #About article .text_red {
    color: #FE2C55;
  }

  #About article .text_blue {
    color: #28BFBB;
  }
}


/*Liver
---------------------------------------------------------------------------*/
#Liver {
  margin: 100px auto 0;
  padding: 120px 0 100px;
  width: 100%;
  height: auto;
  background: linear-gradient(135deg, rgba(255, 91, 91, 0.5), rgba(255, 138, 76, 0.5));
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
  position: relative;
}

#Liver article {
  width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
  position: relative;
  justify-content: flex-end;
}

#Liver h2 {
  transform: rotate(90deg);
  transform-origin: left top;
  transform: rotate(90deg) translate(0, -100%);
}

#Liver h3 {
  margin-bottom: 20px;
}

#Liver li:nth-of-type(1) span {
  font-size: 16px;
}

#Liver li:nth-of-type(1) {
  margin-bottom: 60px;
}

#Liver li ul {
  width: 1000px;
  display: flex;
  gap: 50px;
}

#Liver li ul li {
  width: 300px;
  font-weight: 700;
}

#Liver li ul li div {
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 10px;
}

#Liver li ul li div span {
  width: auto;
  display: flex;
  gap: 10px;
}

#Liver li ul li div span img {
  width: 30px;

}

#Liver .bg_img01 {
  position: absolute;
  top: 10%;
  left: 2%;
  animation: bg_float 2s ease-in-out infinite;
  z-index: 1;
}

#Liver .bg_img02 {
  position: absolute;
  top: 50%;
  left: 2%;
  animation: bg_float 3s ease-in-out infinite;
  z-index: 1;
}

#Liver .bg_img03 {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 40px;
  animation: bg_float 2.5s ease-in-out infinite;
  z-index: 1;
}

#Liver .bg_img04 {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 50px;
  animation: bg_float 2.5s ease-in-out infinite;
  z-index: 1;
}

#Liver .bg_img05 {
  position: absolute;
  top: 25%;
  right: 40%;
  animation: bg_float 4s ease-in-out infinite;
  z-index: 1;
}

#Liver .bg_img06 {
  position: absolute;
  top: 50%;
  right: 10%;
  animation: bg_float 3s ease-in-out infinite;
  width: 45px;
  z-index: 1;
}

#Liver .bg_img07 {
  position: absolute;
  top: 20%;
  right: 5%;
  animation: bg_float 3s ease-in-out infinite;
  width: 70px;
  z-index: 1;
}

#Liver .bg_img08 {
  position: absolute;
  bottom: 3%;
  right: 7%;
  animation: bg_float 3s ease-in-out infinite;
  z-index: 1;
}

/* レスポンシブ設定 */
@media (max-width: 1080px) {
  #Liver {
    margin: 70px auto 0;
    padding: 60px 0 30px;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%);
    position: relative;
  }

  #Liver article {
    width: 90%;
    margin: auto;
    display: block;
  }

  #Liver h2 {
    transform: rotate(0deg);
    transform-origin: left top;
    transform: rotate(0deg) translate(0, 0%);
    margin-bottom: 15px;
    text-align: left;
  }

  #Liver h3 {
    margin-bottom: 20px;
  }

  #Liver li:nth-of-type(1) {
    margin-bottom: 30px;
  }

  #Liver li ul {
    gap: 20px;
  }

  #Liver li ul li {
    font-weight: 700;
  }

  #Liver li ul li div {
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 20px;
  }

  #Liver li ul li div p {
    font-size: 20px;
    font-weight: 800;
  }

  #Liver li ul li div span {
    width: auto;
    display: flex;
    gap: 20px;
  }

  #Liver li ul li div span img {
    width: 40px;

  }
}

/* スライド全体を制御 */
.slider {
  max-width: 100%;
  overflow: hidden;
  /* はみ出した部分を非表示 */
}

/* スライドアイテムの幅を固定 */
.slider .slick-slide {
  width: 300px !important;
  /* スライド幅を300pxに固定 */
  max-width: 300px;
  box-sizing: border-box;
  /* パディングを含める */
}

/* スライド間の余白調整 */
.slider .slick-slide>div {
  margin-right: 10px;
  /* スライド間隔を調整 */
}

/* スライダーのトラック全体 */
.slider .slick-track {
  display: flex;
  /* 横並びを維持 */
}

/* 画面幅1080px以下の場合 */
@media (max-width: 1080px) {
  .slider .slick-slide {
    width: 300px !important;
    margin-right: 20px;
    /* モバイルでも300px固定 */
  }

  .slider .slick-slide:last-child {
    margin-right: 0px;
    /* モバイルでも300px固定 */
  }
}


/*Services
---------------------------------------------------------------------------*/
#Services {
  margin: 70px auto 0;
  width: 100%;
  position: relative;
}

#Services .bg_line_l img.aos-animate {
  position: absolute;
  top: 0;
  left: 0;
  animation: animation_border 1.5s linear forwards;
}

#Services .bg_line_r img.aos-animate {
  position: absolute;
  top: 0;
  right: 0;
  animation: animation_border 1.5s linear forwards;
}

#Services .bg_img01 {
  position: absolute;
  top: 50%;
  left: 20%;
  animation: bg_float 3s ease-in-out infinite;
}

#Services .bg_img02 {
  position: absolute;
  top: 45%;
  right: 10%;
  animation: bg_float 3s ease-in-out infinite;
}

#Services .bg_img03 {
  position: absolute;
  bottom: 10%;
  left: 10%;
  animation: bg_float 3s ease-in-out infinite;
}

#Services .bg_img04 {
  position: absolute;
  bottom: 11%;
  right: 15%;
  animation: bg_float 3s ease-in-out infinite;
}

#Services article {
  width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
  position: relative;
  justify-content: flex-end;
}

#Services h2 {
  transform: rotate(90deg);
  transform-origin: left top;
  transform: rotate(90deg) translate(0, -100%);
  padding: 0px 0px 90px 0px;
}

#Services h3 {
  margin-bottom: 20px;
}

#Services li:nth-of-type(1) span {
  font-size: 16px;
}

#Services li ul {
  width: 1000px;
  display: flex;
  gap: 20px;
  font-size: 14px;
  margin-top: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

#Services li ul li {
  width: 320px;
  padding: 20px;
  gap: 20px;
  display: grid;
  background: #FE2C55;
  border-radius: 10px;
  color: #fff;
  line-height: 1.8;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}


#Services li ul li:nth-child(even) {
  background: #28BFBB;
}

#Services h4 {
  width: 260px;
  height: 40px;
  background: #fff;
  text-align: center;
  margin: auto;
  display: grid;
  align-items: center;
  color: #3A4048;
  line-height: 1;
}

/* レスポンシブ設定 */
@media (max-width: 1260px) {
  #Services article {
    width: 1000px;
  }

  #Services li ul {
    width: 100%;
    margin: 60px 0 0 0;
    justify-content: flex-start;
  }
}

@media (max-width: 1080px) {

  #Services article {
    width: 90%;
    display: block;
  }

  #Services h2 {
    transform: rotate(0deg);
    transform-origin: left top;
    transform: rotate(0deg) translate(0, 0%);
    margin-bottom: 15px;
    padding: 0px;
  }

  #Services h3 {
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.4;
  }

  #Services li:nth-of-type(1) span {
    font-size: 16px;
  }

  #Services li ul {
    width: 100%;
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: nowrap;
  }
}

@media (max-width: 1000px) {
  .scrollable {
    display: flex;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  .scrollable li {
    flex: 0 0 auto;
    /* アイテムを横に並べる */
    min-width: 250px;
    /* 各項目の最小幅 */
    background: #f4f4f4;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
  }
}

/*Contactボタン設定
---------------------------------------------------------------------------*/
.contact {
  margin: 150px auto;
}

.contact img {
  transition-duration: .4s;
}


.contact img:hover {
  cursor: pointer;
  transform: scale(1.1);
}

@media (max-width: 1080px) {

  .contact {
    margin: 70px auto;
    max-width: 500px;
    width: 90%;
  }
}

/*ライバーとは？
---------------------------------------------------------------------------*/
#Liver2 article {
  margin: 100px auto 0;
  padding: 120px 0 180px;
  width: 100%;
  height: auto;
  background: linear-gradient(to bottom right, rgba(249, 168, 37, 0.5), rgba(255, 193, 7, 0.5));
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
  border-bottom-left-radius: 70% 10%;
  border-bottom-right-radius: 70% 10%;
  position: relative;
}

#Liver2 ul {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  display: grid;
  gap: 50px;
  z-index: 2;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}

#Liver2 h3 {
  margin-bottom: 50px;
  text-align: center;
}

#Liver2 li div {
  max-width: 1000px;
  width: 100%;
  background: #fff;
  border-radius: 30px;
  padding: 30px;
  font-size: 40px;
  line-height: 1.7;
}

#Liver2 li div span {
  color: #fff;
}


#Liver2 li div .teex_bg_o {
  background: #FF5B1A;
  padding: 0px 10px;
}

#Liver2 li div .teex_bg_r {
  background: #FE2C55;
  padding: 0px 10px;
}

#Liver2 li div .teex_bg_g {
  background: #28BFBB;
  padding: 0px 10px;
}

#Liver2 .bg_img01 {
  position: absolute;
  top: 10%;
  left: 2%;
  animation: bg_float 2s ease-in-out infinite;
  z-index: 1;
}

#Liver2 .bg_img02 {
  position: absolute;
  top: 50%;
  left: 2%;
  animation: bg_float 3s ease-in-out infinite;
  z-index: 1;
}

#Liver2 .bg_img03 {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 40px;
  animation: bg_float 2.5s ease-in-out infinite;
  z-index: 1;
}

#Liver2 .bg_img04 {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 50px;
  animation: bg_float 2.5s ease-in-out infinite;
  z-index: 1;
}

#Liver2 .bg_img05 {
  position: absolute;
  top: 25%;
  right: 40%;
  animation: bg_float 4s ease-in-out infinite;
  z-index: 1;
}

#Liver2 .bg_img06 {
  position: absolute;
  top: 50%;
  right: 10%;
  animation: bg_float 3s ease-in-out infinite;
  width: 45px;
  z-index: 1;
}

#Liver2 .bg_img07 {
  position: absolute;
  top: 20%;
  right: 5%;
  animation: bg_float 3s ease-in-out infinite;
  width: 70px;
  z-index: 1;
}

#Liver2 .bg_img08 {
  position: absolute;
  bottom: 3%;
  right: 7%;
  animation: bg_float 3s ease-in-out infinite;
  z-index: 1;
}

.Liver2_img {
  margin: -15vh auto 0;
}


@media (max-width: 1080px) {
  #Liver2 article {
    margin: 70px auto 0;
    padding: 60px 0 140px;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%);
    position: relative;
  }

  #Liver2 ul {
    gap: 30px;
    font-size: 16px;
    text-align: left;
    width: 90%;
  }

  #Liver2 h3 {
    margin-bottom: 30px;
  }

  #Liver2 li div {
    padding: 20px;
    font-size: 34px;
    line-height: 1.7;
    text-align: center;
    width: 100%;
  }

  #Liver2 li div span {
    color: #fff;
  }

  #Liver2 li div .teex_bg_o {
    background: #FF5B1A;
    padding: 0px 10px;
  }

  #Liver2 li div .teex_bg_r {
    background: #FE2C55;
    padding: 0px 10px;
  }

  #Liver2 li div .teex_bg_g {
    background: #28BFBB;
    padding: 0px 10px;
  }

  #Liver2 .bg_img01 {
    position: absolute;
    top: 10%;
    left: 2%;
    animation: bg_float 2s ease-in-out infinite;
    z-index: 1;
  }

  #Liver2 .bg_img02 {
    position: absolute;
    top: 50%;
    left: 2%;
    animation: bg_float 3s ease-in-out infinite;
    z-index: 1;
  }

  #Liver2 .bg_img03 {
    position: absolute;
    bottom: 15%;
    left: 5%;
    width: 40px;
    animation: bg_float 2.5s ease-in-out infinite;
    z-index: 1;
  }

  #Liver2 .bg_img04 {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 50px;
    animation: bg_float 2.5s ease-in-out infinite;
    z-index: 1;
  }

  #Liver2 .bg_img05 {
    position: absolute;
    top: 25%;
    right: 40%;
    animation: bg_float 4s ease-in-out infinite;
    z-index: 1;
  }

  #Liver2 .bg_img06 {
    position: absolute;
    top: 50%;
    right: 10%;
    animation: bg_float 3s ease-in-out infinite;
    width: 45px;
    z-index: 1;
  }

  #Liver2 .bg_img07 {
    position: absolute;
    top: 20%;
    right: 5%;
    animation: bg_float 3s ease-in-out infinite;
    width: 70px;
    z-index: 1;
  }

  #Liver2 .bg_img08 {
    position: absolute;
    bottom: 3%;
    right: 7%;
    animation: bg_float 3s ease-in-out infinite;
    z-index: 1;
  }

  .Liver2_img {
    margin: -12vh auto 0;
    width: 90%;
  }
}


/*f_wrap
---------------------------------------------------------------------------*/
.f_wrap {
  position: relative;
}

.f_wrap .bg_img01 {
  position: absolute;
  top: 50%;
  left: 20%;
  animation: bg_float 3s ease-in-out infinite;
}

.f_wrap .bg_img02 {
  position: absolute;
  top: 45%;
  right: 10%;
  animation: bg_float 3s ease-in-out infinite;
}

.f_wrap .bg_img03 {
  position: absolute;
  bottom: 10%;
  left: 10%;
  animation: bg_float 3s ease-in-out infinite;
}

.f_wrap .bg_img04 {
  position: absolute;
  bottom: 11%;
  right: 15%;
  animation: bg_float 3s ease-in-out infinite;
}

/*Flow
---------------------------------------------------------------------------*/
#Flow {
  margin: 0px auto 150px;
  width: 100%;
  position: relative;
  z-index: 2;
}

#Flow .bg_line_l img.aos-animate {
  position: absolute;
  top: 0;
  left: 0;
  animation: animation_border 1.5s linear forwards;
}

#Flow .bg_line_r img.aos-animate {
  position: absolute;
  top: 0;
  right: 0;
  animation: animation_border 1.5s linear forwards;
}

#Flow article {
  max-width: 1000px;
  width: 90%;
  margin: auto;
  z-index: 2;
  position: relative;
}

#Flow article ul {
  display: flex;
  gap: 50px;
  font-size: 14px;
  margin-top: 50px;
  justify-content: center;
}

#Flow ul li {
  width: 250px;
  line-height: 1.8;
}

#Flow ul li span {
  display: block;
  font-size: 30px;
  line-height: 1;
}

#Flow ul li strong {
  display: inline-block;
  font-size: 45px;
  font-weight: 800;
  line-height: 0.8;
}

#Flow ul li div {
  margin-top: 10px;
}

#Flow ul li h4 {
  font-weight: 800;
  font-size: 16px;
  text-align: center;
}

#Flow ul li img {
  width: auto;
  /* 必要なら調整 */
  height: 250px;
  /* 任意の高さに統一 */
}

@media (max-width: 1080px) {

  /* ここで全ての大きさ制御 */
  .bg_line_l img.aos-animate,
  .bg_line_r img.aos-animate {
    width: 15vw;
  }


  #Flow {
    margin: 0px auto 70px;
  }

  #Flow article ul {
    display: flex;
    gap: 25px;
    font-size: 14px;
    margin-top: 50px;
    flex-wrap: wrap;
    align-items: center;
  }
}

/*News
---------------------------------------------------------------------------*/
#News {
  margin: 0 auto 150px;
  width: 100%;
  position: relative;
  z-index: 2;
}

#News .bg_line_l img.aos-animate {
  position: absolute;
  top: 0;
  left: 0;
  animation: animation_border 1.5s linear forwards;
}

#News .bg_line_r img.aos-animate {
  position: absolute;
  top: 0;
  right: 0;
  animation: animation_border 1.5s linear forwards;
}

#News ul {
  margin: 60px auto 0;
  max-width: 1000px;
  width: 90%;
}

#News li {
  padding: 0 0 20px 30px;
  border-bottom: 1px solid #B99F9F;
  display: flex;
  gap: 20px;
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 30px;
}

#News li:last-child {
  border: none;
  margin-bottom: 0px;
}

#News li span {
  font-weight: 400;
}

@media (max-width: 1080px) {

  #News {
    margin: 0 auto 70px;
  }

  #News ul {
    margin: 30px auto 0;
  }

  #News li {
    padding: 0 0 20px 20px;
    border-bottom: 1px solid #B99F9F;
    display: flex;
    gap: 5px;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    flex-direction: column;
  }
}


/*faq
---------------------------------------------------------------------------*/
#faq {
  margin: auto;
  width: 100%;
  position: relative;
  color: #000;
  z-index: 2;
}

#faq .bg_line_l img.aos-animate {
  position: absolute;
  top: 0;
  left: 0;
  animation: animation_border 1.5s linear forwards;
}

#faq .bg_line_r img.aos-animate {
  position: absolute;
  top: 0;
  right: 0;
  animation: animation_border 1.5s linear forwards;
}

#faq article {
  margin: 60px auto 0;
  max-width: 1000px;
  width: 90%;
}

.accordion-header {
  padding: 40px;
  margin-bottom: 40px;
  cursor: pointer;
  position: relative;
  background-color: #F0EAE2;
  text-align: left;
  font-weight: 800;
  border-radius: 20px;
}

.accordion-header:hover {
  transition: 1s;
  background: #FF5B1A;
  color: #fff;
}

.accordion-header::before,
.accordion-header::after {
  position: absolute;
  content: '';
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 12px;
  height: 2px;
  margin: auto;
  background: #FF5B1A;
}

.accordion-header:hover::before,
.accordion-header:hover::after {
  background: #fff;
}

.accordion-header::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}

.accordion-header.active::after {
  transform: rotate(0deg);
}

.accordion-header.active {
  color: #fff;
  background: #FF5B1A;
  /* margin-bottom: 20px; */
}

.accordion-header.active::before,
.accordion-header.active::after {
  background: #fff;
}

.accordion-content {
  display: none;
  color: #000;
  padding: 0px 40px 0px;
  text-align: left;
  position: relative;
}

.accordion-content p::before {
  position: absolute;
  content: "A";
  width: 50px;
  height: 50px;
  top: 0px;
  left: 0;
  color: #fff;
  font-size: 28px;
  background: #FF5B1A;
  display: grid;
  place-content: center;
  border-radius: 50%;
}

.accordion-content p {
  padding: 7px 0 40px 65px;
  position: relative;
  display: block;
}

.accordion-content a {
  font-weight: bold;
  padding: 0 5px 0
}

.accordion-header p {
  padding: 6px 0 0px 65px;
  position: relative;
  display: block;
}

.accordion-header p::before {
  position: absolute;
  content: "Q";
  width: 50px;
  height: 50px;
  top: -2px;
  left: 0;
  color: #fff;
  font-size: 28px;
  background: #FF5B1A;
  display: grid;
  place-content: center;
  border-radius: 50%;
}


@media (max-width: 1080px) {

  #faq article {
    margin: 30px auto 0;
  }

  .accordion-header {
    padding: 25px 30px 25px 20px;
    margin-bottom: 30px;
  }

  .accordion-content {
    padding: 0px 25px 0px;
  }

  .accordion-content p::before {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .accordion-content p {
    padding: 0px 0 30px 50px;
    position: relative;
    display: block;
  }

  .accordion-header p {
    padding: 6px 0 0px 50px;
  }

  .accordion-header p::before {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
  }
}


/*フッター設定
---------------------------------------------------------------------------*/
footer {
  text-align: center;
  background: #3A4048;
  color: #fff;
  height: 400px;
  padding: 80px 0 40px 0;
  margin-top: 200px;
}

footer div ul {
  width: 1200px;
  margin: auto;
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}

footer div ul li {
  text-align: left;
  gap: 10px;
  display: flex;
}

footer div ul li p {
  font-size: 20px;
  font-weight: 700;
}

footer div ul li:last-child {
  margin-left: auto;
}

footer menu {
  padding: 0;
}


footer menu ul {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  gap: 30px;
  width: 1200px;
  margin: 0 auto 90px;
}

footer menu ul a:hover {
  text-decoration: underline
}

footer a {
  color: #fff;
  text-decoration: none;
}

/* レスポンシブ設定 */
@media (max-width: 1260px) {
  footer div ul {
    width: 1000px;
  }

  footer menu ul {
    width: 1000px;
  }
}

@media (max-width: 1080px) {
  footer {
    height: auto;
    padding: 30px 0 30px 0;
    margin-top: 100px;
  }

  footer div ul {
    width: 90%;
  }

  footer menu ul {
    width: 100%;
  }

  footer div ul li p {
    font-size: 16px;
  }

  footer div ul li:nth-of-type(1) img {
    width: 80px;
  }

  footer menu {
    display: flex;
    width: 80%;
    margin: auto;
  }

  footer menu ul {
    gap: 30px;
    margin: 30px auto 0;
  }

  footer menu ul {
    gap: 15px;
    margin: 30px auto 45px;
    flex-direction: column;
    align-items: flex-start;
  }

  footer menu ul:nth-of-type(2) li {
    display: flex;
    gap: 15px;
    margin: 0px auto 45px;
    align-items: flex-start;
    justify-content: flex-end;
  }
}



/*その他
---------------------------------------------------------------------------*/

.c {
  text-align: center !important;
}

.ws {
  width: 95%;
  display: block;
}

.wl {
  width: 95%;
  display: block;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.text_box {
  margin: 60px auto;
}

.look {
  display: inline-block;
  padding: 0px 10px;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin: 2px 0;
  word-break: break-all;
}

.small {
  font-size: 0.6em;
  letter-spacing: normal !important;
}

.large {
  font-size: 1.8em !important;
}

.block {
  display: block !important;
}

.sh {
  display: block;
}

.d_menu {
  display: block;
}

.pc {
  display: none !important;
}

.sh2 {
  display: block;
}


.hidden {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

@media screen and (min-width:1080px) {

  /*全体の設定

    /*その他
---------------------------------------------------------------------------*/
  .ws {
    width: 48%;
    display: inline;
  }

  .sh {
    display: none;
  }

  .d_menu {
    display: none;
  }

  .sh2 {
    display: none;
  }

  .pc {
    display: flex !important;
  }
}

@media screen and (min-width:600px) {
  .sh2 {
    display: none;
  }
}


#LINE_btn {
  position: fixed;
  right: -150px;
  /* 初期状態は画面外 */
  bottom: 100px;
  transition: right 0.5s ease;
  z-index: 3;
  width: 90px;
}

#LINE_btn.show {
  right: 20px;
  /* 画面内にスライドイン */
}

#LINE_btn a {
  margin: 0;
}

#LINE_btn a img:hover {
  opacity: 1;
}


#LINE_btn a::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -200px;
  width: 220px;
  height: 93px;
  background: url('../images/line_img2.webp') no-repeat center/cover;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

#LINE_btn a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/*d_menuブロック初期設定
---------------------------------------------------------------------------*/
.d_menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 3;
  transition: opacity 1s ease, transform 1s ease;
}

.d_menu a {
  color: #fff;
  text-decoration: #fff;
}

.d_menu nav {
  margin: auto;
  background: #00c666;
  padding: 17px;
}

.d_menu nav a {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
  min-width: 255px;
  font-size: 20px;
  font-weight: 700;
}

.d_menu img {
  width: 30px;
  margin-right: 10px;
}

/* フェードアウトアニメーション */
.fade-out {
  opacity: 0;
  transform: translateY(50px);
}


/*LP
---------------------------------------------------------------------------*/
.lp_container {
  background-image: url(../images/lp/LP_bg.webp);
  background-repeat: repeat;
}

.lp_wrap {
  max-width: 650px;
  margin: auto;
}

.cv_wrap {
  position: relative;
}

.cv_btn {
  position: absolute;
  bottom: 12%;
  width: 80%;
  margin: auto;
  left: 0;
  right: 0;
}

.lp_liver {
  background-color: #E7EEB8;
  padding-bottom: 10%;
}

.lp_liver figure {
  margin-bottom: 10%;
}

.lp_liver figure:nth-of-type(1),
.lp_liver figure:nth-of-type(4) {
  margin-bottom: 0%;
}

.dokidoki {
  animation-name: dokidoki;
  /* アニメーション名の指定 */
  animation-delay: 0s;
  /* アニメーションの開始時間指定 */
  animation-duration: 3s;
  /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in-out;
  /* アニメーションの動き（徐々に早く徐々に遅く）*/
  animation-iteration-count: infinite;
  /* アニメーションをループさせる */
}

@keyframes dokidoki {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  60% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}