@charset "UTF-8";

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "游ゴシック";
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

a {
  color: #000;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

header h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d3d3d3;
}

.mv {
  position: relative;
  padding-top: 50px;
  text-align: center;
}

.main_img {
  background-color: #eaebef;
}

.top .mv {
  padding-top: 100px;
}

.top h2 {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 550px) {
  .top h2 {
    transform: translate(-50%, -80%);
  }

  .top h2 img {
    min-width: 300px;
  }
}

.arrow {
  margin: 0;
  text-align: center;
  -webkit-animation-name: arrow;
  animation-name: arrow;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes arrow {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(80%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes arrow {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(80%);
  }

  100% {
    transform: translateY(0);
  }
}

.type-box {
  display: flex;
  padding-top: 40px;
  padding-bottom: 40px;
}

.type-box section {
  max-width: 470px;
  padding-top: 20px;
  padding-left: 40px;
  border-top: 2px solid #000;
}

@media screen and (max-width: 768px) {
  .type-box section {
    width: 50%;
    max-width: 100%;
    padding-bottom: 15px;
    padding-left: 10px;
    border-bottom: 2px solid #000;
  }
}

.type-box section h3 {
  display: inline-block;
  background: linear-gradient(
    transparent 0,
    transparent 50%,
    #f1e5af 50%,
    #f1e5af 100%
  );
  font-weight: 700;
  font-size: 22px;
}

@media screen and (max-width: 768px) {
  .type-box section h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
  }
}

.type-box section p {
  margin: 0;
  font-weight: 700;
  font-size: 15px;
  line-height: 3;
}

@media screen and (max-width: 768px) {
  .type-box section p {
    font-size: 12px;
    line-height: 2;
  }
}

.type-box .space {
  position: relative;
  width: 60px;
}

@media screen and (max-width: 768px) {
  .type-box .space {
    display: none;
  }
}

.type-box .space::before {
  display: block;
  position: absolute;
  top: 118px;
  left: -92px;
  transform: rotate(76deg);
  width: 405%;
  height: 2px;
  background-color: #000;
  content: "";
}

.type-box .item {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px;
  border-bottom: 2px solid #000;
}

@media screen and (max-width: 768px) {
  .type-box .item {
    border-top: 2px solid #000;
  }
}

.text-01 {
  margin-right: 15px;
  margin-left: 15px;
  text-align: center;
}

.link {
  display: flex;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
  margin-bottom: 50px;
  border: 2px solid #000;
}

@media screen and (max-width: 768px) {
  .link {
    margin-right: 15px;
    margin-left: 15px;
  }
}

@media screen and (max-width: 550px) {
  .link {
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 50px;
  }
}

.link li {
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
}

@media screen and (max-width: 550px) {
  .link li {
    padding: 0;
  }
}

.link li:hover {
  background-color: #f1f2f7;
}

.link li:hover a img {
  transform: translateY(5px);
}

.link li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  border-right: 2px dotted #000;
  font-weight: 700;
}

@media screen and (max-width: 550px) {
  .link li a {
    border-right: none;
    border-bottom: 2px dotted #000;
  }
}

.link li a img {
  margin-right: 10px;
  transition: 0.3s;
}

.link li:nth-of-type(2) a {
  border: none;
}

.double {
  position: relative;
}

.double::before {
  display: block;
  position: absolute;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background-color: #000;
  content: "";
}

.recommend {
  padding-top: 30px;
  padding-bottom: 10px;
  background-color: #eaebef;
}

.recommend h3 {
  padding-bottom: 15px;
  border-bottom: 2px double #000;
  text-align: center;
}

.recommend .point-box {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .recommend .point-box {
    flex-direction: column;
  }
}

.recommend .point-box dl {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 991px) {
  .recommend .point-box dl {
    margin-right: 15px;
    margin-left: 15px;
  }
}

.recommend .point-box dl dt {
  display: flex;
  align-items: center;
}

.recommend .point-box dl dt span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-right: 10px;
  background-color: #748c8c;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-family: Poppins, sans-serif;
}

