@charset "utf-8";

.slide {
  overflow: hidden;
}

@media (min-width: 769px) {
  .slide .slide__wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
}

.slide__img {
  width: 100%;
}

/*
construction.css
各ページ固有のCSS
*/
/******************************************

common

*******************************************/
h2 {}
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
a.txtlink {}
a:hover.txtlink {
  color: #ff7043;
  text-decoration: underline;
}
.btn_yl {
  position: relative;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  border: solid 1px #f3c92d;
  transition: ease .2s;
  border-radius: 100px;
  background-color: #f3c92d;
  cursor: pointer;
  color: #222222;
  margin-top: auto;
  padding: 8px 20px;
  min-width: 150px;
  font-size: 0.9rem;
  font-weight: 800;
}
.btn_yl:hover {
  position: relative;
  display: inline-block;
  text-decoration: none;
  border: solid 1px #454545;
  background-color: #454545;
  transition: ease .2s;
  cursor: pointer;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .btn_yl {
    position: relative;
    display: block;
    text-decoration: none;
    text-align: center;
    border: solid 1px #f3c92d;
    transition: ease .2s;
    border-radius: 100px;
    background-color: #f3c92d;
    cursor: pointer;
    color: #222222;
    margin: auto;
    padding: 8px 80px;
    width: 100%;
    font-size: 0.9rem;
    font-weight: 800;
  }
  .btn_yl:hover {
    position: relative;
    display: block;
    text-decoration: none;
    border: solid 1px #454545;
    background-color: #454545;
    transition: ease .2s;
    cursor: pointer;
    color: #FFFFFF;
  }
}
.checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: .5em 2em;
  border: none;
}
.checkbox label {
  display: flex;
  align-items: center;
  gap: 0 .5em;
  position: relative;
  cursor: pointer;
}
.checkbox label::before, .checkbox label:has(:checked)::after {
  content: '';
}
.checkbox label::before {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background-color: #e2e2dd;
}
.checkbox label:has(:checked)::before {
  background-color: #2093cc;
}
.checkbox label:has(:checked)::after {
  position: absolute;
  top: 10px;
  left: 9px;
  transform: rotate(45deg);
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
}
.checkbox input {
  display: none;
}
.selectbox {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.selectbox::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #424242;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
  pointer-events: none;
}
.selectbox select {
  appearance: none;
  min-width: 230px;
  height: 2.8em;
  padding: .4em calc(.8em + 30px) .4em .8em;
  border: 1px solid #d2d2d2;
  border-radius: 10px;
  background-color: #fff;
  color: #222222;
  font-size: 1em;
  cursor: pointer;
}
.txt-indent {
  text-indent: -1em;
  padding-left: 1em;
}
.txt-indent2rem {
  text-indent: -2.6rem;
  padding-left: 2.6rem;
}
.txt-indent_all {
  padding-left: 1em;
}
a .aLink {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .sp_br {
    display: none;
  }
}
#page_top {
  width: 80px;
  height: 80px;
  position: fixed;
  right: 20px;
  bottom: -90px;
  opacity: 1;
  padding-top: 16px;
  cursor: pointer;
  background: url("../img/common/img_pagetop.png") no-repeat center right;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  #page_top {
    width: 40px;
    height: 40px;
    position: fixed;
    right: 20px;
    bottom: -50px;
    opacity: 1;
    padding-top: 16px;
    cursor: pointer;
    background: url("../img/common/img_pagetop.png") no-repeat;
    background-size: 100%;
  }
}

/* お問い合わせバナー
----------------------------------------------------- */

.banner-sticky {
	position: fixed;
	z-index: 9990;
	bottom: 40px;
	left: 40px;
	width: 320px;
	height: auto;
	margin: 0;
    -webkit-transition: all ease-out 0.6s;
    -moz-transition: all ease-out 0.6s;
    -ms-transition: all ease-out 0.6s;
    transition: all ease-out 0.6s;
    box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}
.scrolled .banner-sticky {}
.banner-sticky a {
	display: block;
	background-color: var(--color-primary);
}
.banner-sticky a img {
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    -ms-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}
.banner-sticky a:hover {
    opacity: 1;
}
.banner-sticky a:hover img {
    opacity: 0.8;
}
.footer-is-show .banner-sticky {
    opacity: 0;
    pointer-events: none;
}
@media screen and (min-width: 800px) {}
@media screen and (min-width: 0px) and (max-width: 799px) {
	.banner-sticky {
		left: 3.125vw;
		bottom: 3.125vw;
		width: 54vw;
	}
}

/* ENTRY VER. */
.banner-sticky.u-ver-entry {
	width: 260px;
}
@media screen and (min-width: 800px) {}
@media screen and (min-width: 0px) and (max-width: 799px) {
	.banner-sticky.u-ver-entry {
		width: 40vw;
	}
}


