<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*--------------------------------------------------------------------------------
header／footer／pagetop／cta_fixed
--------------------------------------------------------------------------------*/

/*----------------------------------------
header【ヘッダーレイアウト】
----------------------------------------*/

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 120px;
  background-color: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

header .hdr_wrap {
  position: relative;
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

header .hdr_wrap .hdr_btn {
  position: absolute;
  right: 100px;
  display: flex;
  gap: 20px;
}

header .hdr_wrap .hdr_btn ol {
  text-align: center;
  display: flex;
  gap: 20px;
}

header .hdr_wrap .hdr_btn ol li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  font-weight: 700;
}

header .hdr_wrap .hdr_btn ol li.cta_open a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 60px;
  margin: 0 auto;
  border-radius: 16px;
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
  color: #fff;
  background-color: #f10019;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

header .hdr_wrap .hdr_btn ol li.cta_open a em {
  border-radius: 20px;
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
  color: #f10019;
  background-color: #fff;
  padding: 0 10px;
  margin-right: 10px;
}

header .hdr_wrap .hdr_btn ol li.cta_add a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 60px;
  margin: 0 auto;
  border-radius: 16px;
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
  color: #fff;
  background-color: #f75e18;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    height: calc(60 * (100vw / 375));
    background-color: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  }

  header .hdr_wrap {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
  }

  header .hdr_wrap .hdr_logo {
    width: calc(130 * (100vw / 375));
    margin: 0 calc(50 * (100vw / 375)) 0 calc(15 * (100vw / 375));
  }

  header .hdr_wrap .hdr_btn {
    position: relative;
    right: calc(10 * (100vw / 375));
  }

  header .hdr_wrap .hdr_btn ol {
    display: flex;
    flex-wrap: wrap;
    gap: calc(10 * (100vw / 375));
  }

  header .hdr_wrap .hdr_btn ol li {
    width: calc(60 * (100vw / 375));
    height: auto;
  }
  header .hdr_wrap .hdr_btn ol li.cta_open a,
  header .hdr_wrap .hdr_btn ol li.cta_add a {
    width: 100%;
    height: auto;
    background-color: #fff;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  }
}

/*----------------------------------------
.burgermenu【ドロワー＞ボタン】
----------------------------------------*/
.burgermenu {
  position: absolute;
  z-index: 99999;
  top: 20px;
  right: 0;
  cursor: pointer;
  width: 80px;
  height: 80px;
  background-color: #fff;
}

.burgermenu span {
  display: inline-block;
  transition: all 0.2s;
  position: absolute;
  left: 40px;
  height: 2px;
  border-radius: 2px;
  background-color: #333;
  width: 40px;
  transform: translateX(-50%);
  left: 50%;
}

.burgermenu span:nth-of-type(1) {
  top: 25px;
}

.burgermenu span:nth-of-type(2) {
  top: 40px;
}

.burgermenu span:nth-of-type(3) {
  top: 55px;
}

.burgermenu.active span {
  top: 50%;
}

.burgermenu.active span:nth-of-type(1) {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.burgermenu.active span:nth-of-type(2) {
  opacity: 0;
}

.burgermenu.active span:nth-of-type(3) {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

/*for SP*/
@media screen and (max-width: 768px) {
  .burgermenu {
    position: absolute;
    z-index: 99999;
    top: 0;
    right: 0;
    cursor: pointer;
    width: calc(60 * (100vw / 375));
    height: calc(60 * (100vw / 375));
    background-color: #fff;
  }

  .burgermenu span {
    display: inline-block;
    transition: all 0.2s;
    position: absolute;
    left: calc(16 * (100vw / 375));
    height: calc(3 * (100vw / 375));
    border-radius: calc(3 * (100vw / 375));
    background-color: #333;
    width: calc(30 * (100vw / 375));
    transform: translateX(-50%);
    left: 50%;
  }

  .burgermenu span:nth-of-type(1) {
    top: calc(19 * (100vw / 375));
  }

  .burgermenu span:nth-of-type(2) {
    top: calc(29 * (100vw / 375));
  }

  .burgermenu span:nth-of-type(3) {
    top: calc(39 * (100vw / 375));
  }

  .burgermenu.active span {
    top: 50%;
  }

  .burgermenu.active span:nth-of-type(1) {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }

  .burgermenu.active span:nth-of-type(2) {
    opacity: 0;
  }

  .burgermenu.active span:nth-of-type(3) {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
}

/*----------------------------------------
#menu【ドロワー＞中身】
----------------------------------------*/

#menu {
  position: absolute;
  z-index: 9999;
  top: 120px;
  right: 0;
  width: 600px;
  height: fit-content;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  display: none;
  opacity: 0;
}

#menu.panelactive {
  display: block;
  opacity: 1;
}

#menu::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

#menu::-webkit-scrollbar-track {
  background: #fdeee6;
}