.recommend .point-box dl dt span b {
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
}

.recommend .point-box dl dt p {
  display: flex;
  align-items: center;
  position: relative;
  height: 1em;
  margin: 0;
  background: linear-gradient(
    transparent 0,
    transparent 50%,
    #fbff80 50%,
    #fbff80 100%
  );
  font-weight: 700;
  font-size: 20px;
}

.recommend .point-box dl dd {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 0;
  padding-top: 15px;
}

.recommend .point-box dl dd img {
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .recommend .point-box dl dd img {
    width: 100%;
  }
}

.recommend .point-box dl dd span {
  display: inline-block;
  margin: 0;
  margin-top: 8px;
  margin-bottom: 8px;
  padding-bottom: 3px;
  border-bottom: 1px dashed #000;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .recommend .point-box.ho {
    flex-direction: row;
  }
}

@media screen and (max-width: 550px) {
  .recommend .point-box.ho {
    flex-direction: column;
  }
}

.recommend .point-box.ho.re {
  flex-direction: row-reverse;
}

@media screen and (max-width: 550px) {
  .recommend .point-box.ho.re {
    flex-direction: column;
  }
}

.recommend .point-box.ho dl {
  justify-content: center;
  align-items: center;
}

.recommend .point-box.ho dl.title_clum {
  width: 100%;
  max-width: 240px;
}

@media screen and (max-width: 550px) {
  .recommend .point-box.ho dl.title_clum {
    width: auto;
    max-width: 100%;
  }

  .recommend .point-box.ho dl.title_clum dd p br:nth-of-type(1) {
    display: none;
  }

  .recommend .point-box.ho dl.title_clum dd p br:nth-of-type(2) {
    display: none;
  }

  .recommend .point-box.ho dl.title_clum dd p br:nth-of-type(4) {
    display: none;
  }
}

.recommend .point-box.ho dl dt {
  width: 100%;
}

.recommend .point-box.ho dl dt .alt {
  padding-top: 10px;
}

.recommend .point-box.ho dl dt .alt p {
  justify-content: flex-start;
  margin-bottom: 10px;
}

.recommend .point-box.ho dl dd {
  position: relative;
  width: 100%;
  margin-top: 45px;
  margin-bottom: 45px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

.recommend .point-box.ho dl dd::before {
  display: block;
  position: absolute;
  top: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #000;
  content: "";
}

.recommend .point-box.ho dl dd::after {
  display: block;
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: #000;
  content: "";
}

.recommend .point-box.ho dl dd p {
  width: 100%;
  margin: 0;
  font-weight: 700;
  font-size: 15px;
  line-height: 3;
}

.recommend .point-box.ho dl dd.bdn {
  margin: 0;
  padding: 0;
  border: none;
}

.recommend .point-box.ho dl dd.bdn::before {
  content: none;
}

.recommend .point-box.ho dl dd.bdn::after {
  content: none;
}

.coordinate {
  padding-top: 30px;
  padding-bottom: 10px;
}

.coordinate .container {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}

.coordinate h3 {
  padding-bottom: 15px;
  border-bottom: 2px double #000;
  text-align: center;
}

@media screen and (max-width: 550px) {
  .coordinate h3.single {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.coordinate dl {
  display: flex;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .coordinate dl {
    flex-direction: column;
    align-items: center;
  }
}

.coordinate dl dd {
  display: flex;
  align-items: center;
  padding-right: 1em;
  font-weight: 700;
  font-size: 15px;
  line-height: 2.2;
}

@media screen and (max-width: 768px) {
  .coordinate dl dd {
    margin: 0;
    padding-left: 1em;
  }
}

.coordinate .item-box {
  padding: 15px 0;
  padding-bottom: 0;
  background-color: #eaebef;
}

.coordinate .item-box h4 {
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 18px;
  padding-left: 18px;
  font-weight: 400;
  font-size: 18px;
  font-family: Poppins, sans-serif;
}

.coordinate .item-box ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
}

.coordinate .item-box ul li {
  display: flex;
  flex-direction: column;
  position: relative;
  width: calc(20% - 38px);
  margin-top: 20px;
  margin-bottom: 15px;
  padding-right: 18px;
  padding-left: 18px;
  border-right: 2px solid #fff;
}

.coordinate .item-box ul li a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.coordinate .item-box ul li a b {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
}

@media screen and (max-width: 991px) {
  .coordinate .item-box ul li {
    width: calc(25% - 38px);
  }
}

@media screen and (max-width: 768px) {
  .coordinate .item-box ul li {
    flex-direction: row;
    width: calc(50% - 38px);
  }
}

@media screen and (max-width: 550px) {
  .coordinate .item-box ul li {
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 18px;
    border-bottom: 2px solid #fff;
  }
}

.coordinate .item-box ul li:nth-of-type(5n) {
  border-right: none;
}

@media screen and (max-width: 991px) {
  .coordinate .item-box ul li:nth-of-type(5n) {
    border-right: 2px solid #fff;
  }
}

@media screen and (max-width: 991px) {
  .coordinate .item-box ul li:nth-of-type(4n) {
    border-right: none;
  }
}

@media screen and (max-width: 768px) {
  .coordinate .item-box ul li:nth-of-type(2n) {
    border-right: none;
  }
}

.coordinate .item-box ul li .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 170px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .coordinate .item-box ul li .img-box {
    width: 50%;
  }
}

.coordinate .item-box ul li p {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  font-feature-settings: "palt" 1;
}

@media screen and (max-width: 768px) {
  .coordinate .item-box ul li p {
    width: 50%;
    padding-left: 18px;
  }
}

.coordinate .item-box ul li p span {
  font-size: 12px;
}

.coordinate .item-box ul li b {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 36px;
  margin-top: auto;
  background-color: #fff;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .coordinate .item-box ul li b {
    position: absolute;
    right: 12%;
    bottom: 0;
    width: 100px;
  }
}

