@charset "UTF-8";
body {
  color: #6E564E;
  font-family: "Yusei Magic", "Noto Sans JP", sans-serif;
  line-height: 1.5;
  position: relative;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  body{
    font-size: 14px;
  }
}

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

a {
  text-decoration: none;
  color: #6E564E;
}

a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: initial;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

img {
  width: 100%;
}

.pan{
  margin: 1rem 0 !important;
}
.pan .container{
  margin: 0 auto;
}
.pan ul{
  display: flex;
  gap: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 1079px) {
  .pan ul{
    gap: 0.5rem 1.5rem;
  }
}
.pan ul li:first-child,
.single .pan ul li:nth-child(2),
.category .pan ul li:nth-child(2){
  position: relative;
}
.pan ul li:first-child a{
  text-decoration: underline;
  min-width: 40px;
  display: inline-block;
}
.pan ul li:first-child:before,
.single .pan ul li:nth-child(2):before,
.category .pan ul li:nth-child(2):before{
  position: absolute;
  content: "";
  background: url(./images/button.png) no-repeat;
  background-size: contain;
  width: 10px;
  height: 14px;
  right: -1.8rem;
  top: 53%;
  transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
@media screen and (max-width: 1079px) {
  .pan ul li:first-child:before,
  .single .pan ul li:nth-child(2):before,
  .category .pan ul li:nth-child(2):before{
    width: 8px;
    height: 10px;
    right: -1rem;
  }
}
.single .pan ul li:nth-child(3){
  display: none;
}
.category .pan ul li:last-child{
  font-size: 0;
}
.category .pan ul li:last-child span{
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .category .pan ul li:last-child span{
    font-size: 14px;
  }
}
.container {
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .container {
    width: 90%;
  }
}
.section-title {
  text-align: center;
  margin: 0 auto;
  width: fit-content;
  font-size: 2rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 14px;
    margin-bottom: 1rem;
  }
}
.section-title img {
  width: 70px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .section-title img {
    width: 40px;
  }
}
.section-title p {
  margin: 2.5rem 0 0;
  text-align: center;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .section-title p {
    font-size: 12px;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
}

section {
  margin: 10rem 0;
}
@media screen and (max-width: 767px) {
  section {
    margin: 2rem 0;
  }
}

.button {
  margin: 3rem auto 0;
  width: fit-content;
}
.button a {
  background-color: #fff;
  font-size: 1.5rem;
  position: relative;
  padding: 1.5rem 2rem;
  border: 3px solid #6E564E;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.button a:hover {
  background-color: #e7e7e7;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .button a {
    font-size: 14px;
    padding: 1rem 2rem;
    border-radius: 10px;
    border: 2px solid #6E564E;
  }
}
.button a img {
  width: 16px;
  height: 21px;
}
@media screen and (max-width: 767px) {
  .button a img {
    width: 11px;
    height: 15px;
  }
}

.button2 {
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  background-color: #548F6B;
  margin: 2rem auto;
  width: fit-content;
}
.button2:hover {
  opacity: 0.7;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .button2 {
    margin: 1.5rem auto;
  }
}
.button2 a {
  color: #fff;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .button2 a {
    font-size: 14px;
  }
}

/*header*/
header {
  position: fixed;
  width: 100%;
  z-index: 20;
  top: 0;
  background: #fff;
  padding: 10px 0;
}

.header-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: #fff;
}
@media screen and (max-width: 1079px) {
  .header-contents {
    padding: 0;
  }
}
@media screen and (max-width: 300px) {
  .header-contents {
    gap: 0;
  }
}

.header-left img {
  width: 230px;
}
@media screen and (max-width: 767px) {
  .header-left img {
    width: 136px;
  }
}
@media screen and (max-width: 300px) {
  .header-left img {
    width: 95px;
  }
}

.header-right ul {
  padding: 0.8rem 0;
  display: flex;
  font-weight: 500;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header-right ul {
    font-size: max(12px, 3vw);
  }
}
@media screen and (max-width: 300px) {
  .header-right ul {
    font-size: max(10px, 3vw);
  }
}

.header-right ul.pc-header img {
  width: 35px;
  height: 35px;
  margin: 0 auto 0.2rem;
}
@media screen and (max-width: 767px) {
  .header-right ul.pc-header {
    display: none;
  }
}
.header-right ul.pc-header li a:hover {
  opacity: 0.3;
  transition: 0.3s;
}
.header-right ul.pc-header li {
  border-left: 1px dashed #676767;
}
.header-right ul.pc-header li a {
  height: fit-content;
  display: block;
  width: 130px;
  text-align: center;
}
@media screen and (max-width: 1079px) {
  .header-right ul.pc-header li a {
    width: 100px;
  }
}
.header-right ul.pc-header li:first-child{
  border: none;
}
.header-right ul.pc-header li:nth-child(2) {
  margin-right: 1rem;
}
@media screen and (max-width: 1079px) {
  .header-right ul.pc-header li:nth-child(2) {
    margin-right: 0.5rem;
  }
}
.header-right ul.pc-header li:nth-child(2) {
  border: none;
}
@media screen and (max-width: 1079px) {
  .header-right ul.pc-header li:nth-child(2) a {
    width: 120px;
  }
}
.header-right ul.pc-header li:nth-child(5) {
  border-right: 1px dashed #676767;
}
.header-right ul.pc-header li:last-child a:hover {
  opacity: 1;
  transition: 0s;
}
.header-right ul.pc-header .tb-list {
  display: none;
}
@media screen and (max-width: 1079px) {
  .header-right ul.pc-header .tb-list {
    display: block;
  }
  .header-right ul.pc-header li:nth-child(7) {
    border-right: 1px dashed #676767;
  }
}
@media screen and (max-width: 1079px) {
  .header-right ul.pc-header .pc-list {
    display: none;
  }
}

a.contact {
  padding: 4px 32px;
  background-color: #FF884B;
  color: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 10px;
  position: relative;
  display: inline-block;
}
a.contact:hover {
  box-shadow: none;
  transform: scale(0.99, 0.99) translateY(2px);
}