#menu::-webkit-scrollbar-thumb {
  background: #ff9861;
  border-radius: 5px;
}

#menu ul li {
  list-style: none;
}

#menu ul li.ttl {
  font-size: 20px;
  padding: 20px;
  color: #968c6c;
}

#menu ul,
#menu ul li + li {
  border-top: solid 1px #ddd;
}

#menu ul li a {
  display: block;
  width: 100%;
  font-weight: 700;
  text-align: left;
  box-sizing: border-box;
  color: #333;
  text-decoration: none;
  padding: 20px;
}

/*for SP*/
@media screen and (max-width: 768px) {
  #menu {
    position: absolute;
    z-index: 9999;
    top: calc(60 * (100vw / 375));
    right: 0;
    width: 100%;
    height: calc(100vh - (60 * (100vw / 375)));
    margin: 0;
    padding: 0;
    background: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    display: none;
    opacity: 0;
  }

  #menu.panelactive {
    display: block;
    opacity: 1;
    height: fit-content;
  }

  #menu::-webkit-scrollbar {
    width: calc(10 * (100vw / 375));
    height: calc(10 * (100vw / 375));
  }

  #menu::-webkit-scrollbar-track {
    background: #fdeee6;
  }

  #menu::-webkit-scrollbar-thumb {
    background: #ff9861;
    border-radius: calc(5 * (100vw / 375));
  }

  #menu ul {
    border-top: solid 1px #ddd;
  }

  #menu ul li .u-text-S {
    font-size: calc(12 * (100vw / 375));
  }

  #menu ul li a {
    display: block;
    width: 100%;
    font-size: calc(16 * (100vw / 375));
    line-height: 1.4;
    text-align: left;
    box-sizing: border-box;
    color: #333;
    background: #fff;
    text-decoration: none;
    padding: calc(10 * (100vw / 375));
  }

  #menu ul li a:hover {
    color: #eb5505;
    opacity: 1;
  }

  #menu ol {
    background-color: #eeeeee;
    text-align: center;
    padding: calc(20 * (100vw / 375)) 0;
    display: flex;
    flex-direction: inherit;
    flex-wrap: wrap;
    gap: calc(15 * (100vw / 375));
    justify-content: center;
    font-size: calc(12 * (100vw / 375));
  }

  /* #menu ol li.col1,
  #menu ol li.col1 img {
    width: calc(335 * (100vw / 375));
  }

  #menu ol li.col2,
  #menu ol li.col2 img {
    width: calc(160 * (100vw / 375));
  } */

  #menu ol li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    font-weight: 700;
  }

  #menu ol li.cta_open a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(335 * (100vw / 375));
    height: calc(60 * (100vw / 375));
    margin: 0 auto;
    border-radius: calc(16 * (100vw / 375));
    font-size: 1.8rem;
    line-height: 1.4;
    text-align: center;
    font-weight: 700;
    color: #fff;
    background-color: #f10019;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
  }

  #menu ol li.cta_open a em {
    border-radius: calc(20 * (100vw / 375));
    font-size: 1.4rem;
    line-height: 1.4;
    text-align: center;
    font-weight: 700;
    color: #f10019;
    background-color: #fff;
    padding: 0 calc(10 * (100vw / 375));
    margin-right: calc(10 * (100vw / 375));
  }

  #menu ol li.cta_add a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(335 * (100vw / 375));
    height: calc(60 * (100vw / 375));
    margin: 0 auto;
    border-radius: calc(16 * (100vw / 375));
    font-size: 1.8rem;
    line-height: 1.4;
    text-align: center;
    font-weight: 700;
    color: #fff;
    background-color: #f75e18;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
  }
}