@media screen and (max-width: 550px) {
  .coordinate .item-box ul li b {
    bottom: 18px;
  }
}

.coordinate .item-box.sec-02 {
  background-color: #e4f7f4;
}

.coordinate .item-box.sec-03 {
  background-color: #f8edef;
}

.coordinate .item-box.sec-04 {
  background-color: #f9f1e2;
}

.coordinate .item-box.sec-05 {
  background-color: #edf4e4;
}

.coordinate .item-box.sec-06 {
  background-color: #f5eff7;
}

footer .coordinate {
  margin-top: 50px;
  padding-top: 80px;
  border-top: 6px solid #eaebef;
}

@media screen and (max-width: 550px) {
  footer .coordinate {
    margin-top: 30px;
    padding-top: 50px;
  }
}

@media screen and (max-width: 550px) {
  footer .search-box {
    margin-bottom: 0 !important;
  }
}

footer .search-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

@media screen and (max-width: 550px) {
  footer .search-box ul {
    padding-right: 15px;
    padding-left: 15px;
  }
}

footer .search-box ul li {
  width: 33.3333333333%;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  footer .search-box ul li {
    width: 50%;
  }
}

footer .search-box ul li a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

footer .search-box ul li a img {
  margin-top: auto;
}

footer .search-box ul li a span {
  display: flex;
  align-items: center;
  margin-top: 20px;
  font-weight: 700;
  font-size: 21px;
}

@media screen and (max-width: 550px) {
  footer .search-box ul li a span {
    font-size: 18px;
  }
}

footer .search-box ul li a span img {
  margin-top: 0;
  margin-right: 10px;
}

footer .number-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}

footer .number-box ul li {
  margin-right: 10px;
  margin-left: 10px;
}

footer .color-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  max-width: 750px;
  margin: 50px auto;
}

footer .color-box ul li {
  width: 112px;
  margin-right: 15px;
  margin-bottom: 15px;
  margin-left: 15px;
  text-align: center;
}

footer .copyright {
  font-size: 10px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cate .mv {
    padding-top: 0;
  }
}

