@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*add reset styles*/
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/*Break Point
------------------------------*/
/*font
---------------------------------*/
/*color
---------------------------------*/
body {
  color: #40220f;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.6;
  }
}

.header {
  padding: 20px 30px;
  background-color: #fff;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
@media print, screen and (max-width: 1023.9px) {
  .header {
    padding: 15px 15px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  width: 210px;
}
@media print, screen and (max-width: 1023.9px) {
  .header__logo {
    width: 120px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.header__menu-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media print, screen and (max-width: 1023.9px) {
  .header__menu {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    gap: 0;
    background-color: #fff;
  }
}
@media print, screen and (min-width: 1024px) {
  .header__menu {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__link {
  width: 180px;
}
@media print, screen and (max-width: 1023.9px) {
  .header__link {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background-color: #ee87b4;
    color: #fff;
    text-align: center;
    padding: 14px 0;
    font-size: 14px;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .header__link + .header__link {
    border-left: 1px solid #fff;
  }
}

@media print, screen and (max-width: 1023.9px) {
  .header__tel {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 10px;
  }
}
@media print, screen and (min-width: 1024px) {
  .header__tel {
    pointer-events: none;
    width: 200px;
  }
}

.hamburger {
  background-color: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
.hamburger.-active .hamburger__line:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.hamburger.-active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger.-active .hamburger__line:nth-of-type(3) {
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.hamburger.-active::after {
  content: "閉じる";
}
.hamburger::after {
  content: "MENU";
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  color: #4c4948;
  text-align: center;
  font-size: 10px;
  margin-top: 5px;
}
@media print, screen and (max-width: 1023.9px) {
  .hamburger::after {
    font-size: 8px;
    margin-top: 2px;
  }
}

.hamburger__body {
  position: relative;
  width: 30px;
  height: 20px;
}
@media print, screen and (max-width: 1023.9px) {
  .hamburger__body {
    width: 25px;
    height: 15px;
  }
}

.hamburger__line {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  display: block;
  background-color: #4c4948;
}
.hamburger__line:nth-of-type(1) {
  top: 0;
}
.hamburger__line:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hamburger__line:nth-of-type(3) {
  bottom: 0;
}

.hamburger-menu {
  display: none;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100vw;
  height: 100vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hamburger-menu.-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hamburger-menu__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.footer {
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  padding-bottom: 20px;
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media print, screen and (max-width: 1023.9px) {
  .footer__row {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.footer__link {
  display: block;
  color: #4c4948;
  font-weight: bold;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-left: 1px solid #000;
  font-size: 14px;
}
@media print, screen and (max-width: 1023.9px) {
  .footer__link {
    font-size: 10px;
  }
}
.footer__link:last-of-type {
  border-right: 1px solid #000;
}

.footer__copyright {
  color: #4c4948;
  text-align: center;
  font-weight: bold;
  margin-top: 30px;
  font-size: 13px;
}
@media print, screen and (max-width: 1023.9px) {
  .footer__copyright {
    font-size: 14px;
    padding-bottom: 50px;
    font-size: 10px;
  }
}

@media print, screen and (min-width: 1024px) {
  .sp {
    display: none !important;
  }
}

@media print, screen and (max-width: 1023.9px) {
  .pc {
    display: none !important;
  }
}

@media print, screen and (max-width: 1023.9px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.section-ttl {
  text-align: center;
  font-size: 22px;
  color: #fff;
  padding: 10px 0;
  background-image: url(../img/bg-bar.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  font-weight: bold;
  margin-top: 50px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
}
@media print, screen and (max-width: 1023.9px) {
  .section-ttl {
    margin-top: 30px;
  }
}

.mv {
  position: relative;
}
@media print, screen and (max-width: 1023.9px) {
  .mv {
    height: calc(100vh - 70px);
  }
}

@media print, screen and (max-width: 1023.9px) {
  .mv__bg {
    height: 100%;
  }
  .mv__bg img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    -o-object-position: 95% 0%;
       object-position: 95% 0%;
  }
}

.mv__heading {
  position: absolute;
  top: 42%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 560px;
}
@media print, screen and (max-width: 1023.9px) {
  .mv__heading {
    width: 73%;
    top: 45%;
    width: 90%;
  }
}

.mv__bnr {
  position: absolute;
  bottom: 15px;
  left: 15px;
  max-width: 300px;
}
@media print, screen and (max-width: 1023.9px) {
  .mv__bnr {
    width: 44%;
    bottom: 4%;
    left: 2%;
  }
}

.support {
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: url(../img/bg-pink.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media print, screen and (max-width: 1023.9px) {
  .support {
    padding-top: 40px;
    padding-bottom: 0px;
  }
}

.support__support-wrap {
  padding: 40px 0;
  background-image: url(../img/bg-img.jpg);
  background-size: cover;
}
@media print, screen and (max-width: 1023.9px) {
  .support__support-wrap {
    padding: 30px 20px;
  }
}

.support__support {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.support__card-sp {
  padding: 40px 20px;
}

.support__row {
  margin-top: 70px;
  margin-right: auto;
  margin-left: auto;
  display: -ms-grid;
  display: grid;
  gap: 30px;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
}
@media print, screen and (max-width: 1023.9px) {
  .support__row {
    padding-right: 20px;
    padding-left: 20px;
    gap: 15px;
    margin-top: 40px;
  }
}

.sengen {
  margin-top: 60px;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid #ee87b4;
  max-width: 1000px;
  padding: 40px;
}
@media print, screen and (max-width: 1023.9px) {
  .sengen {
    width: calc(100% - 40px);
    padding: 30px 20px;
    margin-top: 30px;
  }
}

.sengen__line {
  width: 130px;
  margin-top: -50px;
}
@media print, screen and (max-width: 1023.9px) {
  .sengen__line {
    width: 25%;
    margin-top: 0;
  }
}

.sengen__ttl-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
@media print, screen and (max-width: 1023.9px) {
  .sengen__ttl-wrap {
    gap: 10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.sengen__ttl {
  color: #4c4948;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 36px;
}
@media print, screen and (max-width: 1023.9px) {
  .sengen__ttl {
    font-size: 24px;
  }
}

.sengen__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media print, screen and (max-width: 1023.9px) {
  .sengen__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 20px;
  }
}

.sengen__ribon {
  max-width: 100px;
}
@media print, screen and (max-width: 1023.9px) {
  .sengen__ribon {
    margin-left: auto;
    width: 20%;
  }
}

@media print, screen and (min-width: 1024px) {
  .sengen__document {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 40%;
  }
}

.sengen__copy {
  font-size: 20px;
  font-weight: bold;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #888;
}
@media print, screen and (max-width: 1023.9px) {
  .sengen__copy {
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-size: 17px;
  }
}

.sengen__text {
  font-size: 15px;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}
@media print, screen and (max-width: 1023.9px) {
  .sengen__text {
    font-size: 13px;
  }
}

.table {
  margin-top: 30px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
}
@media print, screen and (max-width: 1023.9px) {
  .table {
    margin-top: 23px;
  }
}

.table-cap {
  margin-top: 30px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
}
@media print, screen and (max-width: 1023.9px) {
  .table-cap {
    font-size: 12px;
    margin-top: 20px;
  }
}
.table-cap + .table-cap {
  margin-top: 15px;
}

.please {
  padding: 15px 0 14px;
  font-weight: bold;
  color: #4c4948;
  border: 1px solid #ee87b4;
  background-color: #fff100;
  text-align: center;
  position: relative;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 30px;
  font-size: 22px;
  line-height: 1.6;
}
@media print, screen and (max-width: 1023.9px) {
  .please {
    margin-top: 30px;
    padding: 15px 15px;
    font-size: 14px;
    line-height: 2;
  }
}

.triangle {
  position: absolute;
  width: 20px;
}
.triangle.-n1 {
  top: 0;
  left: 0;
}
.triangle.-n2 {
  bottom: 0;
  right: 0;
}

.service {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 30px;
}
@media print, screen and (max-width: 1023.9px) {
  .service {
    padding: 20px 0;
    margin-top: 0px;
  }
}

.service__pc {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.service__sp {
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px;
  margin: 0 -20px;
}
@media print, screen and (max-width: 1023.9px) {
  .service__sp {
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 -20px;
    gap: 10px;
  }
}

.service__item {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  background-color: #ee87b4;
  text-align: center;
  height: 60px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  letter-spacing: 0px;
}
@media print, screen and (max-width: 1023.9px) {
  .service__item {
    font-size: 15px;
    height: 50px;
    letter-spacing: 0;
  }
}

.service-bnr {
  max-width: 1000px;
  margin-top: 70px;
  margin-right: auto;
  margin-left: auto;
  display: block;
}
@media print, screen and (max-width: 1023.9px) {
  .service-bnr {
    margin-top: 20px;
  }
}

.sanyo {
  background-image: url(../img/bg-bar2.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10px 0;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  border-right: 1px solid #aaa;
}
@media print, screen and (max-width: 1023.9px) {
  .sanyo {
    margin-top: 40px;
  }
}
.sanyo img {
  max-width: 170px;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 1023.9px) {
  .sanyo img {
    max-width: 130px;
  }
}