.w1200 {
  width: 1200px;
  margin: 0 auto;
}
.shadow_fog {
  filter: drop-shadow(0px 0px 5px rgba(160, 160, 160, 0.5));
}
.bullet_ring {
  background-image: url("../img/common/img_ring.png");
  background-size: 28px;
  background-repeat: no-repeat;
}
.btn_float {
  background-color: #f3c92d;
  border-radius: 20px;
  filter: drop-shadow(0px 0px 7px rgba(160, 160, 160, 0.5));
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  width: 380px;
  position: fixed;
  z-index: 1;
  bottom: 26px;
  left: 26px;
}
.btn_float_logo img {
  width: 60px;
  height: auto;
  margin-right: 15px;
}
.btn_float_txt {
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  margin-right: 15px;
}
.button {
  cursor: pointer;
  position: relative;
  padding: 1rem 5rem;
  border: solid 1px #d9d9d9;
  border-radius: 34px;
  background-color: #FFFFFF;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
}
.btn_txt {
  position: relative;
  z-index: 1;
  color: #222222;
  font-size: 1.1rem;
  font-weight: 600;
}
.button::before {
  content: '';
  position: absolute;
  inset: 0;
  margin-left: auto;
  margin-right: 0px;
  top: calc(50% - 4px);
  right: 30px;
  width: 9px;
  height: 9px;
  border-radius: inherit;
  scale: 1;
  background-color: #f3c92d;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}
.button:hover::before {
  scale: 80;
}
.button:hover {
  color: #222222;
  scale: 1;
  /*box-shadow: 0 0px 20px rgba(193, 163, 98,0.4);*/
}
.button:active {
  scale: 1;
}
@media screen and (max-width: 768px) {
  .w1200 {
    width: 100%;
    margin: 0 auto;
  }
  .shadow_fog {
    filter: drop-shadow(0px 0px 5px rgba(160, 160, 160, 0.5));
  }
  .bullet_ring {
    background-image: url("../img/common/img_ring.png");
    background-size: 24px;
    background-repeat: no-repeat;
  }
  .btn_float {
    background-color: #f3c92d;
    border-radius: 20px;
    filter: drop-shadow(0px 0px 7px rgba(160, 160, 160, 0.5));
    font-size: 0.9rem;
    font-weight: 600;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    width: calc(100% - 30px);
    position: fixed;
    z-index: 1;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .btn_float_logo img {
    width: 46px;
    height: auto;
    margin-right: 15px;
  }
  .btn_float_txt {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    margin-right: 10px;
  }
  .button {
    cursor: pointer;
    position: relative;
    padding: 0.8rem 4rem;
    border: solid 1px #d9d9d9;
    border-radius: 34px;
    background-color: #FFFFFF;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
  }
  .btn_txt {
    position: relative;
    z-index: 1;
    color: #222222;
    font-size: 1rem;
    font-weight: 600;
  }
  .button::before {
    content: '';
    position: absolute;
    inset: 0;
    margin-left: auto;
    margin-right: 0px;
    top: calc(50% - 4px);
    right: 20px;
    width: 7px;
    height: 7px;
    border-radius: inherit;
    scale: 1;
    background-color: #f3c92d;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
  }
  .button:hover::before {
    scale: 80;
  }
  .button:hover {
    color: #222222;
    scale: 1;
    /*box-shadow: 0 0px 20px rgba(193, 163, 98,0.4);*/
  }
  .button:active {
    scale: 1;
  }
}
/******************************************

header

*******************************************/
header {
  width: 100%;
  border-top: solid 6px #1e94cc;

}
.hd_outer {
  padding-top: 10px;
    padding-bottom: 10px;
background:rgba(255,255,255,0.8);
}
.hd_cont{
  display: flex;
  justify-content: space-between;   
}
.hd_logo {
  width: 330px;
  height: auto;
  position: relative;
  margin-top: 20px
}
.hd_contact {
  display: flex;
  justify-content: flex-end;
    margin-top: 15px;

}
.hd_tel {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin-top: 0;
  margin-right: 20px;
  padding-left: 35px;
  position: relative;
  color: #1e94cc;
}
.hd_tel::before {
  content: "";
  position: absolute;
  background-image: url("../img/common/icn_tel.png");
  background-size: contain;
  background-position: center top;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  display: inline-block;
}
.hd_tel p {
  font-size: 0.8rem;
  color: #222222;
  margin-left: 40px;
    margin-bottom: -20px;
}
.hd_navi {
  margin: 20px 0 30px 0;
}
.hd_navi ul {
  display: flex;
}
.hd_navi li {
  font-size: 1.1rem;
  font-weight: 600;
  margin-left: 36px;
}
@media screen and (max-width: 768px) {
  header {
    width: 100%;
    border-top: solid 6px #1e94cc;

  }
  .hd_outer {
    padding-top: 12px;
      padding-bottom: 12px;
    display: flex;
    justify-content: space-between;
background:rgba(255,255,255,0.8);

      
  }
  .hd_logo {
    width: 186px;
    height: auto;
    position: relative;
    margin-top: 0;
    margin-left: 12px;
  }
  .hd_contact {
    display: none;
    /*display: flex;
    justify-content: flex-end;*/
  }
  .hd_tel {
    font-size: 2rem;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    margin-top: 20px;
    margin-right: 20px;
    padding-left: 35px;
    position: relative;
    color: #1e94cc;
  }
  .hd_tel::before {
    content: "";
    position: absolute;
    background-image: url("../img/common/icn_tel.png");
    background-size: contain;
    background-position: center top;
    top: 0;
    left: 0;
    width: 26px;
    height: 26px;
    display: inline-block;
  }
  .hd_tel p {
    font-size: 0.8rem;
    color: #222222;
    margin-left: 10px;
  }
  .hd_navi {
    display: none;
    /*
    margin: 20px 0 30px 0;
    */
  }
  .hd_navi ul {
    display: flex;
  }
  .hd_navi li {
    font-size: 1.1rem;
    font-weight: 600;
    margin-left: 36px;
  }
}
/******************************************

footer

*******************************************/
footer {
  background-color: #f3c92d;
  width: 1200px;
  color: #222222;
  padding: 60px;
  border-radius: 30px;
  position: relative;
  margin: 100px auto;
}
footer .ft_upper {
  display: flex;
  justify-content: space-between;
}
footer .ft_contact {
  width: 320px;
}
footer .ft_logo img {
  width: 100%;
  height: auto;
}
footer .ft_tel {
  font-size: 2.4rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin-top: 20px;
  margin-bottom: 5px;
  padding-left: 30px;
  position: relative;
}
footer .ft_tel::before {
  content: "";
  position: absolute;
  background-image: url("../img/common/icn_tel.png");
  background-size: contain;
  background-position: center top;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  display: inline-block;
}
footer .ft_btn {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.btn_ft_toi {
  position: relative;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  border: solid 1px #f96a38;
  transition: ease .2s;
  border-radius: 100px;
  background-color: #f96a38;
  cursor: pointer;
  color: #FFFFFF;
  margin-top: auto;
  padding: 8px 0 8px 22px;
  min-width: 154px;
  font-size: 0.9rem;
  font-weight: 800;
}
.btn_ft_toi:hover {
  position: relative;
  display: inline-block;
  text-decoration: none;
  border: solid 1px #f96a38;
  background-color: #FFFFFF;
  transition: ease .2s;
  cursor: pointer;
  color: #f96a38;
}
.btn_ft_toi::before {
  content: '';
  background-image: url(../img/common/icn_letter.png);
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  width: 18px;
  height: 18px;
  position: absolute;
  top: calc(50% - 9px);
  left: 20px;
  transition: all .3s;
}
.btn_ft_toi:hover::before {
  content: '';
  background-image: url(../img/common/icn_letter_on.png);
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  width: 18px;
  height: 18px;
  position: absolute;
  top: calc(50% - 9px);
  left: 20px;
  transition: all .3s;
}
.btn_ft_line {
  position: relative;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  border: solid 1px #1da94a;
  transition: ease .2s;
  border-radius: 100px;
  background-color: #1da94a;
  cursor: pointer;
  color: #FFFFFF;
  margin-top: auto;
  padding: 8px 0 8px 22px;
  ;
  min-width: 154px;
  font-size: 0.9rem;
  font-weight: 800;
}
.btn_ft_line:hover {
  position: relative;
  display: inline-block;
  text-decoration: none;
  border: solid 1px #1da94a;
  background-color: #FFFFFF;
  transition: ease .2s;
  cursor: pointer;
  color: #1da94a;
}
.btn_ft_line::before {
  content: '';
  background-image: url(../img/common/icn_line.png);
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  width: 18px;
  height: 18px;
  position: absolute;
  top: calc(50% - 9px);
  left: 20px;
  transition: all .3s;
}
.btn_ft_line:hover::before {
  content: '';
  background-image: url(../img/common/icn_line_on.png);
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  width: 18px;
  height: 18px;
  position: absolute;
  top: calc(50% - 9px);
  left: 20px;
  transition: all .3s;
}
footer .ft_snstxt {
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 30px;
}
footer .ft_sns {
  display: flex;
  justify-content: center;
}
footer .ft_sns div {
  margin: 15px 15px;
}
footer .ft_sns img {
  width: 26px;
  height: auto;
}
footer .ft_link {
  display: flex;
  justify-content: space-between;
  width: 690px;
  flex-wrap: wrap;
}
footer .ft_link_box {
  width: 210px;
  text-align: left;
  margin-bottom: 30px;
  position: relative;
}
footer .ft_link_hd {
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
}
footer .ft_link_sub {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 140%;
  margin-top: 8px;
  position: relative;
  padding-left: 20px;
}
footer .ft_link_sub::before {
  content: '';
  position: absolute;
  margin-left: 0px;
  margin-right: auto;
  top: calc(50% - 2px);
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 30px;
  background-color: #222222;
}
footer .ft_lower {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
footer .ft_add {
  text-align: left;
  width: 400px;
}
footer .ft_mapcont {
  width: 100%;
  height: 300px;
}
footer .ft_map {
  position: relative;
  width: 100%;
  height: 300px;
  /* SP用
    padding-top: 56.25%;
    height: 0;
    */
}
footer .ft_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
footer .ft_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 30px auto 0 auto;
}
footer .copyright {
  text-align: right;
  font-size: 0.8rem;
}
footer .privacypolicy {
  text-align: left;
  font-size: 0.9rem;
}
footer .privacypolicy a {}
footer .privacypolicy a:hover {
  color: #222222;
  text-decoration: underline;
}
.ft_link_hd {
  display: block;
  pointer-events: none;
}
input {
  display: none;
}
.toggle {
  list-style: none;
}
@media screen and (max-width: 768px) {
  .ft_link_hd {
    pointer-events: all;
  }
  .toggle {
    width: 100%;
    height: 0;
    padding: 0 8px;
    transition: .2s;
    margin-bottom: -6px;
  }
  input:checked + .toggle {
    height: auto;
    padding: 8px;
  }
  .toggle li {
    line-height: 0;
    visibility: hidden;
    opacity: 0;
    transition:
      padding .2s, line-height .2s, visibility .1s, opacity .1s;
  }
  input:checked + .toggle li {
    line-height: 1.5;
    visibility: visible;
    opacity: 1;
  }
  .ft_triicn::after {
    background: #3d3d3d;
    height: calc(tan(60deg) * 12px / 2);
    width: 12px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    transition: transform .3s;
    position: absolute;
    right: 10px;
    top: 28px;
  }
  input:checked + .ft_triicn::after {
    background: #3d3d3d;
    height: calc(tan(60deg) * 12px / 2);
    width: 12px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    transition: transform .3s;
    position: absolute;
    right: 10px;
    top: 28px;
    transform: rotate(180deg);
  }
}
@media screen and (max-width: 768px) {
  footer {
    background-color: #f3c92d;
    width: 100%;
    color: #222222;
    padding: 60px 20px 140px 20px;
    border-radius: 0;
    position: relative;
    margin: 40px auto 0 auto;
  }
  footer .ft_upper {
    display: block;
  }
  footer .ft_contact {
    width: 100%;
  }
  footer .ft_logo img {
    width: 240px;
    height: auto;
  }
  footer .ft_tel {
    font-size: 2rem;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    margin-top: 20px;
    margin-bottom: 5px;
    padding-left: 40px;
    position: relative;
  }
  footer .ft_tel::before {
    content: "";
    position: absolute;
    background-image: url("../img/common/icn_tel.png");
    background-size: contain;
    background-position: left top;
    top: 0;
    left: 30px;
    width: 30px;
    height: 30px;
    display: inline-block;
  }
  footer .ft_btn {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  .btn_ft_toi {
    position: relative;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    border: solid 1px #f96a38;
    transition: ease .2s;
    border-radius: 100px;
    background-color: #f96a38;
    cursor: pointer;
    color: #FFFFFF;
    margin-top: auto;
    padding: 8px 0 8px 22px;
    min-width: 49%;
    font-size: 0.9rem;
    font-weight: 800;
  }
 .btn_nav_toi {
    position: relative;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    border: solid 1px #f96a38;
    transition: ease .2s;
    border-radius: 100px;
    background-color: #f96a38;
    cursor: pointer;
    color: #FFFFFF;
    margin-top: auto;
    padding: 8px 0 8px 22px;
    min-width: 100%;
    font-size: 0.9rem;
    font-weight: 800;
  }
  .btn_ft_toi:hover,
  .btn_nav_toi:hover {
    position: relative;
    display: inline-block;
    text-decoration: none;
    border: solid 1px #f96a38;
    background-color: #FFFFFF;
    transition: ease .2s;
    cursor: pointer;
    color: #f96a38;
  }
  .btn_ft_toi::before,
  .btn_nav_toi::before {
    content: '';
    background-image: url(../img/common/icn_letter.png);
    background-repeat: no-repeat;
    background-size: contain;
    border: 0;
    width: 18px;
    height: 18px;
    position: absolute;
    top: calc(50% - 9px);
    left: 20px;
    transition: all .3s;
  }
  .btn_ft_toi:hover::before,
  .btn_nav_toi:hover::before {
    content: '';
    background-image: url(../img/common/icn_letter_on.png);
    background-repeat: no-repeat;
    background-size: contain;
    border: 0;
    width: 18px;
    height: 18px;
    position: absolute;
    top: calc(50% - 9px);
    left: 20px;
    transition: all .3s;
  }
  .btn_ft_line {
    position: relative;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    border: solid 1px #1da94a;
    transition: ease .2s;
    border-radius: 100px;
    background-color: #1da94a;
    cursor: pointer;
    color: #FFFFFF;
    margin-top: auto;
    padding: 8px 0 8px 22px;
    min-width: 49%;
    font-size: 0.9rem;
    font-weight: 800;
  }
  .btn_ft_line:hover {
    position: relative;
    display: inline-block;
    text-decoration: none;
    border: solid 1px #1da94a;
    background-color: #FFFFFF;
    transition: ease .2s;
    cursor: pointer;
    color: #1da94a;
  }
  .btn_ft_line::before {
    content: '';
    background-image: url(../img/common/icn_line.png);
    background-repeat: no-repeat;
    background-size: contain;
    border: 0;
    width: 18px;
    height: 18px;
    position: absolute;
    top: calc(50% - 9px);
    left: 20px;
    transition: all .3s;
  }
  .btn_ft_line:hover::before {
    content: '';
    background-image: url(../img/common/icn_line_on.png);
    background-repeat: no-repeat;
    background-size: contain;
    border: 0;
    width: 18px;
    height: 18px;
    position: absolute;
    top: calc(50% - 9px);
    left: 20px;
    transition: all .3s;
  }
.ft_snstxt {
    font-size: 0.8rem;
    font-weight: 800;
    margin-top: 30px;
  }
.ft_sns {
    display: flex;
    justify-content: center;
  }
.ft_sns div {
    margin: 15px 15px;
  }
.ft_sns img {
    width: 26px;
    height: auto;
  }
  footer .ft_link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    border-bottom: 1px solid #917a45;
  }
  footer .ft_link_box {
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
    padding-bottom: 4px;
    position: relative;
  }
  footer .ft_link_hd {
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    border-top: 1px solid #917a45;
    padding-top: 18px;
  }
  footer .ft_link_sub {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 140%;
    margin-top: 8px;
    position: relative;
    padding-left: 20px;
  }
  footer .ft_link_sub::before {
    content: '';
    position: absolute;
    margin-left: 0px;
    margin-right: auto;
    top: calc(50% - 2px);
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 30px;
    background-color: #222222;
  }
  footer .ft_lower {
    display: block;
    margin-top: 30px;
    text-align: center;
  }
  footer .ft_add {
    text-align: center;
    width: 100%;
    line-height: 140%;
    margin-bottom: 30px;
  }
  footer .ft_add p {
    text-align: center;
  }
  footer .ft_mapcont {
    width: 100%;
    height: 200px;
  }
  footer .ft_map {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    height: 0;
  }
  footer .ft_map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }
  footer .ft_box {
    width: 100%;
    display: block;
    margin: 30px auto 0 auto;
  }
  footer .copyright {
    text-align: center;
    font-size: 0.8rem;
  }
  footer .privacypolicy {
    text-align: center;
    font-size: 0.9rem;
  }
  footer .privacypolicy a {}
  footer .privacypolicy a:hover {
    color: #222222;
    text-decoration: underline;
  }
}
/******************************************

top

*******************************************/
.ttl_top {
  display: flex;
  position: relative;
  margin-bottom: 60px;
}
.ttl_top::before {
  position: absolute; /* テキストに対して相対的に配置 */
  content: ''; /* 擬似要素の内容を空に設定 */
  left: 0; /* 左端から配置 */
  bottom: -26px; /* テキストの下に配置 */
  width: 80px; /* テキストの幅いっぱいに広がる */
  height: 7px; /* マーカー線の高さ */
  background-color: #1e94cc; /* マーカーの色 */
  border-radius: 1rem; /* 角を丸くする */
  z-index: 1; /* テキストの背面に表示 */
}
.ttl_top_j {
  font-size: 1.1rem;
  font-weight: 600;
  color: #161616;
  padding-top: 0.4rem;
  margin-left: 1.4rem;
}
.ttl_top_en {
  font-size: 2.8rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: #222222;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .ttl_top {
    display: block;
    margin-bottom: 46px;
    padding: 0;
    text-align: left;
  }
  .ttl_top::before {
    position: absolute; /* テキストに対して相対的に配置 */
    content: ''; /* 擬似要素の内容を空に設定 */
    left: 0; /* 左端から配置 */
    bottom: -15px; /* テキストの下に配置 */
    width: 60px; /* テキストの幅いっぱいに広がる */
    height: 5px; /* マーカー線の高さ */
    background-color: #1e94cc; /* マーカーの色 */
    border-radius: 1rem; /* 角を丸くする */
    z-index: 1; /* テキストの背面に表示 */
  }
  .ttl_top_j {
    font-size: 1rem;
    font-weight: 600;
    color: #161616;
    padding-top: 0.2rem;
    margin-left: 0;
  }
  .ttl_top_en {
    font-size: 2rem;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    color: #222222;
    letter-spacing: 0;
  }
}
#keys {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 50%, #fefbef 50%, #fefbef 100%);
    padding: 160px 0 0 0;
  margin: 0 auto;

}
#keys img {
  position: relative;

}
#keys .keys_outer {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  filter: drop-shadow(0px 0px 7px rgba(160, 160, 160, 0.5));



}
#keys .keys_txt {
  font-size: 2.6rem;
  font-weight: 800;
  color: #FFFFFF;
  position: absolute;
  top: calc(50% - 2.6rem);
  left: 30px;
  text-align: left;
  line-height: 140%;
  filter: drop-shadow(0px 0px 2px rgba(100, 100, 100, 0.8));
}
.swiper_key{
      border-radius: 30px;
}
.swiper{
  position:relative;
 
}
/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev_k,
.swiper-button-next_k {
  height: 50px;
  width: 50px;
}
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev_k:after,
.swiper-button-next_k:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
}
/* 前への矢印カスタマイズ */
.swiper-button-prev_k:after {
  background-image: url("../img/top/img_top_arrowL.png");
}
/* 次への矢印カスタマイズ */
.swiper-button-next_k:after {
  background-image: url("../img/top/img_top_arrowR.png");
}
.swiper-button-prev_k{  position:absolute; left: 20px;  bottom:30px;  }
.swiper-button-next_k{  position:absolute; left: 80px;  bottom:30px;  }