.cate .mv h2 {
  margin-bottom: 80px;
  padding-right: 15px;
  padding-left: 15px;
}

@media screen and (max-width: 768px) {
  .cate .mv h2 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.cate .item-box {
  display: flex;
  flex-wrap: wrap;
  padding-right: 12px;
  padding-left: 12px;
  box-sizing: border-box;
}

.cate .item-box.line-3 .item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 24px) / 3);
  margin-right: 12px;
  margin-bottom: 30px;
}

.cate .item-box.line-3 .item:nth-of-type(3n) {
  margin-right: 0;
}

@media screen and (max-width: 550px) {
  .cate .item-box.line-3 .item {
    width: calc((100% - 12px) / 2);
  }

  .cate .item-box.line-3 .item:nth-of-type(3n) {
    margin-right: 12px;
  }

  .cate .item-box.line-3 .item:nth-of-type(2n) {
    margin-right: 0;
  }
}

.cate .item-box.line-3 .item p {
  margin-top: 5px;
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-align: center;
}

.cate .item-box.line-3 .item p:nth-of-type(2) {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 11px;
  text-align: center;
}

.cate .item-box.line-3 .item .bd {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  margin-bottom: 8px;
  border-bottom: 2px dotted #000;
}

.cate .item-box.line-3 .item .bd::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #000;
  content: "";
}

.cate .item-box.line-3 .item .bd::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #000;
  content: "";
}

.cate .item-box.line-3 .item a {
  text-align: right;
}

.cate .item-box.line-2 {
  max-width: 662px;
}

.cate .item-box.line-2 .item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 12px) / 2);
  margin-right: 12px;
  margin-bottom: 30px;
}

.cate .item-box.line-2 .item:nth-of-type(2n) {
  margin-right: 0;
}

.cate .item-box.line-2 .item p {
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-align: center;
}

.cate .item-box.line-2 .item p:nth-of-type(2) {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 11px;
  text-align: center;
}

.cate .item-box.line-2 .item .bd {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  margin-bottom: 8px;
  border-bottom: 2px dotted #000;
}

.cate .item-box.line-2 .item .bd::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #000;
  content: "";
}

.cate .item-box.line-2 .item .bd::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #000;
  content: "";
}

.cate .item-box.line-2 .item a {
  text-align: right;
}

.cate .bnr-box {
  display: flex;
  margin-top: 15px;
  margin-bottom: 80px;
}

@media screen and (max-width: 991px) {
  .cate .bnr-box {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .cate .bnr-box {
    margin-bottom: 30px;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
  }
}

.cate .bnr-box a {
  display: flex;
}

@media screen and (max-width: 991px) {
  .cate .bnr-box a {
    justify-content: center;
    margin-bottom: 15px;
  }
}

.cate .bnr-box a:nth-of-type(2) {
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: 10px;
  padding: 15px;
  border: 2px solid #000;
}

@media screen and (max-width: 991px) {
  .cate .bnr-box a:nth-of-type(2) {
    max-width: 650px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
  }
}

.cate .search-box {
  margin-top: 15px;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .cate .search-box {
    margin-bottom: 30px;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
  }
}

/*# sourceMappingURL=style.css.map */

/* 20250807改修 */

.sd-type {
  padding: 80px 0;
  text-align: center;
}

.sd-type_container {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.sd-type_heading {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  margin-top: 3px;
  margin-bottom: 16px;
}

.sd-type_description {
  font-size: 14px;
  text-align: left;
  line-height: 1.8;
}

.sd-type_image-block img {
  max-width: 100%;
  height: auto;
}

.sd-type_btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 12px 100px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 50px;
  position: relative;
  transition: all 0.3s ease;
}

.sd-type_btn::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
}

@media screen and (max-width: 991px) {
  .sd-type {
    padding: 30px 15px;
  }
}

@media screen and (max-width: 768px) {
  .sd-type_container {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: space-between;
  }
}

@media screen and (max-width: 455px) {
  .sd-type_heading {
    font-size: 18px;
  }

  .sd-type_btn {
    display: block;
    margin-top: 20px;
  }
}
