@charset "UTF-8";
*,
::after,
::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ol,
ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    font-family: sans-serif;
    font-size: 16px;
    color: #595250;
    line-height: 1;
    background-color: #ffffff;
    font-family: "IBM Plex Sans JP", sans-serif;
    font-weight: 200;
    font-style: normal;
}

img {
    vertical-align: top;
    vertical-align: bottom;
}
/* ここからメイン */
.bag {
    background-color: #edeae3;
}
.flexboxs {
    max-width: 1200px;
    padding: 100px 60px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    justify-content: space-around;
    align-items: center;
}
.title-access h2 {
    font-size: 32px;
    letter-spacing: 1.5px;
    padding-bottom: 30px;
}
/* .flexbox P {
    flex-shrink: 0;
    width: 45%;
} */
.flexboxs img {
    width: 45%;
}
.list {
    display: flex;
    font-size: 16px;
    letter-spacing: 1.5px;
}
.list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .list dt, .list dd {
    box-sizing: border-box;
  }
  .list dt {
    display: flex;
    align-items: center;
    width: 25%;
    padding: 10px;
    /* background-color: #AEDFBE;
    border-bottom: 1px solid #999; */
  }
  .list dt:last-of-type,
  .list dd:last-of-type {
    border: none;
  }
  .list dd {
    display: flex;
    align-items: center;
    width: 70%;
    margin-left: 0;
    padding: 10px;
    /* background-color: #fff;
    border-bottom: 1px solid #999; */
  }
  .dd-br{
    line-height: 2;
  }
  /* お問合せボタン */

  .button-menu a{
    display: inline-block;
    width: 75%;
    border-radius: 25px;
    padding: 30px;
    color: #fff;
    letter-spacing: 2px;
    background-image: linear-gradient(to top,#fac4ba,#ffa5a5);
    text-align: center;
    font-weight: 400;
    margin-top: 15px;
}
.button-menu a::after{
    content: "";
    display: inline-block;
    left: 4px;
    box-sizing: border-box;
    width: 4px;
    height: 4px;
    border: 8px solid transparent;
    border-left: 15px solid #fff;
    margin-left: 30px;
}



.button-menu a:hover {
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
  }

  iframe {
    width: 100%;
  }

  /* アニメーションjs */
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 30px; height: 30px;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;

  /* ペールカラーグラデーション */
  background: linear-gradient(135deg, 
              #f8e6e0, /* ペールピンク */
              #e0f0f8  /* ペールブルー */
            );
  box-shadow: 0 0 8px rgba(224, 240, 248, 0.7); /* ふんわり光らせる */
}
/* ここからスマホサイズ */
@media(max-width:980px){
  .flexboxs{
    display: block;
    text-align: center;
  }
  .title-access h2{
    padding: 30px 0 30px 0;
  }
  .flexboxs img{
    width: 70%;
  }
  .list{
    max-width: 500px;
    margin: 0 auto;
  }
}
/* ここからスマホ575px */
@media(max-width:570px){
  .flexboxs img {
    width: 95%;
  }
  .list{
    max-width: 450px;
    margin: 0 auto;
  }
}