.swiper-button-prev_k,
.swiper-button-next_k {
top: var(--swiper-navigation-top-offset, calc(100% - 50px));
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev_m,
.swiper-button-next_m {
  height: 50px;
  width: 50px;
}
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev_m:after,
.swiper-button-next_m:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
}
/* 前への矢印カスタマイズ */
.swiper-button-prev_m:after {
  background-image: url("../img/common/img_arrowL.png");
}
/* 次への矢印カスタマイズ */
.swiper-button-next_m:after {
  background-image: url("../img/common/img_arrowR.png");
}
.swiper-button-prev_m{  position:absolute; left: 20px;  bottom:30px;  }
.swiper-button-next_m{  position:absolute; left: 80px;  bottom:30px;  }

.swiper-button-prev_m,
.swiper-button-next_m {
top: var(--swiper-navigation-top-offset, calc(100% - 50px));
}

.swiper-wrapper_m {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
  }
.swiper-button-prev_m,
.swiper-button-next_m {
visibility: hidden;
}
@media screen and (max-width: 768px) {
  #keys {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 50%, #fefbef 50%, #fefbef 100%);
    padding: 70px 0 0 0;
    margin: 0 auto;
  }
  #keys img {
    filter: drop-shadow(0px 0px 7px rgba(160, 160, 160, 0.5));
    border-radius: 20px;
    position: relative;
    width: 100%;
    height: auto;
  }
  #keys .keys_outer {
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0 15px;
  }
  #keys .keys_txt {
    font-size: 1.2rem;
    font-weight: 800;
    color: #FFFFFF;
    position: absolute;
    top: calc(50% - 1.2rem);
    left: 30px;
    text-align: left;
    line-height: 140%;
    filter: drop-shadow(0px 0px 2px rgba(100, 100, 100, 0.8));
  }
    
