@charset "utf-8";
/* common */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top:160px;
  scroll-behavior: smooth;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

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

body {
  font-family: sans-serif;
  color: #333339;
  line-height: 1;
  background-color: #f5f3f3;
}

img {
  max-width: 100%;
}

strong{
  font-weight: 600;
}

address{
  font-style: normal;
}


/*style*/
h1{
    font-size: 3.6rem;
    line-height: 2.2;
  }

  h2{
    font-size: 2.4rem;
    line-height: 2.2;
  } 

  h3{
    font-size: 2.2rem;
    line-height: 2.2;
  }

  h4{
    font-size: 2.0rem;
    line-height: 2.2;
  }

  p{
    font-size: 1.6rem;
    line-height: 2.2;
    letter-spacing: 0.08em;
  }

  ul, ol, li{
    font-size: 1.6rem;
    line-height: 2.2;
    letter-spacing: 0.08em;
    list-style: none;
    padding-left: 0;
  }

  strong{
    font-weight: 600;
  }

  address{
    font-style: normal;
    line-height: 2.2;
  }

/* ヘッダー */
header{
  position: fixed;
  z-index: 100;
}

.hamburger-menu, .mobile_vew{
    display: none;
  }

  header.header {
    width: 100%;  
    background-color: #f5f3f3;
  }
  
  .header-container{
    display: flex;
    max-width: 1280px;
    height: 140px;
    margin: 0 auto;
    padding:30px 0 10px;    
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

  .logo {
    display: block;
    margin-right: 20px;
    width: 40%;
  }

  .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }


  .header-tel{
    display: block;
    width: 270px;
    height: 68px;
    margin: 0 10px 10px 80px;
    padding:22px 0 10px;
    color: #6b1b7e;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    border: solid 1px #fff;
    outline: solid 5px #fff1ac;
    background-color: #fff1ac;
    border-radius: 4px;
  }

  .header-contact{
    display: block;
    width: 270px;
    height: 68px;
    margin: 0 10px 10px 40px;
    padding:22px 0 10px;
    color: #6b1b7e;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    border: solid 1px #fff;
    outline: solid 5px #fff1ac;
    background-color: #fff1ac;
    border-radius: 4px;
  }

  a:hover .header-contact{
    transition: 0.2s;
    transform: translateY(-3px);
    box-shadow: 5px 5px 10px #5f5d5f;
  }

  header .header-container b{
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    font-weight: 500;
  }

header nav{
  margin-top: 20px;
  background-color:#f5f3f3;
}

/* ナビゲーションメニュー sart*/
.nav-menu {
  width: 100%;
  background-color:#f5f3f3; /* メニューの背景色 */
  color: #333; /* メニューテキストの色 */
}

.menu-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center; /* メニューアイテムを中央揃えに */
}
.menu-item {
  width: 25%;
  border-left: 1px solid #cac9ca; /* メニューアイテムの左ボーダー */
  position: relative;
}
  .menu-item:last-child {
    border-right: 1px solid #cac9ca; /* 最後のメニューアイテムの右ボーダー */
  }

/* メニューアイテムのホバースタイル */
.menu-item:hover .drop-menu-list {
  opacity: 1; /* 不透明度を最大に */
  transition: opacity .3s, visibility .3s; /* アニメーション設定 */
  visibility: visible; /* 下層メニューを表示 */
}

.menu-item a {
  align-items: center;
  color: #222; /* メニューアイテム内のリンクテキストの色 */
  display: flex;
  height: 70px;
  font-size: 2rem;
  justify-content: center;
  text-decoration: none; /* リンクの下線を非表示 */
}

.menu-item a:hover {
  color: #242323;
  font-weight: 700;
}

/* ドロップダウンメニュー */
.drop-menu {
  position: relative;
}