.sp-header {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-header {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}
@media screen and (max-width: 300px) {
  .sp-header {
    gap: 0;
  }
}
.sp-header ul {
  gap: 0.5rem;
}
.sp-header ul li {
  text-align: center;
}
.sp-header ul img {
  width: 25px;
  margin: 0 auto;
}

.hamburger-menu {
  display: none;
}
.hamburger-menu input {
  display: none;
}
@media screen and (max-width: 767px) {
  .hamburger-menu {
    display: block;
  }
}

.menu-btn {
  display: flex;
  height: 40px;
  width: 46px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  border-radius: 7px;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 1px;
  width: 32px;
  background-color: #FF8F6C;
  position: absolute;
}

.menu-btn span:before {
  bottom: 8px;
}

.menu-btn span:after {
  top: 8px;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: -100%;
  left: 0;
  z-index: -1;
  background-color: #fff;
  transition: all 0.5s;
}
.menu-content ul {
  display: block;
  padding: 1rem;
}
.menu-content ul li {
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 1rem;
  color: #6E564E;
  padding: 1rem;
}
.menu-content ul .sp-contact {
  border: none;
}
.menu-content ul .sp-contact a {
  background-color: #ff884b;
  border-radius: 25px;
  color: #fff;
  display: block;
  margin: 0 0 10px;
  padding: 15px 15px 12px;
  text-align: center;
  width: 100%;
  margin-top: 2rem;
}

#menu-btn-check:checked ~ .menu-content {
  top: 58px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

/*line*/
.line {
  position: fixed;
  bottom: -2rem;
  right: 3rem;
  height: 450px;
  width: 160px;
  background: url(./images/line-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 10;
}
@media screen and (max-width: 1499px) {
  .line {
    right: 1rem;
    height: 400px;
    width: 145px;
  }
}
@media screen and (max-width: 767px) {
  .line {
    display: none;
  }
}
.line .line-contents {
  width: 85%;
  margin: 0 auto;
  font-size: 1rem;
  text-align: center;
  padding: 2rem 0;
  line-height: 1.2;
}
@media screen and (max-width: 1499px) {
  .line .line-contents {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .line .line-contents {
    font-size: 12px;
    width: 95px;
    line-height: 1;
    padding: 0rem 0 2rem;
    margin-bottom: 1rem;
  }
}
.line img {
  width: 70px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .line img {
    width: 50px;
    margin: 0.5rem auto;
  }
}
.line .line-bottom img {
  width: 75px;
  margin-top: 0.5rem;
}

.line-top a {
  width: fit-content;
  display: inline-block;
  margin-top: 0.5rem;
}
.line-top a:hover {
  transition: 0.3s;
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .line .line-bottom {
    display: none;
  }
}
.line .sp-line-bottom {
  display: none;
}
@media screen and (max-width: 767px) {
  .line .sp-line-bottom {
    display: block;
    margin-top: 0.3rem;
  }
  .line .sp-line-bottom a {
    display: inline-block;
    color: #FF884B;
    padding: 0.5rem 0.25rem;
    border: 1px solid #FF8F6C;
    box-shadow: 0px 4px 20px 0 rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    background-color: #fff;
  }
  .line-top a {
    margin-top: 0;
  }
}

.lGuide.line {
  z-index: 90;
  position: fixed;
  bottom: 0;
  right: 5px;
  width: 120px;
  transform: translateY(calc(100% - 55px));
  transition: transform 0.42s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  background: url(./images/sp-cat.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: none;
  height: auto;
}
@media screen and (max-width: 767px) {
  .lGuide.line {
    display: block;
  }
}

.lGuideBtn {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  font-size: 12px;
  border: none;
  background: transparent;
  gap: 0.3rem;
  margin-top: 0.5rem;
}

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

.lGuideBtn__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  transition: transform 0.42s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.lGuideBtn__arrow:before {
  position: absolute;
  content: "";
  background: url(./images/sp-cat-line.png) no-repeat;
  width: 11px;
  height: 8px;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: transform 0.42s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.lGuide.is-open {
  transform: translateY(20px);
}
.lGuide.is-open .lGuideBtn__arrow:before {
  background: url(./images/sp-cat-line2.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: 55%;
}

/*fv*/
.fv {
  position: relative;
  margin-top: 13rem;
}
@media screen and (max-width: 1499px) {
  .fv {
    margin-top: 11rem;
  }
}
@media screen and (max-width: 1499px) and (min-height: 1023px) {
  .fv {
    margin-top: 13rem;
  }
}
@media screen and (max-width: 1079px) {
  .fv {
    margin-top: 11rem;
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .fv {
    margin-top: 5rem;
    margin-bottom: 2rem;
  }
}

.fv-bg {
  background: url(./images/fv-bg2.png);
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-position: top;
}
@media screen and (max-width: 1499px) and (min-height: 1023px) {
  .fv-bg {
    height: 75vh;
  }
}
@media screen and (max-width: 767px) {
  .fv-bg {
    height: calc(100vh - 100px);
    margin-top: 6rem;
  }
  .fv-bg:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 110%;
    background: url(./images/sp-fv-bg.png);
    z-index: -1;
    top: -0.5rem;
    background-size: cover;
  }
}

.fv-text {
  position: absolute;
  top: 30%;
  left: 20%;
  transform: translate(-30%, -20%);
  -webkit-transform: translate(-30%, -20%);
  -ms-transform: translate(-30%, -20%);
}
@media screen and (max-width: 767px) {
  .fv-text {
    left: 15%;
  }
}
.fv-text h2 {
  font-size: min(3rem, 3.5vw);
  color: #ADA09D;
}
@media screen and (max-width: 767px) {
  .fv-text h2 {
    font-size: max(21px, 5vw);
  }
}
.fv-text h2:last-child {
  padding-left: 10rem;
}
@media screen and (max-width: 767px) {
  .fv-text h2:last-child {
    padding-left: 2rem;
  }
}

.fv-news {
  position: absolute;
  top: 55%;
  font-size: min(20px, 2vw);
  left: max(-30px, -4vw);
  width: min(650px, 60vw);
}
@media screen and (max-width: 767px) {
  .fv-news {
    top: 60%;
    font-size: max(1rem, 3vw);
    width: max(350px, 5vw);
    left: max(-40px, -5vw);
  }
}
@media screen and (max-width: 500px) {
  .fv-news {
    left: max(-40px, -6vw);
  }
}
@media screen and (max-width: 300px) {
  .fv-news {
    width: max(280px, 5vw);
  }
}
.fv-news img {
  width: 33px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .fv-news img {
    width: 25px;
  }
}

.fv-news-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.5rem;
  margin-left: 5rem;
}
@media screen and (max-width: 767px) {
  .fv-news-title {
    margin-left: 2rem;
  }
}

.fv-news-texts a {
  display: block;
  background-color: #fff;
  border: 3px solid #FF8F6C;
  color: #6E564E;
  border-radius: 30px;
  padding: 1.5rem 5rem;
  position: relative;
}
@media screen and (max-width: 1079px) {
  .fv-news-texts a {
    padding: 1.5rem 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .fv-news-texts a {
    padding: 0.5rem 3rem;
    border-radius: 20px;
  }
}
.fv-news-texts a:before {
  background: url(./images/fv-news-arrow.png);
  content: "";
  position: absolute;
  width: 16px;
  height: 21px;
  background-size: contain;
  background-repeat: no-repeat;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .fv-news-texts a:before {
    right: 0.8rem;
  }
}
.fv-news-texts a:hover {
  background-color: #e7e7e7;
  transition: 0.3s;
}
.fv-news-texts ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .fv-news-texts ul {
    gap: 0rem;
    flex-direction: column;
    align-items: baseline;
  }
}
@media screen and (max-width: 767px) {
  .fv-news-texts ul li:first-child {
    font-size: max(0.8rem, 2.8vw);
  }
}
@media screen and (max-width: 767px) {
  .fv-news-texts li.pc-list{
    display: none;
  }
}
.fv-news-texts li.sp-list{
  display: none;
}
@media screen and (max-width: 767px) {
  .fv-news-texts li.sp-list{
    display: block;
  }
}


#wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -1rem;
  z-index: -1;
}
@media screen and (max-width: 1079px) {
  #wrapper {
    top: -1rem;
  }
}
@media screen and (max-width: 767px) {
  #wrapper {
    display: none;
  }
}

#wrapper p {
  padding: 0;
  text-align: center;
  font-size: 0;
}

.wave {
  position: relative;
  height: 33.3333333333%;
}

.wave:nth-child(1) {
  background: transparent;
}

.wave:nth-child(2) {
  background: #F8F6EF;
}

.wave:nth-child(3) {
  background: transparent;
  transform: scale(-1);
}

.wave canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

#wrap {
  position: relative;
}

