@charset "utf-8";
/* CSS Document */
/*ヘッダー*/
.header {
  position: fixed;  /* 位置を固定する */
  top: 0;  /* 固定する位置を指定 */
  left: 0; 
  height: 180px;
  width: 100%;
  background-color: #fff;
  z-index: 9999;
}
.header-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.header h1 {
  width: 140px;
  margin-top: 10px;
  
}
.header h1 img {
  width: 170px;
}
/*
.header nav {
  text-align: right;}
  
  

.header nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: center;
}
.header nav ul a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 1.6rem;
  color: #333333;
}*/
.gnav {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  gap: 40px;
}
.gnav > li { /*親階層のみ幅を25%にする*/
  /*width: 25%;*/
}
/*全てのリスト・リンク共通*/
.gnav li {
  list-style: none;
  position: relative;
}
.gnav li a {
  color: #333333;
  display: block;
  line-height: 2rem;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
/*子階層以降共通*/
.gnav li li {
  height: 0;
  overflow: hidden;
  transition: .5s;
}
.gnav li li a {
  border-top: 1px solid #eee;
}
.gnav li:hover > ul > li {
  height: 3rem;
  overflow: visible;
  background-color: #faddde;
  padding-top: 5px;
}
@media screen and (max-width:768px) {
  .header nav {
    display: none;
  }
  .header {
    height: 50px;
  }
  .header h1 img {
    width: 57%;
    top: -5px;
    left: 5px;
    z-index: 99999;
  }
  .header nav ul {
    display: block;
    margin-top: 30px;
  }
  .header nav ul a {
    
    text-align: left;
  }
}
/*追従タブ*/
.side1 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 0;
  top: 210px;
  width: 50px;
  height: 140px;
  color: #333333;
  background: #dee8f2;
  border-radius: 10px 0 0 10px;
  writing-mode: vertical-rl;
  z-index: 2;
  font-weight: 600;
}
.side1 a, .side2 a {
  text-decoration: none;
  color: #333333;
}
.side2 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 0;
  top: 365px;
  width: 50px;
  height: 140px;
  color: #333333;
  background: #faddde;
  border-radius: 10px 0 0 10px;
  writing-mode: vertical-rl;
  z-index: 2;
  font-weight: 600;
}
@media screen and (max-width:768px) {
  .side1 {
    display: none;
  }
  .side2 {
    display: none;
  }
}
/*メインビジュアル*/
.main {
  margin-top: 180px;
}
.section-top__image {
  background-image: url("../assets/firstaid-hero.png");
  height: 500px;
  margin-bottom: 80px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #333333;
  position: relative;
}
.section-top__image h2 {
  font-size: 3.0rem;
  position: absolute;
  text-align: left;
  top: 60px;
  padding-left: 140px;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.section-top__lead {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 2.6rem;
  line-height: 40px;
}
.section-top__lead span {
  color: #df756d;
}
.dots {
  background-image: radial-gradient(circle at center, #df756d 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: .4em; /* 縦方向の位置調整 */
}
@media screen and (max-width:768px) {
  .main {
    margin-top: 50px;
  }
  .section-top__lead {
    font-size: 2.0rem;
    line-height: 30px;
  }
  .section-top__image {
    background-image: url("../assets/firstaid-top_mobile.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 150px;
  }
  .section-top__image h2 {
    display: none;
  }
  .sp-only {
    display: block;
  }
  
}
@media screen and (min-width:769px) {
  .sp-only {
    display: none;
  }
}
/*ごあいさつ*/
.section-greeting {
  text-align: left;
  position: relative;
  padding: 30px 0;
  background-color: #f1eee6;
}
.wave {
  position: absolute;
  height: 70px;
  width: 100%;
  background: #fff;
  top: 0;
}
.wave::before, .wave::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50% 100%;
}
.wave::before {
  width: 55%;
  height: 100%;
  background-color: #fff;
  right: -1.5%;
  top: 40%;
}
.wave::after {
  width: 55%;
  height: 109%;
  background-color: #f1eee6;
  left: -1.5%;
  top: 60%;
}
.section-greeting__content-wrapper {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
}
.section-greeting h4 {
  margin: 30px 0px 30px 0;
}
.section-greeting__content-wrapper__text {
  width: 45%;
  margin: 30px 30px 30px 0;
  z-index: 2;
}
.section-greeting__content-wrapper__text span {
  color: #df756d;
}
.section-greeting__content-wrapper__image {
  width: 40%;
  z-index: 2;
}
.section-greeting__content-wrapper__image img {
  width: 100%;
  align-items: flex-end;
  padding-top: 168px;
}
.section-greeting {
  background-image: url("../assets/circle_white1.png");
  background-repeat: no-repeat;
  background-position: 95% 95%;
}
.section-target {
  background-color: #f1eee6;
  padding: 0 180px 60px;
}
.section-target__title__box {
  padding: 10px;
  border-radius: 15px 15px 0 0;
  background-color: #fff;
  position: absolute;
  top: -40px;
  left: 15px;
  display: block;
  width: 30%;
}
.section-target__box {
  height: 270px;
  width: 780px;
  padding: 30px 60px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
}
.section-target__content-wrapper {
  display: flex;
}
.section-target ul li {
  padding: 5px 10px;
  list-style: none;
  text-align: left;
}
.section-target ul li:before {
  content: '●';
  color: #faddde;
  padding-right: 10px;
}
.section-target p {
  padding: 20px 0;
  text-align: left;
}
@media screen and (max-width:768px) {
  .section-greeting {
    background-size: 50%;
    background-position: 10% 90%;
  }
  .section-greeting__content-wrapper {
    display: block;
  }
  .section-greeting__content-wrapper__text {
    width: 100%;
    padding: 30px;
  }
  .section-greeting__content-wrapper__image {
    padding-top: 0;
    width: 85%;
    margin-left: 8%;
  }
  .section-greeting__content-wrapper__image img {
    padding-top: 0;
  }
  .section-target__title__box {
    width: 240px;
    left: 50%;
    transform: translateX(-50%);
  }
  .section-target__box {
    height: 570px;
    width: 315px;
    padding: 30px;
  }
  .section-target {
    padding: 30px;
  }
  .section-target__content-wrapper {
    display: block;
  }
}
/*フッター*/
.footer {
  width: 100%;
  background-color: #f2f2f2;
}
.footer-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.footer nav {
  text-align: right;
}
.site-map__main-links {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
}
.site-map__main-links a {
  display: block;
  padding: 30px 17px;
  text-decoration: none;
  font-size: 1.6rem;
  color: #333333;
}
.site-map__sns-links {
  text-align: center;
  display: flex;
  justify-content: center;
}
.site-map__sns-links li {
  margin: 0px 20px 20px 20px;
}
@media screen and (max-width: 768px) {
  .site-map__main-links {
    display: block;
  }
  .site-map__main-links a {
    padding: 10px 30px;
  }
  .site-map__sns-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
  }
  .site-map__sns-links li {
    margin: 0 20px;
  }
  .site-map__sns-links li a {
    padding: 0 0;
  }
  .footer-content-wrapper {
    padding: 30px;
  }
}
@media screen and (min-width: 769px) {
  #sp-fixed-menu {
    display: none;
  }
}