.drop-menu-list {
  background-color: #f5f3f3; /* ドロップダウンメニューの背景色 */
  left: 0;
  opacity: 0; /* 不透明度を最小に */
  position: absolute;
  top: 100%;
  transition: opacity .3s, visibility .3s; /* アニメーション設定 */
  visibility: hidden; /* 下層メニューを非表示 */
  width: 100%;
  z-index: 1;
  font-weight: 500;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0 1px 0 #FFF,  0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}

  .drop-menu-list a{
    font-size: 1.8rem;
  }

  .drop-menu-list a:hover{
    width: 100%;
    color: #242323;
    /*background-color: #623685;*/
    text-shadow:none;
  }
/* ナビゲーションメニュー end*/


/* キービジュアル */
.main-visual{
  padding-top: 250px;
  display:flex;
  width: 100%;
}


.mob-br{
  display: none;
}

/* main */
main{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main article{
    display: block;
    width: 100%;
    margin: 0 auto;
}

main article div, main article section{
    max-width: 1280px;
    padding:0;
    margin: 0 auto;
}

.main-container{
  margin-top: 60px;
  padding: 4rem;
}

.container-box{
  padding: 4rem 2rem;
}

.container-box p{
  line-height: 3;
}

.white-radius{
  background-color:#fff;
  border-radius: 10px;
  box-shadow: 4px 0px 15px 0px rgba(0, 0, 0, 0.22);
}
  .white-radius{
    padding-bottom: 80px;
  }

#link-banner{
  margin: 120px auto;
  padding:80px 10px;
}

/*img-01.js*/
.img-wrap {
  opacity: 1;
}

.img-animation {
  animation: img-opacity 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow: hidden;
  position: relative;
}

.img-animation::before {
  animation: img-animation 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #ffffff00;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

/* カードレイアウト */
.container {
  width: 100%;
  margin: 60px 0 ;
}

.box {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 1000px;
  margin: 0 auto;
  gap:30px 20px;
}

.acard {
  width: 32%;
  min-height: 280px;
}

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

  .card .title {
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
    color: #333;
}

/* カード内容 */
.card {
  margin: 0;
  padding: 0;  
  display: flex;
  flex-direction: column;
  min-height: 200px;
  background: #fff;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

  .card .image {
    margin: 0;
    padding: 0;
    width: 100%;
    max-height: 167px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }

  .card .title {
    padding: 2rem 1rem;
  }

  .card:hover{
    background-color: #fff1ac;/*#6a1b7e*/
    transition: all .3s;
    box-shadow: 5px 5px 15px #888888;/*#9904be33*/
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  
  .card:hover .title{
    color: #474747;/*#fff*/
    font-weight: 600;
    transition: all .3s;
  }

main h1{
  font-size: 2.4rem;
}

main h2{
  height: 60px;
  padding-left: 10px;
  margin-bottom: 20px;
	font-size: 2.8rem;
	border-bottom: 1px solid #6a1b7e;
  }

  .main-container h3{
    height: 38px;
    margin: 40px 40px 20px;
    padding-left: 10px;
    padding-bottom: 0.2rem;
    font-size: 2.2rem;
    letter-spacing: 0.2rem;
    border-bottom: 1px solid #6a1b7e;
    }
  

main p{
  margin: 2rem 4rem;
}

.main-txt01{
  margin: 0 13rem 5rem;
  line-height: 1.8;
}

.background01{
  background: linear-gradient(transparent 70%, #ff838b9f 60%);
}

.background02{
  background: linear-gradient(transparent 70%, #83a4ff9f 60%);
}

.ul-style01{
  max-width: 90%;
  margin: 40px auto;
  position: relative;
  padding: 2rem 3rem;
  border: 1px solid #6a1b7e77;
  counter-reset: li;
}

  .ul-style01 > div {
    position: absolute;
    top: -1em;
    left: 1em;
    padding: 0 .5em;
    background-color: #fff;
    font-size: 2.4rem;
    color: #6a1b7e;
    font-weight: 600;
    font-family: serif;
  }

  .ul-style01 ol{
    display: flex;
    align-items:baseline;
    margin-bottom: 1rem;
    padding: .1em .3em ;
    list-style-type: none;
  }

  .ul-style01 li{
    display: flex;
    align-items:baseline;
    margin: 2rem 0 2.5rem;
    padding: .1em .2em ;
  }

  .ul-style01 li::before {
    display: inline-block;
    min-width: 1.7em;
    margin-right: 8px;
    border-radius: 50%;
    background-color: #713f7e;
    color: #fff;
    font-weight: bold;
    font-size: .75em;
    line-height: 1.7em;
    text-align: center;
    content: counter(li);
    counter-increment: li;
  }

  .ul-style01 p{
    margin: 0 0 2rem;
    line-height: 2.5;
  }

/* footer */
footer{
  width: 100%;
  height: auto;
}

.footer {
    padding: 3rem 1rem 3rem;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 81%, rgba(112, 111, 112, 0.384));
    color: #555;
    z-index: 999;

  }
  
  .footer-container {
    display: flex;
    max-width: 1280px;
    height: auto;
    margin: 0 auto 5rem;
    padding: 0 ;
    justify-content:space-between;
    align-items:flex-end;
    gap: 10px;
  }
  
  .footer-logo {
    width: 400px;
  }

  .add{
    max-width: 33%;
    font-weight: 500;

  }

  .mark{
    max-width: 33%;
  }
    
    .footer-logo img {
      margin: 0;
      padding: 0;
      width: 100%;
      object-fit:cover;
    }
    
    footer address, .add p{
      font-size: 1.6rem;
      text-align: left;
    }

  .mark{
    display: block;
    padding: 8rem 2rem 0.5rem 1rem;
  }
    .mark img{
      margin: 10px 0 10px 10px;
    }
  
  .copyright {
    display: block;
    max-width: 100%;
    margin: 8rem auto 2rem;
    text-align: center;
  }
  