.swiper{
  position:relative;

}

  /* 前へ次への矢印カスタマイズ */
.swiper-button-prev_m,
.swiper-button-next_m {
  height: 40px;
  width: 40px;

}
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev_m:after,
.swiper-button-next_m:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 40px;
  margin: auto;
  width: 40px;
}
/* 前への矢印カスタマイズ */
.swiper-button-prev_m:after {
  background-image: url("../img/common/img_arrowL.png");
}
/* 次への矢印カスタマイズ */
.swiper-button-next_m:after {
  background-image: url("../img/common/img_arrowR.png");
}
.swiper-button-prev_m{  position:absolute; left: 0;}
.swiper-button-next_m{  position:absolute; left: auto; right: 0; }

.swiper-button-prev_m,
.swiper-button-next_m {
top: var(--swiper-navigation-top-offset, calc(50% - 1rem) );
}

.swiper-wrapper_m {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, 1fr);
    
  }
.swiper-button-prev_m,
.swiper-button-next_m {
visibility: visible;
} 
}
#propsearch {
  background-color: #fefbef;
  padding: 45px 0;
  margin: 0 0 120px 0;
}
.propsearch_outer {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
}
.propsearch_cont {
  display: flex;
  justify-content: flex-start;
}
.propsearch_box {
  text-align: left;
  width: 200px;
}
.propsearch_area {
  text-align: left;
  width: 300px;
}
.propsearch_type {
  text-align: left;
  width: 450px;
}
.propsearch_btn {
  text-align: left;
  margin-top: 30px;
  margin-left: 20px;
}
.propsearch_ttl {
  font-size: 1.3rem;
  font-weight: 600;
  padding: 0 0 0 46px;
  background-image: url("../img/common/img_ring.png");
  background-size: 24px 24px;
  background-position: 16px center;
  border-radius: 0 26px 8px 0;
}
@media screen and (max-width: 768px) {
  #propsearch {
    background-color: #fefbef;
    padding: 25px 15px;
    margin: 0 0 60px 0;
  }
  .propsearch_outer {
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
  }
  .propsearch_cont {
    display: block;
    width: 100%;
  }
  .propsearch_box {
    text-align: left;
    width: 100%;
  }
  .propsearch_area {
    text-align: left;
    width: 100%;
    margin-top: 20px;
  }
  .propsearch_type {
    text-align: left;
    width: 100%;
    margin-top: 20px;
    font-size: 0.9rem;
  }
  .propsearch_btn {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    margin-left: 0;
  }
  .propsearch_ttl {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0 0 0 30px;
    background-image: url("../img/common/img_ring.png");
    background-size: 24px 24px;
    background-position: left center;
    border-radius: 0 26px 8px 0;
  }
}
#purchase {}
.purchase_cont_pc {
  display: flex;
  justify-content: space-between;
}
.purchase_cont_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #purchase {
    padding: 0 15px;
  }
  .purchase_cont_sp {
    display: flex;
    justify-content: space-between;
  }
  .purchase_cont_sp div {
    width: calc(50% - 6px);
    height: auto;
  }
  .purchase_cont_pc {
    display: none;
  }
}
#tokucho {
  padding: 0 0 120px 0;
  margin-top: 120px;
}
.tokucho_cont {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  margin-bottom: 80px;
}
.tokucho_box {
  width: 276px;
  height: auto;
  text-align: left;
  position: relative;
}
.tokucho_box img {
  filter: drop-shadow(0px 0px 7px rgba(160, 160, 160, 0.5));
  border-radius: 20px;
  width: 100%;
  height: auto;
}
.tokucho_ph {}
.tokucho_ttl {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  font-size: 1.2rem;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 18px 20px 20px 46px;
  height: calc(40px + 1.4rem);
  background-image: url("../img/common/img_ring.png");
  background-size: 24px 24px;
  background-position: 16px center;
  border-radius: 0 26px 8px 0;
}
@media screen and (max-width: 768px) {
  #tokucho {
    padding: 0 15px 0 15px;
    margin-top: 80px;
  }
  .tokucho_cont {
    display: block;
    padding-top: 0;
    margin-bottom: 80px;
  }
  .tokucho_box {
    width: 100%;
    height: auto;
    text-align: left;
    position: relative;
    margin-bottom: 15px;
  }
  .tokucho_box img {
    filter: drop-shadow(0px 0px 7px rgba(160, 160, 160, 0.5));
    border-radius: 20px;
    width: 100%;
    height: auto;
  }
  .tokucho_ph {}
  .tokucho_ttl {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 18px 20px 16px 42px;
    height: calc(40px + 1.4rem);
    background-image: url("../img/common/img_ring.png");
    background-size: 20px 20px;
    background-position: 16px center;
    border-radius: 0 26px 8px 0;
  }
}
#service {}
.service_cont {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service_box {
  position: relative;
  filter: drop-shadow(0px 0px 5px rgba(160, 160, 160, 0.5));
  padding-bottom: 34px;
}
.service_box img {
  border-radius: 20px;
}
.service_menu {
  position: absolute;
  top: calc(50% - 1.8rem);
  left: 50px;
  padding-left: 40px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #FFFFFF;
}
.service_txt {
  position: absolute;
  top: calc(50% + 0.4rem);
  left: 50px;
  padding-left: 40px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  #service {
    padding: 0 15px;
  }
  .service_cont {
    display: block;
  }
  .service_box {
    width: 100%;
    position: relative;
    filter: drop-shadow(0px 0px 5px rgba(160, 160, 160, 0.5));
    padding-bottom: 15px;
  }
  .service_box img {
    border-radius: 16px;
    width: 100%;
    height: auto;
  }
  .service_menu {
    position: absolute;
    top: calc(50% - 1.8rem);
    left: 30px;
    padding-left: 34px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
  }
  .service_txt {
    position: absolute;
    top: calc(50% + 0.2rem);
    left: 30px;
    padding-left: 34px;
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
  }
}
#news {
  background-color: #fafafa;
  padding: 80px;
}
.news_cont {
  border-top: 1px solid #cccccc;
  margin-top: 80px;
  margin-bottom: 60px;
}
.news_box {
  border-bottom: 1px solid #cccccc;
  padding: 30px 0;
  display: flex;
}
.news_date {
  color: #666666;
}
.news_type {
  color: #222222;
  background-color: #FFFFFF;
  border-radius: 30px;
  border: solid 1px #999999;
  padding: 0 0;
  width: 5rem;
  font-size: 0.7rem;
  margin-left: 15px;
}
.news_txt {
  margin-left: 15px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #news {
    background-color: #fafafa;
    padding: 40px 15px;
  }
  .news_cont {
    border-top: 1px solid #cccccc;
    margin-top: 80px;
    margin-bottom: 40px;
  }
  .news_box {
    border-bottom: 1px solid #cccccc;
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
  }
  .news_date {
    color: #666666;
    font-size: 0.8rem;
  }
  .news_type {
    color: #222222;
    background-color: #FFFFFF;
    border-radius: 30px;
    border: solid 1px #999999;
    padding: 0 0;
    width: 5rem;
    height: 1.6rem;
    font-size: 0.7rem;
    margin-left: 8px;
  }
  .news_txt {
    margin-left: 0;
    margin-top: 5px;
    position: relative;
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
  }
}
#topbnr {
  margin: 80px auto;
}
.topbnr_cont {
  display: flex;
  justify-content: space-between;
}
.topbnr_cont img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.topbnr_box {
  width: 408px;
}
.topbnr_boxs {
  width: 365px;
}
.topbnr_boxs div {
  margin-bottom: 13px;
}
@media screen and (max-width: 768px) {
  #topbnr {
    margin: 80px auto 0 auto;
    padding: 0 15px;
  }
  .topbnr_cont {
    display: block;
  }
  .topbnr_cont img {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }
  .topbnr_box {
    width: 100%;
    margin-bottom: 13px;
  }
  .topbnr_boxs {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .topbnr_boxs div {
    margin-bottom: 13px;
    width: calc(50% - 6px)
  }
}
#propnew {
  padding: 0 0 120px 0;
  margin-top: 180px;
}
.propnew_cont {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  margin-bottom: 80px;
}
.propnew_box {
  width: 276px;
  height: auto;
  text-align: left;
}
.propnew_box img {
  filter: drop-shadow(0px 0px 7px rgba(160, 160, 160, 0.5));
  border-radius: 20px;
  width: 100%;
  height: auto;
}
.propnew_ph {
  position: relative;
}
.new_icn {
  position: absolute;
  top: 14px;
  right: 0;
  color: #FFFFFF;
  background-color: #55aed9;
  border-radius: 6px 0 0 6px;
  padding: 0 0.8rem 0 0.8rem;
  font-size: 0.6rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  height: 1.6rem;
  width: 56px;
}
.propnew_add {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 130%;
  margin-top: 20px;
}
.propnew_price {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 140%;
}
.propnew_price::after {
  content: '万円';
  font-size: 1rem;
  margin-left: 3px;
}
.propnew_detail {
  font-size: 0.8rem;
  line-height: 140%;
}
.propnew_tag span {
  color: #222222;
  background-color: #f4f4f2;
  border-radius: 30px;
  padding: 0 15px;
  font-size: 0.7rem;
  text-align: center;
  display: inline-block;
  margin-top: 12px;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  #propnew {
    padding: 0 15px 120px 15px;
    margin-top: 60px;
  }
  .propnew_cont {
    display: block;
    padding-top: 20px;
    margin-bottom: 80px;
  }
  .propnew_box {
    width: 100%;
    height: auto;
    text-align: left;
    margin-bottom: 40px;
  }
  .propnew_box img {
    filter: drop-shadow(0px 0px 7px rgba(160, 160, 160, 0.5));
    border-radius: 20px;
    width: 100%;
    height: auto;
  }
  .propnew_ph {
    position: relative;
  }
  .new_icn {
    position: absolute;
    top: 14px;
    right: 0;
    color: #FFFFFF;
    background-color: #55aed9;
    border-radius: 6px 0 0 6px;
    padding: 0 0.8rem 0 0.8rem;
    font-size: 0.6rem;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    height: 1.6rem;
    width: 56px;
  }
  .propnew_add {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 130%;
    margin-top: 20px;
  }
  .propnew_price {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 140%;
  }
  .propnew_price::after {
    content: '万円';
    font-size: 1rem;
    margin-left: 3px;
  }
  .propnew_detail {
    font-size: 0.8rem;
    line-height: 140%;
  }
  .propnew_tag span {
    color: #222222;
    background-color: #f4f4f2;
    border-radius: 30px;
    padding: 0 15px;
    font-size: 0.7rem;
    text-align: center;
    display: inline-block;
    margin-top: 12px;
    margin-right: 5px;
  }
}
#propserf {
  padding: 0 20px 120px 20px;
}
@media screen and (max-width: 768px) {
  #propserf {
    padding: 0 15px 120px 15px;
  }
}
#video {
  background-color: #f6fcfd;
  padding: 120px 0;
}
.video_cont {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  margin-bottom: 80px;
}
.video_box {
  width: 380px;

}
.video_playbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video_playbtn img {
  width: 40px;
  height: auto;
}
.video_ph_outer {

}
.video_ph img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}
.video_txt {
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  #video {
    background-color: #f6fcfd;
    padding: 80px 15px;
  }
  .video_cont {
    display: block;
    padding: 20px 0 0 0;
    margin-bottom: 40px;
  }
  .video_box {
    width: 100%;

  }
  .video_playbtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .video_playbtn img {
    width: 40px;
    height: auto;
  }
  .video_ph_outer {

  }
    .video_ph{
            border-radius: 30px;
              padding: 0 10px;
    }
  .video_ph img {
    width: 100%;
    height: auto;


  }
  .video_txt {
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
      padding: 0 20px;
  }
}
.ttl_top_leading {
  position: relative;
  display: inline-block;
  padding: 0 4rem;
  font-size: 2.6rem;
  color: #414141;
  font-weight: 600;
}
.ttl_top_leading:before, .ttl_top_leading:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 4px;
  background-color: #414141;
  border-radius: 100px;
}
.ttl_top_leading:before {
  left: 0;
}
.ttl_top_leading:after {
  right: 0;
}
.ttl_top_eng {
  color: #3babff;
  font-size: 3.2rem;
  font-family: "shelby", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .ttl_top_leading {
    position: relative;
    display: inline-block;
    padding: 0 3rem;
    font-size: 2rem;
    color: #414141;
    font-weight: 600;
  }
  .ttl_top_leading:before, .ttl_top_leading:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 35px;
    height: 4px;
    background-color: #414141;
    border-radius: 100px;
  }
  .ttl_top_leading:before {
    left: 0;
  }
  .ttl_top_leading:after {
    right: 0;
  }
  .ttl_top_eng {
    color: #3babff;
    font-size: 2.6rem;
    font-family: "shelby", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-top: 10px;
  }
}
#voice {
  padding-top: 120px;
  margin-bottom: 80px;
}
.voice_cont {
  display: flex;
  justify-content: space-between;
  padding-top: 100px;
  margin-bottom: 80px;
}
.voice_box {
  width: 380px;
  border-radius: 20px;
  filter: drop-shadow(0px 0px 7px rgba(160, 160, 160, 0.5));
  background-color: #FFFFFF;
  padding: 74px 34px 34px 34px;
  position: relative;
}
.voice_illust {
  position: absolute;
  top: -60px;
  right: calc(50% - 60px);
  margin: auto;
}
.voice_illust img {
  width: 120px;
  height: auto;
}
.voice_age {
  text-align: left;
}
.voice_age {
  display: flex;
  position: relative;
  margin-bottom: 40px;
  font-size: 1.1rem;
  font-weight: 600
}
.voice_age::before {
  position: absolute; /* テキストに対して相対的に配置 */
  content: ''; /* 擬似要素の内容を空に設定 */
  left: 0; /* 左端から配置 */
  bottom: -20px; /* テキストの下に配置 */
  width: 40px; /* テキストの幅いっぱいに広がる */
  height: 5px; /* マーカー線の高さ */
  background-color: #f3c92d; /* マーカーの色 */
  border-radius: 1rem; /* 角を丸くする */
  z-index: 1; /* テキストの背面に表示 */
}
.voice_txt {
  text-align: left;
}
@media screen and (max-width: 768px) {
  #voice {
    padding: 120px 15px 0 15px;
    margin-bottom: 80px;
  }
  .voice_cont {
    display: block;
    padding-top: 100px;
    margin-bottom: 40px;
  }
  .voice_box {
    width: 100%;
    border-radius: 20px;
    filter: drop-shadow(0px 0px 7px rgba(160, 160, 160, 0.5));
    background-color: #FFFFFF;
    padding: 54px 34px 34px 34px;
    position: relative;
    margin-bottom: 90px;
  }
  .voice_illust {
    position: absolute;
    top: -60px;
    right: calc(50% - 60px);
    margin: auto;
  }
  .voice_illust img {
    width: 100px;
    height: auto;
  }
  .voice_age {
    text-align: left;
  }
  .voice_age {
    display: flex;
    position: relative;
    margin-bottom: 40px;
    font-size: 1.1rem;
    font-weight: 600
  }
  .voice_age::before {
    position: absolute; /* テキストに対して相対的に配置 */
    content: ''; /* 擬似要素の内容を空に設定 */
    left: 0; /* 左端から配置 */
    bottom: -20px; /* テキストの下に配置 */
    width: 40px; /* テキストの幅いっぱいに広がる */
    height: 5px; /* マーカー線の高さ */
    background-color: #f3c92d; /* マーカーの色 */
    border-radius: 1rem; /* 角を丸くする */
    z-index: 1; /* テキストの背面に表示 */
  }
  .voice_txt {
    text-align: left;
  }
}
#feature {
  padding-top: 60px;
}
.feature_cont {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
  padding-bottom: 80px;
}
.feature_box {
  width: 276px;
  height: auto;
  text-align: left;
}
.feature_img img {
  filter: drop-shadow(0px 0px 7px rgba(160, 160, 160, 0.5));
  border-radius: 20px;
  width: 100%;
  height: auto;
}
.feature_date {
  margin-top: 20px;
}
.feature_ttl {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 5px;
}
.feature_place {
  font-size: 0.8rem;
  line-height: 130%;
}
.feature_type {
  color: #1e94cc;
  background-color: #FFFFFF;
  border-radius: 30px;
  border: solid 1px #1e94cc;
  padding: 0 10px;
  font-size: 0.7rem;
  text-align: center;
  display: inline-block;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  #feature {
    padding: 60px 15px 0 15px;
  }
  .feature_cont {
    display: flex;
    margin-top: 40px;
    padding-bottom: 20px;
    flex-wrap: wrap;
  }
  .feature_box {
    width: calc(50% - 7px);
    height: auto;
    text-align: left;
    margin-bottom: 40px;
  }
  .feature_img img {
    filter: drop-shadow(0px 0px 7px rgba(160, 160, 160, 0.5));
    border-radius: 15px;
    width: 100%;
    height: auto;
  }
  .feature_date {
    margin-top: 20px;
    font-size: 0.9rem;
  }
  .feature_ttl {
    font-size: 0.96rem;
    font-weight: 600;
    margin-top: 5px;
    line-height: 140%;
  }
  .feature_place {
    font-size: 0.8rem;
    line-height: 130%;
  }
  .feature_type {
    color: #1e94cc;
    background-color: #FFFFFF;
    border-radius: 30px;
    border: solid 1px #1e94cc;
    padding: 0 10px;
    font-size: 0.7rem;
    text-align: center;
    display: inline-block;
    margin-top: 10px;
  }
}
#search {
  background-color: #fefbef;
  padding: 80px 0;
  margin-top: 120px;
}
.search_kodawari {
  background-color: #FFFFFF;
  border-radius: 40px;
  padding: 40px 0 70px 0;
  position: relative;
}
.search_kodawari_ttl {
  position: absolute;
  margin: auto;
  top: -50px;
  left: 0;
  right: 0;
}
.search_kodawari_ttl img {
  width: 450px;
  height: auto;
}
.search_kodawari_cont {
  display: flex;
  flex-wrap: wrap;
  width: 980px;
  margin: 0 auto;
  justify-content: space-between;
}
.search_btn {
  filter: drop-shadow(0px 0px 7px rgba(160, 160, 160, 0.3));
  border-radius: 24px;
  width: 224px;
  height: 90px;
  padding: 20px 15px 20px 20px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: all 0.5s ease 0s;
  margin-top: 30px;
}
.search_btn:hover {
  background-color: #fefcf6;
}
.search_img {
  width: 54px;
  height: auto;
}
.search_img img {
  width: 100%;
  height: auto;
}
.search_txt {
  font-size: 1rem;
  font-weight: 600;
  width: 135px;
  padding-left: 35px;
  text-align: left;
  line-height: 120%;
  position: relative;
}
.search_txt::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  top: 0;
  left: -94px;
  width: 9px;
  height: 9px;
  border-radius: 30px;
  scale: 1;
  background-color: #f3c92d;
}
.search_category_cont {
  display: flex;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 120px;
}
.search_category_box {
  width: 260px;
  text-align: center;
  margin: 0 20px;
  position: relative;
}
.search_category_icon {
  background-color: #FFFFFF;
  width: 180px;
  height: 180px;
  border-radius: 100px;
  filter: drop-shadow(0px 0px 7px rgba(160, 160, 160, 0.3));
  margin: 0 auto;
  padding-top: 40px;
}
.search_category_icon img {
  width: 100px;
  height: auto;
}
.search_category_ttl {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 25px;
  position: relative;
}
/*
.search_category_ttl::before{
  content: '';
  position: absolute;
  inset: 0;
margin: auto;
  top: 0;
  left: 0;
    right: auto;
    bottom:0;
  width: 9px;
  height: 9px;
  border-radius: 30px;
  scale: 1;
  background-color: #f3c92d; 

}
*/
.search_category_ttl span {
  font-size: 1.2rem;
  font-weight: 600;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  #search {
    background-color: #fefbef;
    padding: 80px 10px 40px 10px;
    margin-top: 120px;
  }
  .search_kodawari {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 32px 10px 25px 10px;
    position: relative;
  }
  .search_kodawari_ttl {
    position: absolute;
    margin: auto;
    top: -36px;
    left: 0;
    right: 0;
  }
  .search_kodawari_ttl img {
    width: 300px;
    height: auto;
  }
  .search_kodawari_cont {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 5px;
    margin: 0 auto;
    justify-content: space-between;
  }
  .search_btn {
    filter: drop-shadow(0px 0px 7px rgba(160, 160, 160, 0.2));
    border-radius: 14px;
    width: calc(50% - 5px);
    height: 80px;
    padding: 10px;
    background-color: #FFFFFF;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: all 0.5s ease 0s;
    margin-top: 10px;
    position: relative;
  }
  .search_btn:hover {
    background-color: #fefcf6;
  }
  .search_img {
    width: 40px;
    height: auto;
    margin-left: 3px;
  }
  .search_img img {
    width: 100%;
    height: auto;
  }
  .search_txt {
    font-size: 0.80rem;
    font-weight: 600;
    width: auto;
    padding-left: 24px;
    text-align: left;
    line-height: 120%;
    position: relative;
  }
  .search_txt::before {
    content: '';
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 10px;
    right: auto;
    width: 7px;
    height: 7px;
    border-radius: 30px;
    background-color: #f3c92d;
  }
  .search_category_cont {
    display: flex;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 80px;
  }
  .search_category_box {
    width: 110px;
    text-align: center;
    margin: 0;
    position: relative;
  }
  .search_category_icon {
    background-color: #FFFFFF;
    width: 90px;
    height: 90px;
    border-radius: 100px;
    filter: drop-shadow(0px 0px 7px rgba(160, 160, 160, 0.3));
    margin: 0 auto;
    padding-top: 23px;
  }
  .search_category_icon img {
    width: 46px;
    height: auto;
  }
  .search_category_ttl {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 10px;
    position: relative;
    line-height: 140%;
  }
  /*
.search_category_ttl::before{
  content: '';
  position: absolute;
  inset: 0;
margin: auto;
  top: 0;
  left: 0;
    right: auto;
    bottom:0;
  width: 9px;
  height: 9px;
  border-radius: 30px;
  scale: 1;
  background-color: #f3c92d; 

}
*/
  .search_category_ttl span {
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 5px;
  }
}
/******************************************

PRIVACY POLICY

*******************************************/
#privacypolicy {
  background-color: #d1def8;
  padding-bottom: 60px;
}
.privacypolicy_outer {
  background-color: #FFF;
  width: 100%;
  padding: 90px 0 0 0;
}
.privacypolicy_cont {
  width: 700px;
  margin: 0 auto;
  padding: 0 0 70px 0;
  border-bottom: solid 1.5px #a8a8a8;
  text-align: left;
}
.privacypolicy_cont:last-child {
  border-bottom: none;
}
.privacypolicy_cont h3 {
  padding-top: 80px;
  padding-bottom: 40px;
  text-align: center;
}
.privacypolicy_cont p {
  margin: 0 0 30px 0;
  text-align: left;
}
.privacy_ft {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #privacypolicy {
    background-color: #d1def8;
    padding-bottom: 60px;
  }
  .privacypolicy_outer {
    background-color: #FFF;
    width: 100%;
    padding: 40px 0 0 0;
  }
  .privacypolicy_cont {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px 50px 20px;
    border-bottom: solid 1.5px #a8a8a8;
    text-align: left;
  }
  .privacypolicy_cont:last-child {
    border-bottom: none;
  }
  .privacypolicy_cont h3 {
    padding-top: 80px;
    padding-bottom: 40px;
    text-align: center;
  }
  .privacypolicy_cont p {
    margin: 0 0 30px 0;
    text-align: left;
  }
  .privacy_ft {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
  }
}