/*----------------------------------------
footer【フッターレイアウト】
----------------------------------------*/
footer {
  background-color: #fff;
  width: 1000px;
  height: auto;
  margin: 0 auto;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  padding: 40px 0 0;
  gap: 40px;
}

footer .company {
  width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer .copy {
  background-color: #333333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  box-sizing: border-box;
}

/*for SP*/
@media screen and (max-width: 768px) {
  footer {
    width: 100%;
    gap: calc(40 * (100vw / 375));
    padding: calc(40 * (100vw / 375)) 0 0;
  }

  footer .company {
    width: calc(335 * (100vw / 375));
    gap: calc(24 * (100vw / 375));
  }

  footer .copy {
    padding: calc(10 * (100vw / 375)) 0;
  }
}

/*----------------------------------------
.pagetop【ページトップに戻るボタン】
----------------------------------------*/
.pagetop {
  position: fixed;
  z-index: 999;
  bottom: 50px;
  right: 50px;
  width: 80px;
  height: 80px;
  /* border-radius: 40px; */
  /* background-color: rgba(0, 0, 0, 0.5); */
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

/* .pagetop a::after {
  content: "";
  width: 15px;
  height: 15px;
  border: 0;
  border-top: solid 3px #fff;
  border-left: solid 3px #fff;
  position: absolute;
  top: 35px;
  left: 30px;
  transform: rotate(45deg);
} */

/*for SP*/
@media screen and (max-width: 768px) {
  .pagetop {
    bottom: calc(15 * (100vw / 375));
    right: calc(15 * (100vw / 375));
    width: calc(50 * (100vw / 375));
    height: calc(50 * (100vw / 375));
    border-radius: 0;
  }

  /* .pagetop a::after {
    width: calc(10 * (100vw / 375));
    height: calc(10 * (100vw / 375));
    border-top: solid 2px #fff;
    border-left: solid 2px #fff;
    top: calc(16 * (100vw / 375));
    left: calc(13 * (100vw / 375));
  } */
}

/*----------------------------------------
.cta_fixed 【SP用CTA追従】
----------------------------------------*/
/*for SP*/
@media screen and (max-width: 768px) {
  .cta_fixed {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: calc(60 * (100vw / 375));
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cta_fixed a {
    display: block;
    width: calc(120 * (100vw / 375));
    height: calc(40 * (100vw / 375));
  }
}

/*----------------------------------------
.modal-wrap【モーダル】
----------------------------------------*/
.modal-wrap {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 10px;
  text-align: center;
}

/* .modal-button {
  color: #4f96f6;
  background-color: #eeeeee;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  display: block;
  margin-top: 40px;
  margin-bottom: 1px;
  padding: 12px 2px;
  max-width: 300px;
  text-decoration: none;
} */

.modal-wrap:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-wrap:target {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s, visibility 0.4s;
}

.modal-wrap::after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  vertical-align: middle;
  content: "";
}

.modal-wrap .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 90%;
  max-width: 900px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  vertical-align: middle;
}

.modal-wrap .modal-window .modal-cnt {
  max-height: 80vh;
  overflow-y: auto;
  text-align: left;
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}

.modal-overlay:hover {
  opacity: 1;
}

.modal-wrap .modal-close {
  z-index: 20;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 35px;
  color: #888 !important;
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0;
}

/*for SP*/
@media screen and (max-width: 768px) {
  .modal-wrap {
    padding: calc(20 * (100vw / 375)) calc(10 * (100vw / 375));
  }

  .modal-wrap .modal-window {
    max-width: 90%;
    padding: calc(15 * (100vw / 375));
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.6);
  }

  .modal-wrap .modal-close {
    z-index: 20;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 35px;
    color: #888 !important;
    font-size: 30px;
    font-weight: 700;
    line-height: 35px;
    text-align: center;
    text-decoration: none;
    text-indent: 0;
  }
}
</pre></body></html>