#svg-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

/*service*/
.service {
  background: url(./images/top-service-bg.png);
  background-size: cover;
  background-position: bottom;
  padding: 3rem 0 15rem;
  margin: 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .service  {
    padding: 3rem 0 7rem;
  }
}
.service .container {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .service .container {
    width: 90%;
  }
}

.service-contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10rem;
  gap: 10rem 2.5rem;
}
@media screen and (max-width: 1024px) {
  .service-contents {
    gap: 8rem 2.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .service-contents {
    gap: 1rem 0;
    margin: 0;
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-content {
  box-shadow: 0px 4px 20px 0 rgba(0, 0, 0, 0.25);
  padding: 1.5rem 2rem;
  border-radius: 8px;
}
.service-content p {
  font-family: "Noto Sans JP", sans-serif;
}
.service-content h4 br{
  display: none;
}
@media screen and (max-width: 1860px) {
  .service-content {
    padding: 1.5rem;
  }
  .service-content br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .service-content {
    box-shadow: none;
    padding: 0;
  }
  .service-content p {
    display: none;
  }
  .service-content h4 br {
    display: block;
  }
}
.service-content .service-img {
  background-color: #E3A99C;
  border-radius: 100vh;
  width: 225px;
  height: 225px;
  position: relative;
  margin: -9rem auto 0rem;
}
@media screen and (max-width: 1860px) {
  .service-content .service-img {
    width: 150px;
    height: 150px;
    margin: -8rem auto 0rem;
  }
}
@media screen and (max-width: 767px) {
  .service-content .service-img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }
}
.service-content .service-img:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background: url(./images/service1.png) no-repeat;
  width: 60%;
  height: 60%;
  background-size: contain;
}
.service-content h4 {
  font-size: min(1.5rem, 2.5vw);
  margin: 1.5rem auto 1rem;
  text-align: center;
}
@media screen and (max-width: 1860px) {
  .service-content h4 {
    font-size: min(1.5rem, 1.4vw);
    margin: 1.5rem auto 0.7rem;
  }
}
@media screen and (max-width: 1499px) {
  .service-content h4 {
    font-size: min(1.5rem, 2vw);
  }
}
@media screen and (max-width: 767px) {
  .service-content h4 {
    font-size: max(14px, 3vw);
  }
}
@media screen and (max-width: 300px) {
  .service-content h4 {
    font-size: max(12px, 3vw);
  }
  .service-content h4 span{
    display: inline-block;
  }
}
.service-content:nth-child(2) .service-img {
  background-color: #D4D4D4;
}
.service-content:nth-child(2) .service-img:before {
  background: url(./images/robot.svg) no-repeat;
  background-size: contain;
}
.service-content:nth-child(3) .service-img {
  background-color: #AEDEED;
}
.service-content:nth-child(3) .service-img:before {
  background: url(./images/service2.png) no-repeat;
  background-size: contain;
}
.service-content:nth-child(4) .service-img {
  background-color: #FFE1A6;
}
.service-content:nth-child(4) .service-img:before {
  background: url(./images/service3.png) no-repeat;
  background-size: contain;
}
.service-content:nth-child(5) .service-img {
  background-color: #BBEAB0;
}
.service-content:nth-child(5) .service-img:before {
  background: url(./images/service4.png) no-repeat;
  background-size: contain;
}
.service-content:last-child .service-img {
  background-color: #EECBFF;
}
.service-content:last-child .service-img:before {
  background: url(./images/service5.png) no-repeat;
  background-size: contain;
}

/*schedule*/
.schedule {
  background: linear-gradient(to bottom, transparent 30%, transparent 70%, #fff 100%), url(./images/sche-bg.png);
  width: 100%;
  background-size: cover;
  padding: 5rem 0;
  background-position: 60%;
  position: relative;
  margin: -8rem 0 0;
}
.schedule:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.3);
  top: 0;
}
.schedule .container {
  position: relative;
  z-index: 2;
}
.schedule .section-title {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1499px) {
  .schedule .section-title {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1079px) {
  .schedule .section-title {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .schedule .section-title {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 1499px) {
  .schedule .button {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 1079px) {
  .schedule .button {
    margin-top: 2.5rem;
  }
}

.sche-contents {
  background: url(./images/sche-cat.png);
  width: 100%;
  background-size: contain;
  padding: 10rem 0 5rem;
  background-repeat: no-repeat;
  background-position: center;
  margin: 5rem auto 0;
}
@media screen and (max-width: 1079px) {
  .sche-contents {
    background: none;
    padding: 0;
  }
}

.sche-content {
  display: flex;
  align-items: stretch;
  gap: 5rem;
  justify-content: center;
}
@media screen and (max-width: 1079px) {
  .sche-content {
    flex-direction: column;
    gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .sche-content {
    gap: 0;
  }
}
.sche-content .sche-title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sche-content .sche-title.sp-title {
  display: none;
}
@media screen and (max-width: 767px) {
  .sche-content .sche-title {
    gap: 0.5rem;
  }
  .sche-content .sche-title.pc-title {
    display: none;
  }
  .sche-content .sche-title.sp-title {
    display: flex;
  }
}
.sche-content .sche-title h4 {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .sche-content .sche-title h4 {
    font-size: 14px;
  }
}
.sche-content .sche-title img {
  width: 24px;
}
@media screen and (max-width: 767px) {
  .sche-content .sche-title img {
    width: 14px;
  }
}
.sche-content .sche-texts {
  margin-top: 0.5rem;
  background-color: #F8F6EF;
  border-radius: 20px;
  text-align: center;
  padding: 1rem 2rem;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media screen and (max-width: 1079px) {
  .sche-content .sche-texts {
    width: 60%;
    margin: 0.5rem auto 0;
    max-width: 400px;
    height: 90%;
  }
}
@media screen and (max-width: 767px) {
  .sche-content .sche-texts {
    width: 70%;
    margin-top: 0;
    height: 70%;
    justify-content: center;
    max-width: 280px;
  }
}
@media screen and (max-width: 500px) {
  .sche-content .sche-texts {
    margin-top: 0.5rem;
    height: 90%;
    max-height: 120px;
  }
}
.sche-content .sche-texts h4 {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .sche-content .sche-texts h4 {
    font-size: 14px;
  }
}
.sche-content .sche-texts p {
  font-size: 20px;
}
.sche-content .sche-texts p span{
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .sche-content .sche-texts p {
    font-size: 14px;
  }
}
.sche-content .sche-texts p:last-child {
  font-size: 1rem;
  color: #FF8F6C;
}
@media screen and (max-width: 767px) {
  .sche-content .sche-texts p:last-child {
    font-size: 14px;
  }
}

.sche-right .sche-texts h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}


@media screen and (max-width: 1079px) {
  .sche-left,
  .sche-right {
    background: url(./images/sche-cat.png);
    width: 100%;
    background-size: contain;
    padding: 5rem 0;
    background-repeat: no-repeat;
    background-position: center;
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .sche-left,
  .sche-right {
    background-position: top;
    height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0 0;
  }
  .sche-right {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .sche-left,
  .sche-right {
    height: 200px;
    padding-top: 1rem;
  }
}
@media screen and (max-width: 400px){
.sche-left, .sche-right {
    height: 190px;
    padding: 2rem 0;
}
}
/*introduction*/
.slider {
  margin: 0px auto 0;
  width: 100%;
}
.slider img {
  height: 400px;
  object-fit: cover;
}
@media screen and (max-width: 1499px) {
  .slider img {
    height: 350px;
  }
}
@media screen and (max-width: 1079px) {
  .slider img {
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .slider img {
    height: 300px;
  }
}
@media screen and (max-width: 500px) {
  .slider img {
    height: 200px;
  }
}
/*footer*/
footer {
  padding: 8rem 0 0;
  background: url(./images/footer-bg.png);
  background-size: cover;
  color: #08422A;
}
@media screen and (max-width: 1079px) {
  footer {
    padding: 6rem 0 0;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding: 4rem 0 0;
  }
}

.footer-contents {
  text-align: center;
}
.footer-contents img.logo {
  height: 80px;
  object-fit: contain;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .footer-contents img.logo {
    height: 52px;
    margin-bottom: 1rem;
  }
}
.footer-contents .footer-access a {
  display: flex;
  justify-content: center;
  color: #08422A;
  border-bottom: 1px solid #08422A;
  width: fit-content;
  margin: 0 auto 1rem;
  padding: 0.5rem;
  gap: 0.5rem;
}
.footer-contents .footer-access a:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.footer-contents .footer-access a img {
  width: 31px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .footer-contents .footer-access a img {
    width: 20px;
  }
}
.footer-contents .footer-access a p {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .footer-contents .footer-access a p {
    font-size: 14px;
  }
}
.footer-contents .footer-texts {
  text-align: left;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer-contents .footer-texts {
    font-size: 14px;
  }
}
.footer-contents a.policy {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .footer-contents a.policy {
    font-size: 12px;
  }
}
.footer-contents a.policy:hover {
  opacity: 0.5;
  transition: 0.3s;
}

.footer-bottom {
  height: 40px;
  width: 100%;
  background-color: #D8F1D4;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .footer-bottom {
    height: 10px;
    margin-top: 2rem;
  }
}

/*下層ページ*/
main {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  main {
    margin-top: 6rem;
  }
}

.lower-fv {
  background: url(./images/lower-bg.png);
  width: 100%;
  height: 216px;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 !important;
}
@media screen and (max-width: 1079px) {
  .lower-fv {
    height: 150px;
  }
}
@media screen and (max-width: 767px) {
  .lower-fv {
    height: 80px;
  }
}
.lower-fv .container {
  position: relative;
  height: 100%;
}
.lower-fv h2 {
  color: #548F6B;
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .lower-fv h2 {
    font-size: 20px;
  }
}

.lower section {
  margin: 3rem 0;
}

.lower .container {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .lower .container {
    width: 90%;
  }
}

.lower h3 {
  color: #548F6B;
  font-size: min(2rem, 3vw);
  margin-bottom: 3rem;
  border-left: 3px solid #548F6B;
  padding-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .lower h3 {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

/*薬局について*/
.greeting {
  background-color: #F8F6EF;
  margin-top: 0 !important;
}
.greeting .container {
  padding: 4.5rem 0;
}
@media screen and (max-width: 767px) {
  .greeting .container {
    padding: 1rem 0;
  }
}
@media screen and (max-width: 1079px) {
  .greeting h3 {
    margin-bottom: 1rem;
  }
}
.greeting p {
  font-size: min(1.5rem,2.5vw);
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .greeting p {
    font-size: 14px;
  }
}
.greeting p.name {
  font-weight: bold;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .greeting p.name {
    margin-top: 1rem;
  }
}

.access {
  position: relative;
  padding-top: 100px !important;
  margin-top: -100px !important;
}

.access:before {
  content: "";
  position: absolute;
  background: url(./images/access-bg.png);
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  height: 100%;
  z-index: -1;
  top: 15%;
}
@media screen and (max-width: 1079px) {
  .access:before {
    top: 40%;
  }
}
@media screen and (max-width: 767px) {
  .access:before {
    top: 42%;
  }
}

.access iframe {
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 767px) {
  .access iframe {
    height: 250px;
  }
}

.table_design03 {
  border-collapse: collapse;
  width: 100%;
  margin-top: 3.5rem;
}

.table_design03 th, .table_design03 td {
  border-bottom: 1px solid #707070;
  padding: 1.5rem 2rem 1.5rem 0;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .table_design03 th, .table_design03 td {
    padding: 1rem 0;
    font-size: 14px;
  }
}

.table_design03 th {
  text-align: left;
  width: 20%;
  min-width: 90px;
  vertical-align: baseline;
  padding: 1.5rem 0 1.5rem 2rem;
}
@media screen and (max-width: 767px) {
  .table_design03 th {
    padding: 1rem 0 1rem 0.5rem;
    min-width: 80px;
  }
}
.table_design03 .map-list{
  display: flex;
  align-items: start;
}
@media screen and (max-width: 1079px) {
  .table_design03 .map-list{
    flex-direction: column;
    gap: 2rem;
  }
}
.table_design03 .map-list ul{
  width: 45%;
  min-width: 300px;
}
.table_design03 .map-list img.map{
  width: 50%;
  height: auto;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1079px) {
  .table_design03 .map-list img.map{
    width: 95%;
  }
  .table_design03 .map-list ul{
    width: 100%;
    min-width: auto;
  }
}
.table_design03 td img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.table_design03 td li {
  margin-bottom: 2rem;
}
.table_design03 td li > p {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .table_design03 td li {
    margin-bottom: 1rem;
  }
}
.table_design03 td li:last-child {
  margin-bottom: 0;
}

.access-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/*サービスについて*/
.lower-service1 .utilize{
  margin: 5rem 0 0;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .lower-service1 .utilize{
    margin: 5rem 0;
    padding-bottom: 2rem;
  }
}
body.page-id-8 footer{
  background-color: #EDFBEB;
}
@media screen and (max-width: 767px) {
  body.page-id-8 footer{
    background-color: #fff;
  }
}
.lower-service-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1079px) {
  .lower-service-content {
    justify-content: end;
    gap: 2.5rem;
  }
}
@media screen and (max-width: 900px) {
  .lower-service-content {
    flex-direction: column;
    gap: 0;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .lower-service-content {
    margin-bottom: 2rem;
  }
}

.lower-service-texts {
  width: 45%;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  padding: 3rem 5rem 3rem 6rem;
  position: relative;
}
@media screen and (max-width: 1860px) {
  .lower-service-texts br {
    display: none;
  }
}
@media screen and (max-width: 1499px) {
  .lower-service-texts {
    padding: 2rem 3rem 2rem 6rem;
  }
}
@media screen and (max-width: 1079px) {
  .lower-service-texts {
    width: 50%;
  }
}
@media screen and (max-width: 900px) {
  .lower-service-texts {
    width: 100%;
    border-radius: 0;
    padding: 1.5rem 1rem;
  }
}
.lower-service-texts p {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}
@media screen and (max-width: 767px) {
  .lower-service-texts p {
    font-size: 14px;
    margin-top: 0.3rem;
  }
}
.lower-service-texts h4 {
  color: #FF8F6C;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .lower-service-texts h4 {
    font-size: 14px;
  }
}

.lower-right {
  width: 45%;
}
@media screen and (max-width: 1079px) {
  .lower-right {
    width: 40%;
  }
}
@media screen and (max-width: 900px) {
  .lower-right {
    width: 100%;
    z-index: 0;
  }
}
.lower-right img {
  border-radius: 20px;
}
@media screen and (max-width: 900px) {
  .lower-right img {
    border-radius: 0;
  }
}

.lower-service-img {
  background-color: #E3A99C;
  border-radius: 100vh;
  width: 152px;
  height: 152px;
  position: absolute;
  left: -5rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 1079px) {
  .lower-service-img {
    width: 130px;
    height: 130px;
    left: -3.5rem;
  }
}
@media screen and (max-width: 900px) {
  .lower-service-img {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  .pc-h4 {
    display: none;
  }
}

.lower-h4 {
  display: none;
}
@media screen and (max-width: 900px) {
  .lower-h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .lower-h4 h4 {
    margin: 0;
  }
  .lower-h4 img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    padding: 5px;
    background-color: #E3A99C;
    border-radius: 100vh;
  }
}

.lower-service-img:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background: url(./images/service1.png) no-repeat;
  width: 60%;
  height: 60%;
  background-size: contain;
}

.lower-service-content:nth-child(2) .lower-service-img {
  background-color: #AEDEED;
}
.lower-service-content:nth-child(2) .lower-service-img:before {
  background: url(./images/service2.png) no-repeat;
  background-size: contain;
}
.lower-service-content:nth-child(2) .lower-h4 img {
  background-color: #AEDEED;
}
.lower-service-content:nth-child(3) .lower-service-img {
  background-color: #FFE1A6;
}
.lower-service-content:nth-child(3) .lower-service-img:before {
  background: url(./images/service3.png) no-repeat;
  background-size: contain;
}
.lower-service-content:nth-child(3) .lower-h4 img {
  background-color: #FFE1A6;
}
.lower-service-content:nth-child(4) .lower-service-img {
  background-color: #BBEAB0;
}
.lower-service-content:nth-child(4) .lower-service-img:before {
  background: url(./images/service4.png) no-repeat;
  background-size: contain;
}
.lower-service-content:nth-child(4) .lower-h4 img {
  background-color: #BBEAB0;
}
.lower-service-content:last-child .lower-service-img {
  background-color: #EECBFF;
}
.lower-service-content:last-child .lower-service-img:before {
  background: url(./images/service5.png) no-repeat;
  background-size: contain;
}
.lower-service-content:last-child .lower-h4 img {
  background-color: #EECBFF;
}

.utilize {
  background-color: #EDFBEB;
  padding: 2rem 0;
}
@media screen and (max-width: 1079px) {
  .utilize .pc-title {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .utilize .pc-title {
    display: none;
  }
}
.utilize .sp-title {
  display: none;
}
@media screen and (max-width: 767px) {
  .utilize .sp-title {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    font-size: 20px;
  }
}

.news .sp-title {
  display: block;
}

.utilize-contents {
  border-radius: 20px;
  background-color: #FFFFFF;
  padding: 2.5rem 5rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: min(1.5rem, 1.8vw);
}
@media screen and (max-width: 1499px) {
  .utilize-contents {
    padding: 2.5rem 3rem;
  }
}
@media screen and (max-width: 1079px) {
  .utilize-contents {
    flex-direction: column;
    font-size: min(1.5rem, 2.3vw);
  }
}
@media screen and (max-width: 767px) {
  .utilize-contents {
    padding: 1rem;
    font-size: min(1rem, 3vw);
  }
}

.utilize-left {
  width: 60%;
}
@media screen and (max-width: 1079px) {
  .utilize-left {
    width: 100%;
  }
}
.utilize-left p {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .utilize-left p {
    font-size: 14px;
    margin-bottom: 0;
  }
}
.utilize-left>p{
  font-size: min(20px, 1.8vw);
}
@media screen and (max-width: 767px) {
  .utilize-left>p{
    font-size: 1rem;
  }
}
.utilize-left p.utilize-bottom {
  margin: 1rem 0 0;
}
@media screen and (max-width: 1079px) {
  .utilize-left p.utilize-bottom {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .utilize-left p.utilize-bottom {
    margin-top: 0;
    margin-bottom: 1rem;
  }
}
.utilize-left img {
  height: 100px;
  object-fit: contain;
  padding: 10px 0;
}
.utilize-left .box-item:nth-child(2) img {
  margin-left: 10px;
}
.utilize-left .box-item:last-child img {
  padding: 14px;
}
.utilize-left .utilize-box {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .utilize-left .utilize-box {
    margin: 0.5rem 0;
  }
}
.utilize-left .utilize-box p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .utilize-left .utilize-box p {
    font-size: 12px;
    text-align: center;
    margin-bottom: 0;
  }
}
.utilize-left .utilize-box p span {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .utilize-left .utilize-box p span {
    display: block;
  }
}

.utilize-right {
  width: 35%;
  text-align: center;
}
@media screen and (max-width: 1079px) {
  .utilize-right {
    width: 100%;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .utilize-right {
    display: none;
  }
}
.utilize-right img {
  width: 200px;
  margin: 1.5rem auto 0;
}
@media screen and (max-width: 1499px) {
  .utilize-right img {
    width: 150px;
  }
}
@media screen and (max-width: 1079px) {
  .utilize-right img {
    margin-top: 1rem;
  }
}

.sp-utilize-right {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-utilize-right {
    display: block;
  }
  .sp-utilize-right .button2 {
    margin: 0;
  }
}

/*お知らせ一覧ページ*/
.lower .news{
  margin: 7rem 0 !important;
}
@media screen and (max-width: 1079px) {
  .lower .news{
    margin: 5rem 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .lower .news{
    margin: 3rem 0 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .lower .news-contents .container {
    width: 100%;
  }
}
.lower .news-contents .container .utilize {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .lower .news-contents .container .utilize {
    width: 100%;
    margin-top: 3rem;
  }
}
.lower .news-contents .container .utilize .container {
  width: 90%;
}

.lower .news-contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1079px) {
  .lower .news-contents {
    flex-direction: column;
    gap: 2rem;
  }
}
.lower .news-contents .container {
  width: 70%;
}
.lower .news-contents .news-left {
  width: 48%;
}
@media screen and (max-width: 1079px) {
  .lower .news-contents .news-left {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .lower .news-contents .news-left {
    width: 90%;
    margin: 0 auto;
  }
}
.lower .news-contents .news-left .category-btn{
  display: flex;
  flex-direction: row-reverse;
  justify-content: left;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .lower .news-contents .news-left .category-btn{
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
}
.lower .news-contents .news-left .category-btn article a{
  border-radius: 20px;
  border: 1px solid #548F6B;
  padding: 0.5rem 2rem;
  color: #548F6B;
  display: inline-block;
  font-size: min(1.3rem,1.5vw);
}
.lower .news-contents .news-left .category-btn article a:hover{
  background-color: #e7e7e7;
  transition: 0.3s; 
}
@media screen and (max-width: 1079px) {
  .lower .news-contents .news-left .category-btn article a{
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .lower .news-contents .news-left .category-btn article a{
    padding: 0.5rem 1.5rem;
    font-size: max(1rem,2vw);
    border-radius: 10px;
  }
}
.blog .news-contents .news-left .category-btn article a.all,
.category-other .news-contents .news-left .category-btn article:first-child a,
.category-time .news-contents .news-left .category-btn article:nth-child(2) a{
  background-color: #548F6B;
  color: #fff;
  pointer-events: none;
}
.wp-pagenavi{
  font-family: "Noto Sans JP", sans-serif;
  width: fit-content;
  margin: 2.5rem auto 0;
}
.wp-pagenavi span.pages{
  display: none;
}
.wp-pagenavi span,
.wp-pagenavi a{
  padding: 1rem;
  margin: 0 0.25rem;
  border: 1px solid #6E564E;
  display: inline-block;
}
.wp-pagenavi span.current{
  background-color: #6E564E;
  color: #fff;
}
.lower .news-contents .utilize-contents {
  flex-direction: column;
}
.lower .news-contents .utilize {
  width: 48%;
  border-radius: 20px;
}
@media screen and (max-width: 1079px) {
  .lower .news-contents .utilize {
    width: 100%;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .blog .lower .news-contents .utilize {
    border-radius: 0;
  }
}
.lower .news-contents .utilize .container {
  width: 90%;
}
.lower .news-contents .utilize-contents {
  padding: 1.5rem 1rem;
  font-size: min(1rem, 3vw);
}
@media screen and (max-width: 767px) {
  .lower .news-contents .utilize-contents {
    flex-direction: column;
  }
}
.lower .news-contents .utilize-contents h3 {
  width: 100%;
  margin-bottom: 1rem;
  font-size: 20px;
}
.lower .news-contents .utilize-right {
  width: 100%;
  font-size: min(1.5rem, 3vw);
}
@media screen and (max-width: 767px) {
  .lower .news-contents .utilize-right {
    font-size: max(1rem, 3vw);
  }
}
.lower .news-contents .utilize-left {
  width: 100%;
}
.lower .news-contents .utilize-left p {
  margin-bottom: 1rem;
}
.lower .news-contents .utilize-left .box-item p {
  margin-bottom: 0;
  text-align: center;
}
.lower .news-contents .utilize-left .box-item p span {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .lower .news-contents .utilize-left .box-item p {
    font-size: 14px;
    text-align: center;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .news-contents.container {
    width: 100%;
  }
}

.post-wrap{
  padding: 1rem 0;
  border-bottom: 1px solid #ADA09D;
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 30px;
}
.post-wrap:hover{
  background-color: #e7e7e7;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .post-wrap{
    gap: 1rem;
  }
}

.news-left>div:nth-child(2) {
  border-top: 1px solid #ADA09D;
}

.post-category{
  border-radius: 10px;
  padding: 4px 0.5rem ;
  text-align: center;
  color: #6E564E;
  border:1px solid #6E564E;
  display: inline-block;
  font-size: 14px;
  min-width: 80px;
}
@media screen and (max-width: 767px) {
  .post-category{
    font-size: 12px;
    min-width: 70px;
  }
  .post-title{
    font-size: 14px;
  }
}
.post-wrap>a{
  width: 100%;
}
.post-wrap.category-time .post-category{
  color: #FF8F6C;
  border:1px solid #FF8F6C;
}
.post-wrap.category-time .post-category a{
  color: #FF8F6C;
}

.post-date{
  font-size: 14px;
  color: #FF8F6C;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .post-date{
    font-size: 12px;
    margin-top: 0;
  }
}

footer {
  position: relative;
}

/*お問い合わせ完了ページ*/
.confirm {
  margin: 10rem 0 !important;
}
@media screen and (max-width: 767px) {
  .confirm {
    margin: 5rem 0 !important;
  }
}

.confirm-contents {
  width: 70%;
  margin: 0 auto;
  background-color: #F8F6EF;
  padding: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 1079px) {
  .confirm-contents {
    width: 85%;
  }
}
@media screen and (max-width: 767px) {
  .confirm-contents {
    width: 100%;
    padding: 2.5rem 1rem;
  }
}
.confirm-contents img {
  max-width: 450px;
  margin: 2.5rem auto;
  width: 55%;
}
@media screen and (max-width: 767px) {
  .confirm-contents img {
    width: 60%;
  }
}
.confirm-contents h2 {
  color: #548F6B;
  font-size: min(2rem, 4vw);
}
@media screen and (max-width: 767px) {
  .confirm-contents h2 {
    font-size: max(1rem, 3.5vw);
  }
}
.confirm-contents p {
  font-size: min(1.5rem, 3vw);
}
@media screen and (max-width: 767px) {
  .confirm-contents p {
    font-size: max(14px, 2.8vw);
  }
}
.confirm-contents p:last-child {
  margin-top: 1rem;
}

/*お知らせ詳細ページ*/
.single-main{
  margin: 5.5rem 0 !important;
}
@media screen and (max-width: 1079px) {
  .single-main{
    margin: 2.5rem 0 5rem!important;
  }
}
@media screen and (max-width: 767px) {
  .single-main{
    margin: 2.5rem 0 !important;
  }
}
.single-main .post-categories a{
  padding: 4px 0.5rem;
  border-radius: 10px;
  border: 1px solid #6E564E;
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .single-main .post-categories a{
    border-radius: 5px;
    margin-bottom: 0.5rem;
    font-size: 11px;
  }
}
.single-main .article_meta h2{
  font-size: min(2rem, 3vw);
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .single-main .article_meta h2{
    font-size: max(1rem, 3.5vw);
    margin-bottom: 0rem;
  }
}
.single-main .article_meta time{
  font-size: 14px;
  color: #FF8F6C;
  margin-bottom: 1rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .single-main .article_meta time{
    font-size: 11px;
  }
}
.article_header{
  border-bottom: 1px solid #ADA09D;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .article_header{
    margin-bottom: 1rem;
  }
}
.single-main .catch{
  margin-bottom: 1.5rem;
}
.single-main .content{
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .single-main .content{
    font-size: max(14px, 3vw);
  }
}
.single-main .row{
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1079px) {
  .single-main .row{
    flex-direction: column;
    gap: 5rem;
  }
}
.single-main .row .single1{
  width: 65%;
}
@media screen and (max-width: 1079px) {
  .single-main .row .single1{
    width: 100%;
  }
}
.single-main .row .single2{
  width: 30%;
}
@media screen and (max-width: 1079px) {
  .single-main .row .single2{
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .single-main .row .single2{
    display: none;
  }
}

.single-main .row .single2 ul li a{
  padding: 1rem 4rem 1rem 0;
  border-bottom: 1px solid #E5E5E5;
  position: relative;
  display: block;
}
.single-main .row .single2 ul li a:hover{
  background-color: #e7e7e7;
  transition: 0.3s;
}
.single-main .row .single2 ul li a:before{
  content: "";
  position: absolute;
  background: url(./images/news_new.png) no-repeat;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 12px;
  height: 15px;
  background-size: contain;
}
.single-main .row .single2 ul li:first-child{
  border-top: 3px solid #ADA09D;
  padding: 1rem 4rem 1rem 0;
  border-bottom: 1px solid #E5E5E5;
}
.single-main .all-news{
  width: fit-content;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .single-main .all-news{
    margin: 2rem auto;
  }
}
.single-main .row .single2 .all-news{
  margin-top: 1.5rem;
  margin-left: auto;  
}
.single-main .all-news a{
  padding: 1rem 4rem 1rem 1.5rem;
  border-radius: 20px;
  border: 1px solid #6E564E;
  display: inline-block;
  position: relative;
}
.single-main .all-news a:hover {
  background-color: #e7e7e7;
  transition: 0.3s;
}
.single-main .all-news a:before{
  content: "";
  position: absolute;
  background: url(./images/news_all.png) no-repeat;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 12px;
  height: 15px;
  background-size: contain;
}

/*お問い合わせページ*/
.contact{
  margin: 5rem 0 10rem !important;
}
@media screen and (max-width: 767px) {
  .contact{
    margin: 2.5rem 0 5rem !important;
  }
  .contact .utilize{
    display: none;
  }
}
.contact-left {
  width: 48%;
  padding: 2.5rem 3rem;
  background-color: #F8F6EF;
}
@media screen and (max-width: 1079px) {
  .contact-left {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .contact-left {
    padding: 2.5rem 1rem;
    margin: 0 auto;
    width: 90%;
  }
}
.contact-left p{
  margin: 0rem 0 2.5rem;
}
.contact-left p.contact-text{
  margin: 0rem 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .contact-left p.contact-text{
    font-size: 14px;
  }
}
@media screen and (max-width: 1079px) {
  .contact-left p{
    margin: 0.5rem 0 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-left p{
    margin: 0 0 1rem;
    font-size: 1rem;
  }
}
.contact-left .text{
  font-size: min(1rem, 2.3vw);
  margin: 0 0 2.5rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1079px) {
  .contact-left .text{
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-left .text{
    font-size: 14px;
    margin-bottom: 1.5rem;
  }
}
.contact-left .text span{
  color: #FF8F6C;
  font-weight: 700;
}
.contact-left label{
  font-size: min(1.5rem, 1.3vw);
  font-weight: 700;
  color: #FF8F6C;
}
@media screen and (max-width: 1499px) {
  .contact-left label{
    font-size: min(1.2rem, 1.3vw);
  }
}
@media screen and (max-width: 1079px) {
  .contact-left label{
    font-size: min(1.2rem, 2vw);
  }
}
@media screen and (max-width: 767px) {
  .contact-left label{
    font-size: max(1rem, 3.5vw);
  }
}
.contact-left form{
  font-family: "Noto Sans JP", sans-serif;

}
.contact-left .contact-normal{
  font-weight: 400;
}
.contact-left input,
.contact-left textarea{
  font-weight: 400;
  color: #000;
  border: 1px solid #676767;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  width: 100%;
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .contact-left input{
    margin-top: 0.5rem;
  }
}
.contact-left select{
  font-weight: 400;
  border: 1px solid #7e7e7e;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  width: 100%;
  color: #000;
}
.contact-left form p:nth-child(7) span{
  position: relative;
}
.wpcf7-list-item{
  margin-left: 0;
}
::placeholder {
  color: #cdcdcd;
}
.contact-left .contact-policy label{
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 400;
  color: #000;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .contact-left .contact-policy label{
    margin-top: 0.5rem;
    gap: 0;
  }
}
.contact-left .contact-policy input{
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-top: 0;
}
@media screen and (max-width: 1079px) {
  .contact-left .contact-policy input{
    width: 20px;
    height: 20px;
  }
}
.contact-left input[type="checkbox"] {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  vertical-align: -5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
}

.contact-left input[type="checkbox"]:checked:before {
  position: absolute;
  top: 1px;
  left: 5px;
  transform: rotate(50deg);
  width: 8px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: '';
  z-index: 1;
}
.contact-left input[type="checkbox"]:checked:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FF884B;
  content: '';
  border-radius: 5px;
}
.contact-left .contact-policy a{
  text-decoration: underline;
  color: #FF884B;
}
.contact-left input[type="submit"],
.contact-left input[type="button"]{
  color: #fff;
  font-size: min(1.5rem, 2vw);
  font-weight: 700;
  padding: 1.5rem 2.5rem;
  background-color: #FF8F6C;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border: none;
}
.contact-left input[type="submit"]:hover,
.contact-left input[type="button"]:hover{
  box-shadow: none;
  transform: scale(0.99, 0.99) translateY(2px);
  cursor: pointer;
}
@media screen and (max-width: 1079px) {
  .contact-left input[type="submit"],
  .contact-left input[type="button"]{
    padding: 1rem 3rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-left input[type="submit"],
  .contact-left input[type="button"]{
    font-size: 21px;
  }
}
.contact-left input.wpcf7-not-valid{
  background-color: #FFE8E8;
}
.wpcf7-not-valid-tip{
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .wpcf7-not-valid-tip{
    font-size: 12px;
  }
}
.contact-left p .wpcf7-spinner{
  display: none;
}
@media screen and (max-width: 767px) {
  .contact-left  p:nth-child(7){
    margin-bottom: 2.5rem;
  }
  .contact-left  p:nth-child(8){
    margin-bottom: 0;
  }
}

/*お問い合わせ確認ページ*/
.contact-confirm{
  margin-top: 10rem !important;
}
@media screen and (max-width: 767px) {
  .contact-confirm{
    margin-top: 5rem !important;
  }
}
.contact-confirm .contact-left {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact-confirm .contact-left {
    width: 90%;
  }
  .contact-confirm .contact-left p.contact-text{
    font-size: 20px;
  }
}
.contact-confirm .wpcf7.js{
  width: 75%;
  margin: 0 auto;
}
@media screen and (max-width: 1079px) {
  .contact-confirm .wpcf7.js{
    width: 95%;
    max-width: 450px;
  }
}
@media screen and (max-width: 767px) {
  .contact-confirm .wpcf7.js{
    width: 100%;
    max-width: max-content;
  }
}
.contact-confirm .contact-text {
  text-align: center;
  color: #548F6B;
  font-size: min(2rem,3vw);
}
.contact-confirm .contact-answer{
  color: #000;
  font-weight: 400;
  border: 1px solid #7e7e7e;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  width: 100%;
  display: block;
  margin-top: 0.5rem;
  background-color: #fff;
  pointer-events: none;
}
.contact-confirm .contact-answer a{
  color: #000;
  pointer-events: none;
}
.contact-confirm .contact-answer.contact-policy{
  border: none;
  padding: 0;
}
.contact-confirm input[type="button"]{
  color: #FF8F6C;
  background-color: #fff;
  padding: 1rem;
  width: 250px;
  display: inline-block;
  border: 1px solid #FF8F6C;
  margin: 0;
}
.contact-confirm input[type="submit"]{
  background: #FF884B;
  color: #fff;
  border: none;
  padding: 1rem;
  width: 250px;
  margin: 0;
  display: inline-block;
}
.contact-confirm .contact-left p:nth-child(7){
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .contact-confirm .contact-left p:nth-child(7){
    margin-bottom: 2.5rem;
  }
}
.contact-confirm .contact-left p:nth-child(8){
  display: flex;
  justify-content: center;
  gap: 8rem;
  align-items: center;
}
@media screen and (max-width: 1499px) {
  .contact-confirm .contact-left p:nth-child(8){
    gap: 4.5rem;
  }
}
@media screen and (max-width: 1079px) {
  .contact-confirm .contact-left p:nth-child(8){
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-confirm .contact-left p:nth-child(8){
    flex-direction: column;
    gap: 1rem;
  }
}

/*プライバシーポリシーページ*/
.main-policy{
  margin: 5rem 0 10rem !important;
}
@media screen and (max-width: 767px) {
  .main-policy{
    margin: 5rem 0 5rem !important;
  }
}
.policy {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .policy {
    margin-bottom: 1rem;
  }
}
.policy h3 {
  font-size: min(1.5rem, 2.5vw);
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .policy h3 {
    font-size: max(1rem, 4.2vw);
  }
}
.policy p {
  font-size: 1rem;
  color: #707070;
}
.policy p span{
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .policy p {
    font-size: max(14px, 3.5vw);
  }
}
.policy ol {
  list-style: auto;
  color: #707070;
}
@media screen and (max-width: 767px) {
  .policy ol {
    font-size: max(14px, 3.5vw);
  }
}
.policy ol li {
  list-style: auto;
}
.policy ol.second-list li{
  list-style: lower-roman;
}
