.sp__button {
  display: inline;
}
@media (min-width: 768px) {
  .sp__button {
    display: none !important;
  }
}

.sp {
  display: block;
}
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.pc {
  display: none;
}
@media (min-width: 768px) {
  .pc {
    display: block !important;
  }
}

.sp-lg {
  display: block;
}
@media (min-width: 992px) {
  .sp-lg {
    display: none !important;
  }
}

.pc-lg {
  display: none;
}
@media (min-width: 992px) {
  .pc-lg {
    display: block !important;
  }
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}

body {
  color: #333;
  font-family: "M PLUS 1p", sans-serif;
  text-align: center;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.9rem;
}

a:hover {
  opacity: 0.5;
  transition: 0.3s;
}

.none {
  display: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  margin-top: -1px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333;
}

.inline-block {
  display: inline-block;
}

.btn {
  display: inline-block;
  margin: 0;
}
@media (min-width: 768px) {
  .btn {
    margin-top: 0.5em;
  }
}
.btn__secondary {
  color: #63B19E;
  border-bottom: 1px solid #63B19E;
}
.btn i {
  margin-right: 3px;
}

.header {
  width: 96%;
  padding: 5px 2%;
  display: flex;
  gap: 2%;
  align-items: center;
  position: fixed;
  top: 0;
  background-color: #fff;
  z-index: 999999;
}
.header .header__logo {
  width: 60px;
}
.header .header__youtube-icon {
  position: absolute;
  top: 17px;
  z-index: 1;
  font-size: 3.2rem;
}
.header .header__instagram-icon {
  padding: 6px 8px;
  font-size: 3.2rem;
  color: #6E552D;
}
.header .header__consultation {
  margin-top: -5px;
  margin-right: 2%;
  z-index: 999;
  color: #fff;
  font-size: 2.2rem;
  padding: 15px 30px;
  border-radius: 0 0 5px 5px;
  box-shadow: 1px 1px 20px rgba(51, 51, 51, 0.1882352941);
  background: rgba(204, 0, 0, 0.884);
}
@media (min-width: 768px) {
  .header .header__consultation {
    margin-right: 0;
  }
}

.open-btn {
  background: transparent;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  z-index: 99999;
  border: none;
  position: relative;
}

.open-btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  transform: translate(-50%, -50%);
  height: 3px;
  left: 50%;
  border-radius: 5px;
  background: #6E552D;
  width: 25px;
}

.open-btn::after {
  content: "MENU";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "M PLUS 1p";
  display: block;
  font-size: 1rem;
  text-align: center;
  color: #6E552D;
}

.open-btn.active::after {
  content: "CLOSE";
  font-family: "M PLUS 1p";
  display: block;
  font-size: 1rem;
  text-align: center;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #6E552D;
}

.open-btn span:nth-of-type(1) {
  top: 8px;
}

.open-btn span:nth-of-type(2) {
  top: 26px;
}

.open-btn span:nth-of-type(3) {
  top: 17px;
}

.open-btn.active span:nth-of-type(1) {
  top: 11px;
  left: 10px;
  transform: translateY(6px) rotate(-45deg);
}

.open-btn.active span:nth-of-type(2) {
  top: 23px;
  left: 10px;
  transform: translateY(-6px) rotate(45deg);
}

.open-btn.active span:nth-of-type(3) {
  display: none;
}

.burger-nav {
  width: 100vw;
  height: 100vh;
  overflow-y: hidden;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 9999;
  background-color: #fff;
  transition: all 0.6s;
}
@media (min-width: 768px) {
  .burger-nav {
    width: 400px;
    padding-right: calc(50% - 1290px);
    transition: all 0.4s;
  }
}
.burger-nav .burger-nav__title {
  margin-top: 70px;
  margin-bottom: 10px;
  font-size: 3.2rem;
  color: #6E552D;
  font-family: "Zen Tokyo Zoo", cursive;
  font-weight: 400;
}
.burger-nav .burger-nav__line {
  width: 90%;
  margin: 0 auto 40px;
}
.burger-nav .burger-nav__line .burger-nav__line__top {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #6E552D;
  margin-bottom: 1px;
}
.burger-nav .burger-nav__line .burger-nav__line__center {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #6E552D;
  margin-bottom: 1px;
}
.burger-nav .burger-nav__line .burger-nav__line__bottom {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #6E552D;
}
.burger-nav .burger-nav__nav {
  width: 265px;
  text-align: left;
  margin: 0 auto;
  font-size: 2.2rem;
  line-height: 3.3rem;
}
.burger-nav .burger-nav__nav .burger-nav__nav__ul li {
  margin-bottom: 44px;
}
.burger-nav .burger-nav__nav .burger-nav__nav__ul li:last-child {
  margin-bottom: 66px;
}
.burger-nav .burger-nav__sns {
  display: flex;
  gap: 40px;
  margin-bottom: 70px;
  justify-content: center;
}
.burger-nav .burger-nav__sns .burger-nav__sns__youtube {
  width: 40px;
}
.burger-nav .burger-nav__sns .burger-nav__sns__instagram,
.burger-nav .burger-nav__sns .burger-nav__sns__line {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
}
.burger-nav .burger-nav__sns .burger-nav__sns__instagram a,
.burger-nav .burger-nav__sns .burger-nav__sns__line a {
  display: block;
  padding: 10px;
}

.burger-nav__nav__ul a {
  display: block;
}

.burger-nav__nav__ul li a img {
  width: 25px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}

.panelactive {
  right: 0;
}

.top__title {
  text-align: left;
  margin-top: 1.6px;
  margin-right: auto;
  margin-left: 2%;
  line-height: 1.2;
  color: #6E552D;
}
@media (min-width: 768px) {
  .top__title {
    top: 30%;
    margin-left: 0;
  }
}

.top {
  max-width: 2560px;
  position: relative;
  height: calc(100vh - 55px - 50px);
  margin-top: 55px;
}
@media (min-width: 768px) {
  .top {
    height: 100vh;
    max-height: 800px;
    margin-bottom: 30px;
    margin-top: 64px;
  }
}
.top .slide-image {
  height: 100%;
}
.top .slide-image .slick-list {
  height: 100%;
}
.top .slide-image .slick-list .slick-track {
  height: 100%;
}
.top .slide-image .slick-list .slick-track img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 70%;
     object-position: 50% 70%;
}
.top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
}
.top .top__sub-title {
  position: absolute;
  z-index: 1;
  font-size: 4.2rem;
  line-height: 1.3;
  font-weight: 500;
  color: #63B19E;
  text-shadow: 3px 3px 3px #fff, -3px -3px 3px #fff, -3px 3px 3px #fff, 3px -3px 3px #fff, 3px 0px 3px #fff, -3px 0px 3px #fff, 0px 3px 3px #fff, 0px -3px 3px #fff;
  width: 100%;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .top .top__sub-title {
    top: 55%;
    font-size: 7.4rem;
    line-height: 9rem;
  }
}
.top .top__sub-title .top__sub-title__headline {
  display: block;
}
.top .top__cat {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .top .top__cat {
    right: 5%;
    bottom: 5%;
  }
}
.top .top__cat .top__cat__title {
  text-align: center;
  font-family: "Kaisei Opti", serif;
  line-height: 1.2;
  position: relative;
  width: 40%;
  height: 50%;
  border-radius: 50%;
  background-color: #EDED6C;
  padding: 18px 20px;
  text-shadow: 3px 3px 3px #fff, -3px -3px 3px #fff, -3px 3px 3px #fff, 3px -3px 3px #fff, 3px 0px 3px #fff, -3px 0px 3px #fff, 0px 3px 3px #fff, 0px -3px 3px #fff;
  transform: rotate(-6deg);
}
@media (min-width: 768px) {
  .top .top__cat .top__cat__title {
    width: 65%;
    font-size: 2.2rem;
    line-height: 3.3rem;
    padding: 25px 30px;
  }
}
.top .top__cat .top__cat__title::after {
  position: absolute;
  content: "";
  right: 0px;
  bottom: 10px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 30px solid #EDED6C;
  transform: rotate(20deg);
}
@media (min-width: 768px) {
  .top .top__cat .top__cat__title::after {
    right: 10px;
  }
}
.top .top__cat .top__cat__image {
  width: 30%;
  min-width: 120px;
}
@media (min-width: 768px) {
  .top .top__cat .top__cat__image {
    width: 35%;
  }
}
.top .top__cat .top__cat__image p {
  font-size: 0.8rem;
  line-height: 1.2rem;
}
.top .top__bottom-background {
  position: absolute;
  width: 100%;
  right: 0;
  bottom: -1px;
}

.top-bottom-text {
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
  font-size: 1.4rem;
  line-height: 2.6rem;
  text-align: left;
  padding: 0 5%;
}
@media (min-width: 768px) {
  .top-bottom-text {
    font-size: 2.2rem;
    line-height: 3.6rem;
  }
}
.top-bottom-text h2 {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 400;
  text-align: center;
  font-family: "Kaisei Opti", serif;
}
@media (min-width: 768px) {
  .top-bottom-text h2 {
    font-size: 4rem;
    line-height: 4.5rem;
    margin-bottom: 10px;
  }
}
.top-bottom-text .line__top {
  min-width: 310px;
  max-width: 500px;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 1px;
}
@media (min-width: 768px) {
  .top-bottom-text .line__top {
    height: 2px;
  }
}
.top-bottom-text .line__center {
  min-width: 310px;
  max-width: 500px;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 1px;
}
@media (min-width: 768px) {
  .top-bottom-text .line__center {
    height: 2px;
  }
}
.top-bottom-text .line__bottom {
  min-width: 310px;
  max-width: 500px;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 5px;
}
@media (min-width: 768px) {
  .top-bottom-text .line__bottom {
    height: 2px;
  }
}
.top-bottom-text .top-bottom-text__triangle {
  width: 0;
  height: 0;
  margin: 0 auto;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: #63B19E transparent transparent transparent;
}

.quality {
  padding: 0 5% 50px;
}
@media (min-width: 768px) {
  .quality {
    padding-bottom: 100px;
  }
}
.quality h2 {
  font-weight: 400;
  color: #6E552D;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .quality h2 {
    font-size: 3rem;
    line-height: 1.5;
    margin-bottom: 50px;
  }
}
.quality h2::before {
  content: attr(title) "Quality";
  display: block;
  color: #63B19E;
  font-size: 3.2rem;
  font-family: "Zen Tokyo Zoo", cursive;
  font-weight: 400;
}
@media (min-width: 768px) {
  .quality h2::before {
    font-size: 4.2rem;
    line-height: 1;
  }
}
.quality ul {
  display: flex;
  max-width: 1140px;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .quality ul {
    flex-direction: row;
    justify-content: center;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .quality ul {
    padding: 0;
  }
}
.quality ul .quality__content {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2%;
}
@media (min-width: 768px) {
  .quality ul .quality__content {
    display: block;
    margin-bottom: 0;
    flex: 1;
  }
}
.quality ul .quality__content .quality__content__img {
  width: 48%;
}
@media (min-width: 768px) {
  .quality ul .quality__content .quality__content__img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.quality ul .quality__content .quality__content__text {
  width: 48%;
}
@media (min-width: 768px) {
  .quality ul .quality__content .quality__content__text {
    width: 100%;
  }
}
.quality ul .quality__content .quality__content__text h4 {
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 0.5em;
  margin-top: -0.45rem;
  color: #F29443;
}
@media (min-width: 768px) {
  .quality ul .quality__content .quality__content__text h4 {
    font-size: 2.2rem;
    line-height: 3.3rem;
  }
}
.quality ul .quality__content .quality__content__text p {
  font-size: 1.4rem;
  line-height: 2.3rem;
}
@media (min-width: 768px) {
  .quality ul .quality__content .quality__content__text p {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}
.quality > *:last-child {
  margin-bottom: 0;
}

.menu {
  background-image: url("../images/sp/top/menu/background.svg");
  padding: 50px 5%;
}
@media (min-width: 768px) {
  .menu {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.menu h2 {
  font-weight: 400;
  color: #6E552D;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .menu h2 {
    font-size: 3rem;
    line-height: 1.5;
    margin-bottom: 50px;
  }
}
.menu h2::before {
  content: attr(title) "Menu";
  display: block;
  color: #63B19E;
  font-size: 3.2rem;
  font-family: "Zen Tokyo Zoo", cursive;
  font-weight: 400;
}
@media (min-width: 768px) {
  .menu h2::before {
    font-size: 4.2rem;
    line-height: 4.2rem;
  }
}
.menu .menu__content {
  max-width: 1140px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .menu .menu__content {
    display: flex;
    justify-content: center;
    gap: 4%;
    margin-bottom: 50px;
  }
}
.menu .menu__content img {
  height: 40vw;
  max-height: 350px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .menu .menu__content img {
    width: 48%;
  }
}
@media (min-width: 768px) {
  .menu .menu__content div {
    width: 48%;
    text-align: left;
  }
}
.menu .menu__content h4 {
  background-color: #F29443;
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 400;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .menu .menu__content h4 {
    font-size: 3.6rem;
    line-height: 1.5;
    margin-top: -0.9rem;
    background-color: transparent;
    color: #F29443;
  }
}
.menu .menu__content p {
  text-align: left;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .menu .menu__content p {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 60px;
  }
}
.menu .menu__content a {
  position: relative;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(to bottom, #63B19E 80%, #358470);
  padding: 10px 40px 10px 30px;
  border-radius: 3px;
  display: inline-block;
}
.menu .menu__content a::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 42%;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.menu > *:last-child {
  margin-bottom: 0;
}

.features {
  padding: 50px 5%;
}
@media (min-width: 768px) {
  .features {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.features h2 {
  font-weight: 400;
  color: #6E552D;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .features h2 {
    font-size: 3rem;
    line-height: 1.5;
    margin-bottom: 50px;
  }
}
.features h2::before {
  content: attr(title) "Quality";
  display: block;
  color: #63B19E;
  font-size: 3.2rem;
  font-family: "Zen Tokyo Zoo", cursive;
  font-weight: 400;
}
@media (min-width: 768px) {
  .features h2::before {
    font-size: 4.2rem;
    line-height: 4.2rem;
  }
}
.features .features__ul {
  max-width: 1140px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .features .features__ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
  }
}
.features .features__ul .features__ul__li {
  display: flex;
  gap: 30px;
  align-items: center;
  text-align: left;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .features .features__ul .features__ul__li {
    width: 48%;
    margin: 0 0 30px;
  }
}
.features .features__ul .features__ul__li:last-child {
  margin-bottom: 30px;
}
.features .features__ul .features__ul__li .features__ul__li__image {
  width: 100px;
}
.features .features__ul .features__ul__li .features__ul__li__text {
  flex: 1;
  position: relative;
}
.features .features__ul .features__ul__li .features__ul__li__content-top {
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
}
.features .features__ul .features__ul__li .features__ul__li__content-top p {
  margin-left: -40px;
  font-size: 8rem;
  font-family: "Zen Tokyo Zoo", cursive;
  color: #F29443;
}
.features .features__ul .features__ul__li .features__ul__li__content-top h4 {
  font-weight: 400;
  color: #63B19E;
}
@media (min-width: 768px) {
  .features .features__ul .features__ul__li .features__ul__li__content-top {
    font-size: 2.2rem;
    line-height: 1.2;
  }
}
.features .features__ul .features__ul__li p {
  font-size: 1.4rem;
  line-height: 2.6rem;
}
@media (min-width: 768px) {
  .features .features__ul .features__ul__li p {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.features .features__ul__number {
  position: absolute;
  left: -40px;
  top: 0;
  font-size: 11rem !important;
  font-family: "Zen Tokyo Zoo", cursive;
  color: #f29443;
}
@media (min-width: 768px) {
  .features .features__ul__number {
    line-height: 0 !important;
  }
}
.features .features__button {
  position: relative;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(to bottom, #63B19E 80%, #358470);
  padding: 10px 30px;
  border-radius: 3px;
}
.features .features__button::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 42%;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.features > *:last-child {
  margin-bottom: 0;
}

.contact {
  background-image: url(../images/sp/top/contact/background.svg);
  background-repeat: repeat;
  padding: 50px 5%;
}
@media (min-width: 768px) {
  .contact {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 2%;
    padding-right: 2%;
  }
}
.contact h2 {
  font-weight: 400;
  color: #6E552D;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .contact h2 {
    font-size: 3rem;
    line-height: 1.5;
    margin-bottom: 50px;
  }
}
.contact h2::before {
  content: attr(title) "Contact";
  display: block;
  color: #63B19E;
  font-size: 3.2rem;
  font-family: "Zen Tokyo Zoo", cursive;
  font-weight: 400;
}
@media (min-width: 768px) {
  .contact h2::before {
    font-size: 4.2rem;
    line-height: 4.2rem;
  }
}
.contact .contact__text {
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .contact .contact__text {
    font-size: 1.8rem;
    line-height: 2.7rem;
    margin-bottom: 50px;
  }
}
.contact ul {
  gap: 10px;
}
@media (min-width: 992px) {
  .contact ul {
    max-width: 1140px;
    width: 98%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .contact ul li {
    width: 33.3333333333%;
  }
}
.contact .contact__button__qr {
  margin-right: 20px;
}
.contact .contact__button {
  box-sizing: border-box;
  display: flex;
  color: #fff;
  border-radius: 100px;
  width: 90%;
  max-width: 400px;
  padding: 5px;
  margin: 0 auto 20px;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, #63B19E 80%, #358470);
}
@media (min-width: 768px) {
  .contact .contact__button {
    width: 100%;
    margin-bottom: 40px;
  }
}
.contact .contact__button .contact__button__image {
  width: 25%;
}
.contact .contact__button .contact__button__text {
  flex: 1;
}
.contact .contact__button .contact__button__text .contact__button__text__top {
  font-size: 2.8rem;
  font-weight: 600;
}
.contact .contact__button .contact__button__text .small {
  font-size: 1.8rem;
}
.contact .contact__button .contact__button__text .contact__button__text__line {
  height: 2px;
  width: 90%;
  background-color: #fff;
  margin: 5px auto;
}
.contact .contact__button .contact__button__text .contact__button__text__bottom {
  font-size: 1.2rem;
  line-height: 2.4rem;
}
.contact .contact__bottom-text {
  color: #F29443;
}
.contact > *:last-child {
  margin-bottom: 0;
}

.works {
  padding: 50px 5%;
}
@media (min-width: 768px) {
  .works {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.works h2 {
  font-weight: 400;
  color: #6E552D;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .works h2 {
    font-size: 3rem;
    line-height: 1.5;
    margin-bottom: 50px;
  }
}
.works h2::before {
  content: attr(title) "Works";
  display: block;
  color: #63B19E;
  font-size: 3.2rem;
  font-family: "Zen Tokyo Zoo", cursive;
  font-weight: 400;
}
@media (min-width: 768px) {
  .works h2::before {
    font-size: 4.2rem;
    line-height: 4.2rem;
  }
}
.works .works__text {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .works .works__text {
    font-size: 1.8rem;
    line-height: 2.7rem;
    margin-bottom: 35px;
  }
}
.works .works__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.works .works__list img {
  display: block;
  width: 50%;
  margin: 0 auto 15px;
}
.works .works__list h4 {
  font-weight: 400;
}
.works > *:last-child {
  margin-bottom: 0;
}

.media {
  background-image: url(../images/sp/top/madia/background.svg);
  background-repeat: repeat;
  padding: 50px 0;
}
@media (min-width: 768px) {
  .media {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}
.media h2 {
  font-weight: 400;
  color: #6E552D;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .media h2 {
    font-size: 2.2rem;
    line-height: 2.2rem;
    margin-bottom: 50px;
  }
}
.media h2::before {
  content: attr(title) "Media";
  display: block;
  color: #63B19E;
  font-size: 3.2rem;
  font-family: "Zen Tokyo Zoo", cursive;
  font-weight: 400;
}
@media (min-width: 768px) {
  .media h2::before {
    font-size: 4.2rem;
    line-height: 4.2rem;
  }
}
@media (min-width: 768px) {
  .media ul {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    max-width: 1140px;
    gap: 2%;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .media ul {
    gap: 8%;
  }
}
.media ul .media__content {
  display: flex;
  width: 90%;
  gap: 20px;
  margin: 0 auto 30px;
}
@media (min-width: 768px) {
  .media ul .media__content {
    width: 46%;
    margin: 0 0 20px 0;
  }
}
.media ul .media__content .media__content__image {
  width: 33%;
}
@media (min-width: 768px) {
  .media ul .media__content .media__content__image {
    width: 35%;
    min-width: 150px;
  }
}
.media ul .media__content .media__content__text {
  width: 65%;
  text-align: left;
}
@media (min-width: 768px) {
  .media ul .media__content .media__content__text {
    flex: 1;
  }
}
.media ul .media__content .media__content__text h4 {
  color: #63B19E;
  margin-bottom: 10px;
}
.media ul .media__content .media__content__text p {
  font-size: 1.4rem;
  line-height: 2.6rem;
}

.baner__image {
  display: block;
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
  padding: 50px 0;
  background-color: #fff;
}

.footer {
  position: relative;
  padding: 50px 5%;
  background-color: #F4F4F4;
}
.footer .footer-pc__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .footer .footer-pc__content {
    max-width: 1140px;
    margin: 0 auto;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
.footer .footer-pc__content .pc__bottom-baner {
  padding-bottom: 30px;
  text-align: center;
}
.footer .footer-pc__content .pc__bottom-baner img {
  max-width: 400px;
}
@media (min-width: 768px) {
  .footer .footer-pc__content .pc__bottom-baner {
    display: flex !important;
    width: 40%;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
  }
  .footer .footer-pc__content .pc__bottom-baner img {
    max-width: 100%;
  }
}
.footer .footer__content {
  max-width: 1140px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 4%;
}
@media (min-width: 768px) {
  .footer .footer__content {
    flex-wrap: nowrap;
    width: 60%;
    justify-content: space-around;
    gap: 20px;
  }
}
.footer .footer__content .footer__content__left {
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .footer .footer__content .footer__content__left {
    width: 48%;
    max-width: 250px;
    margin-bottom: 0;
  }
}
.footer .footer__content .footer__content__left .footer__content__left__logo {
  width: 50%;
  max-width: 60px;
  margin-bottom: 20px;
}
.footer .footer__content .footer__content__left h2 {
  font-weight: 400;
}
.footer .footer__content .footer__content__left address {
  font-style: normal;
  margin-bottom: 20px;
}
.footer .footer__content .footer__content__right {
  width: 100%;
  text-align: left;
  color: #63B19E;
}
@media (min-width: 768px) {
  .footer .footer__content .footer__content__right {
    width: 48%;
    max-width: 250px;
  }
}
.footer .footer__content .footer__content__right h2 {
  font-family: "Zen Tokyo Zoo", cursive;
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 400;
}
.footer .footer__content .footer__content__right .line__top {
  width: 100%;
  height: 1px;
  background-color: #63B19E;
  margin: 0 0 1px;
}
.footer .footer__content .footer__content__right .line__center {
  width: 100%;
  height: 1px;
  background-color: #63B19E;
  margin: 0 0 1px;
}
.footer .footer__content .footer__content__right .line__bottom {
  width: 100%;
  height: 1px;
  background-color: #63B19E;
  margin: 0 0 10px;
}
.footer .footer__content .footer__content__right nav ul li a {
  display: inline-block;
  position: relative;
  color: #63B19E;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 6px;
}
.footer .footer__content .footer__content__right nav ul li a:hover {
  opacity: 1;
}
.footer .footer__content .footer__content__right nav ul li a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  border-bottom: dashed 2px #63B19E;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.footer .footer__content .footer__content__right nav ul li a:hover::after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}
.footer .footer__content .footer__content__right .footer__content__right__instagram {
  width: 20%;
  margin-top: 20px;
  display: block;
  font-size: 3.2rem;
  color: #63B19E;
}
.footer .top-back {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 60px;
  padding: 15px 0 5px;
  background-color: #63B19E;
  font-size: 1rem;
  line-height: 1rem;
  color: #fff;
}
.footer .top-back::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 35px 52px 0;
  border-color: transparent #F4F4F4 transparent transparent;
}
.footer .top-back::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 52px 35px 0 0;
  border-color: #F4F4F4 transparent transparent transparent;
}
.footer .top-back .top-back__line {
  display: block;
  height: 1px;
  width: 20%;
  margin: 0 auto;
  background-color: #fff;
}
.footer .top-back .top-back__triangle {
  display: block;
  margin: 0 auto 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 8.7px 5px;
  border-color: transparent transparent #fff transparent;
}

.tel-eria {
  margin-bottom: 20px;
}
.tel-eria a {
  text-decoration: underline;
}

.bottom-menu {
  position: fixed;
  width: 100%;
  height: 50px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(204, 0, 0, 0.884);
  display: flex;
  z-index: 999;
}
.bottom-menu .bottom-menu__text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 3;
  font-size: 1.2rem;
  line-height: 2rem;
  color: #fff;
}
.bottom-menu .bottom-menu__line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 2;
  padding: 0 5px;
  font-size: 3.2rem;
  color: #fff;
  background-color: rgb(36, 180, 36);
}
.bottom-menu .bottom-menu__mail {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 2;
  padding: 0 5px;
  font-size: 3.2rem;
  color: #fff;
  background-color: rgb(50, 115, 255);
}
.bottom-menu .bottom-menu__tel {
  display: flex;
  padding: 14px 0;
  justify-content: center;
  flex-grow: 3;
  padding: 0 2%;
  font-size: 3.2rem;
  color: #fff;
  align-items: center;
  background-color: #F29443;
}
.bottom-menu .bottom-menu__tel p {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-left: 10px;
}
.bottom-menu .bottom-menu__tel p span {
  font-size: 1rem;
  line-height: 1.5rem;
}

.copyright {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #fff;
  padding: 10px 5% 60px;
  background-color: #777;
}
@media (min-width: 768px) {
  .copyright {
    padding-bottom: 20px;
  }
}

.whole-top {
  max-width: 2580px;
  position: relative;
  background-image: url("../images/sp/whole-reform/top/top-image.jpg");
  background-size: cover;
  height: 120vw;
  width: 100vw;
  margin-top: 55px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .whole-top {
    background-position: center;
    background-image: url("../images/pc/whole-reform/pc-top-image.png");
    background-position: 50% 70%;
    height: 100vh;
    max-height: 700px;
    margin-bottom: 50px;
    margin-top: 64px;
  }
}
.whole-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
}
.whole-top .whole-top__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  padding: 25px 0;
  background-color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
  .whole-top .whole-top__title {
    padding: 30px 0;
  }
}
.whole-top .whole-top__title h1 {
  font-weight: 400;
  font-size: 2.2rem;
}
@media (min-width: 768px) {
  .whole-top .whole-top__title h1 {
    font-size: 2.6rem;
    line-height: 3.9rem;
  }
}
.whole-top .whole-top__title h1::before {
  content: attr(title) "Whole Reform";
  display: block;
  font-size: 3.2rem;
  line-height: 4.8rem;
  font-family: "Zen Tokyo Zoo", cursive;
  font-weight: 400;
  color: #63B19E;
}
@media (min-width: 768px) {
  .whole-top .whole-top__title h1::before {
    font-size: 5.4rem;
    line-height: 5.4rem;
  }
}

.bottom-text {
  width: 90%;
  text-align: left;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  line-height: 2.6rem;
}

.section-button {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 350px;
  margin: 0 auto 50px;
}
@media (min-width: 768px) {
  .section-button {
    margin-bottom: 100px;
  }
}
.section-button a {
  position: relative;
  width: 30%;
  padding: 5px 0;
  border-radius: 5px;
  background: linear-gradient(to bottom, #63B19E 80%, #358470);
  color: #fff;
}
.section-button a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 40%;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}

.exterior {
  background-image: url(../images/sp/whole-reform/exterior/background.svg);
  background-repeat: repeat;
  padding: 50px 2%;
}
@media (min-width: 768px) {
  .exterior {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.exterior h2 {
  color: #63B19E;
  font-size: 2.4rem;
  line-height: 3.6rem;
  font-weight: 400;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .exterior h2 {
    font-size: 2.8rem;
    line-height: 4.2rem;
  }
}
.exterior .line__top {
  width: 80%;
  max-width: 700px;
  min-width: 310px;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 1px;
}
.exterior .line__center {
  width: 80%;
  min-width: 310px;
  max-width: 700px;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 1px;
}
.exterior .line__bottom {
  width: 80%;
  min-width: 310px;
  max-width: 700px;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 60px;
}
.exterior ul {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .exterior ul {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 2%;
  }
}
.exterior ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .exterior ul li {
    margin-bottom: 0;
    display: block;
    width: 32%;
  }
}
.exterior ul li:last-child {
  margin-bottom: 0;
}
.exterior ul li .exterior__image {
  width: 48%;
}
@media (min-width: 992px) {
  .exterior ul li .exterior__image {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .exterior ul li .exterior__image img {
    height: 230px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 20px;
  }
}
.exterior ul li .exterior__text {
  width: 48%;
  text-align: left;
}
@media (min-width: 992px) {
  .exterior ul li .exterior__text {
    width: 100%;
  }
}
.exterior ul li .exterior__text h3 {
  color: #F29443;
  font-size: 1.8rem;
  line-height: 2.7rem;
  margin-top: -0.45rem;
  margin-bottom: 0.5em;
  font-weight: 400;
}
@media (min-width: 768px) {
  .exterior ul li .exterior__text h3 {
    font-size: 2.2rem;
    line-height: 3.3rem;
  }
}
.exterior ul li .exterior__text p {
  font-size: 1.4rem;
  line-height: 2.6rem;
}
@media (min-width: 768px) {
  .exterior ul li .exterior__text p {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}
.exterior .exterior__button {
  position: relative;
  width: 30%;
  padding: 5px 30px;
  border-radius: 5px;
  background: linear-gradient(to bottom, #63B19E 80%, #358470);
  color: #fff;
}
.exterior .exterior__button::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 40%;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.exterior > *:last-child {
  margin-bottom: 0;
}

.interior {
  padding: 50px 5%;
}
@media (min-width: 768px) {
  .interior {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.interior h2 {
  color: #63B19E;
  font-size: 2.4rem;
  line-height: 3.6rem;
  font-weight: 400;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .interior h2 {
    font-size: 2.8rem;
    line-height: 4.2rem;
  }
}
.interior .line__top {
  width: 80%;
  min-width: 310px;
  max-width: 700px;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 1px;
}
.interior .line__center {
  width: 80%;
  min-width: 310px;
  max-width: 700px;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 1px;
}
.interior .line__bottom {
  width: 80%;
  min-width: 310px;
  max-width: 700px;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 60px;
}
.interior ul {
  max-width: 1140px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .interior ul {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 2%;
  }
}
.interior ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .interior ul li {
    margin-bottom: 0;
    display: block;
    width: 32%;
  }
}
.interior ul li:last-child {
  margin-bottom: 0;
}
.interior ul li .interior__image {
  width: 48%;
}
@media (min-width: 992px) {
  .interior ul li .interior__image {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .interior ul li .interior__image img {
    height: 230px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 20px;
  }
}
.interior ul li .interior__text {
  width: 48%;
  text-align: left;
}
@media (min-width: 992px) {
  .interior ul li .interior__text {
    width: 100%;
  }
}
.interior ul li .interior__text h3 {
  color: #F29443;
  font-size: 1.8rem;
  line-height: 2.7rem;
  margin-top: -0.45rem;
  margin-bottom: 0.5em;
  font-weight: 400;
}
@media (min-width: 768px) {
  .interior ul li .interior__text h3 {
    font-size: 2.2rem;
    line-height: 3.3rem;
  }
}
.interior ul li .interior__text p {
  font-size: 1.4rem;
  line-height: 2.6rem;
}
@media (min-width: 768px) {
  .interior ul li .interior__text p {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}
.interior .exterior__button {
  position: relative;
  width: 30%;
  padding: 5px 30px;
  border-radius: 5px;
  background: linear-gradient(to bottom, #63B19E 80%, #358470);
  color: #fff;
}
.interior .exterior__button::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 40%;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.interior > *:last-child {
  margin-bottom: 0;
}

.bathroom {
  background-image: url(../images/sp/whole-reform/exterior/background.svg);
  background-repeat: repeat;
  padding: 50px 5%;
}
@media (min-width: 768px) {
  .bathroom {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.bathroom h2 {
  color: #63B19E;
  font-size: 2.4rem;
  line-height: 3.6rem;
  font-weight: 400;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .bathroom h2 {
    font-size: 2.8rem;
    line-height: 4.2rem;
  }
}
.bathroom .line__top {
  width: 80%;
  min-width: 310px;
  max-width: 700px;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 1px;
}
.bathroom .line__center {
  width: 80%;
  min-width: 310px;
  max-width: 700px;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 1px;
}
.bathroom .line__bottom {
  width: 80%;
  min-width: 310px;
  max-width: 700px;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 60px;
}
.bathroom ul {
  max-width: 1140px;
  margin: 0 auto 50px;
}
@media (min-width: 768px) {
  .bathroom ul {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 2%;
  }
}
.bathroom ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .bathroom ul li {
    margin-bottom: 0;
    display: block;
    width: 32%;
  }
}
.bathroom ul li:last-child {
  margin-bottom: 0;
}
.bathroom ul li .bathroom__image {
  width: 48%;
}
@media (min-width: 992px) {
  .bathroom ul li .bathroom__image {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .bathroom ul li .bathroom__image img {
    height: 230px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 20px;
  }
}
.bathroom ul li .bathroom__text {
  width: 48%;
  text-align: left;
}
@media (min-width: 992px) {
  .bathroom ul li .bathroom__text {
    width: 100%;
  }
}
.bathroom ul li .bathroom__text h3 {
  color: #F29443;
  font-size: 1.8rem;
  line-height: 2.7rem;
  margin-top: -0.45rem;
  margin-bottom: 0.5em;
  font-weight: 400;
}
@media (min-width: 768px) {
  .bathroom ul li .bathroom__text h3 {
    font-size: 2.2rem;
    line-height: 3.3rem;
  }
}
.bathroom ul li .bathroom__text p {
  font-size: 1.4rem;
  line-height: 2.6rem;
}
@media (min-width: 768px) {
  .bathroom ul li .bathroom__text p {
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}
.bathroom .exterior__button {
  position: relative;
  width: 30%;
  padding: 10px 30px;
  border-radius: 5px;
  background: linear-gradient(to bottom, #63B19E 80%, #358470);
  color: #fff;
}
.bathroom .exterior__button::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 40%;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.bathroom .bathroom__bottom-text {
  margin-top: 10px;
  font-size: 1rem;
  color: #CCCCCC;
}
.bathroom > *:last-child {
  margin-bottom: 0;
}

.whole-baner {
  padding: 50px 5%;
}
@media (min-width: 768px) {
  .whole-baner {
    background-image: url("../images/pc/background-blue.svg");
    background-size: cover;
    background-repeat: repeat;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.whole-baner h2 {
  font-weight: 400;
  color: #6E552D;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .whole-baner h2 {
    font-size: 2.2rem;
    line-height: 2.2rem;
    margin-bottom: 50px;
  }
}
.whole-baner h2::before {
  content: attr(title) "Reform Menu";
  display: block;
  color: #63B19E;
  font-size: 3.2rem;
  font-family: "Zen Tokyo Zoo", cursive;
  font-weight: 400;
}
@media (min-width: 768px) {
  .whole-baner h2::before {
    font-size: 4.2rem;
    line-height: 4.2rem;
  }
}
@media (min-width: 768px) {
  .whole-baner div {
    display: flex;
    justify-content: center;
    gap: 40px;
  }
}
.whole-baner div a {
  display: block;
  max-width: 335px;
  margin: 0 auto 10px;
}
@media (min-width: 992px) {
  .whole-baner div a {
    margin: 0;
  }
}
.whole-baner > *:last-child {
  margin-bottom: 0;
}

.reset-margin {
  margin-bottom: 0;
}

.reform-pac-top {
  position: relative;
  background-image: url("../images/sp/reform-pack/top/top-image.jpg");
  background-size: cover;
  height: 120vw;
  width: 100vw;
  margin-bottom: 20px;
  margin-top: 55px;
}
@media (min-width: 768px) {
  .reform-pac-top {
    background-position: center;
    background-image: url("../images/pc/reform-pack/pc-top-image.png");
    height: 100vh;
    max-height: 700px;
    max-width: 2580px;
    margin-top: 64px;
    margin-bottom: 50px;
  }
}
.reform-pac-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
}
.reform-pac-top .reform-pac-top__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  padding: 25px 0;
  background-color: rgba(255, 255, 255, 0.5);
}
.reform-pac-top .reform-pac-top__title h1 {
  font-weight: 400;
  font-size: 2.2rem;
}
@media (min-width: 768px) {
  .reform-pac-top .reform-pac-top__title h1 {
    font-size: 2.6rem;
    line-height: 3.9rem;
  }
}
.reform-pac-top .reform-pac-top__title h1::before {
  content: attr(title) "Reform Pack";
  display: block;
  font-size: 3.2rem;
  line-height: 4.8rem;
  font-family: "Zen Tokyo Zoo", cursive;
  font-weight: 400;
  color: #63B19E;
}
@media (min-width: 768px) {
  .reform-pac-top .reform-pac-top__title h1::before {
    font-size: 5.4rem;
    line-height: 5.4rem;
  }
}

.reform-pack__content {
  background-image: url(../images/sp/reform-pack/content/background.svg);
  background-repeat: repeat;
  padding: 50px 5%;
}
@media (min-width: 768px) {
  .reform-pack__content {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.reform-pack__content ul {
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
}
.reform-pack__content li {
  margin-bottom: 50px;
}
.reform-pack__content h2 {
  font-size: 2.4rem;
  line-height: 3.6rem;
  font-weight: 400;
  color: #63B19E;
}
@media (min-width: 768px) {
  .reform-pack__content h2 {
    font-size: 2.8rem;
    line-height: 4.2rem;
  }
}
.reform-pack__content .line__top {
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 1px;
}
.reform-pack__content .line__center {
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 1px;
}
.reform-pack__content .line__bottom {
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 50px;
}
.reform-pack__content .reform-pack__content__image {
  margin: 0 auto 30px;
}
.reform-pack__content p {
  margin: 0 auto 30px;
  font-size: 1.4rem;
  line-height: 2.6rem;
  text-align: left;
}
@media (min-width: 768px) {
  .reform-pack__content p {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}
.reform-pack__content a {
  color: #63B19E;
  border-bottom: 1px dashed #63B19E;
}
.reform-pack__content .btn__primary {
  position: relative;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(to bottom, #63B19E 80%, #358470);
  padding: 10px 40px 10px 30px;
  border-radius: 3px;
}
.reform-pack__content .btn__primary:after {
  content: "";
  position: absolute;
  right: 30px;
  top: 42%;
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.reform-pack__content .reform-pac__bottom-text {
  margin-top: 10px;
  text-align: center;
  margin-bottom: 0;
  font-size: 1rem;
  color: #ccc;
}
.reform-pack__content > *:last-child {
  margin-bottom: 0;
}

.campany-top {
  position: relative;
  background-image: url("../images/sp/company/top-image.jpg");
  background-size: cover;
  height: 120vw;
  width: 100vw;
  margin-bottom: 20px;
  margin-top: 55px;
}
@media (min-width: 768px) {
  .campany-top {
    background-position: center;
    background-image: url("../images/pc/company/pc-top-image.png");
    height: 100vh;
    background-position: 50% 65%;
    max-height: 700px;
    max-width: 2580px;
    margin-bottom: 50px;
    margin-top: 64px;
  }
}
.campany-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
}
.campany-top .campany-top__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  padding: 25px 0;
  background-color: rgba(255, 255, 255, 0.5);
}
.campany-top .campany-top__title h1 {
  font-weight: 400;
  font-size: 2.2rem;
}
@media (min-width: 768px) {
  .campany-top .campany-top__title h1 {
    font-size: 2.6rem;
    line-height: 3.9rem;
  }
}
.campany-top .campany-top__title h1::before {
  content: attr(title) "About Us";
  display: block;
  font-size: 3.2rem;
  line-height: 4.8rem;
  font-family: "Zen Tokyo Zoo", cursive;
  font-weight: 400;
  color: #63B19E;
}
@media (min-width: 768px) {
  .campany-top .campany-top__title h1::before {
    font-size: 5.4rem;
    line-height: 5.4rem;
  }
}

.company {
  background-image: url(../images/sp/company/background.svg);
  background-repeat: repeat;
  padding: 50px 0;
}
@media (min-width: 768px) {
  .company {
    padding: 100px 0;
  }
}
.company h2 {
  font-weight: 400;
  color: #6E552D;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .company h2 {
    font-size: 2.2rem;
    line-height: 2.2rem;
    margin-bottom: 50px;
  }
}
.company h2::before {
  content: attr(title) "Company";
  display: block;
  color: #63B19E;
  font-size: 3.2rem;
  font-family: "Zen Tokyo Zoo", cursive;
  font-weight: 400;
}
@media (min-width: 768px) {
  .company h2::before {
    font-size: 4.2rem;
    line-height: 4.2rem;
  }
}
.company .company__overview {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px 0;
  background-color: #fff;
  box-shadow: 0 0 8px #777;
  border-radius: 10px;
  text-align: left;
  font-size: 1.4rem;
  line-height: 2.1rem;
}
.company .company__overview .company__overview__list {
  width: 90%;
  margin: 0 auto 40px;
}
.company .company__overview .company__overview__list a {
  border-bottom: solid 1px #777777;
}
.company .company__overview .company__overview__list h4 {
  color: #63B19E;
  font-weight: 400;
}
.company .company__overview .company__overview__list .border {
  width: 100%;
  height: 1px;
  background-color: #63B19E;
  margin: 10px 0;
}
.company .company__overview .company__overview__list address {
  font-style: normal;
}
.company .company__overview__box {
  margin-bottom: 20px;
}
.company .company__overview__box h5 {
  font-size: 12px;
}

.exterior-top {
  position: relative;
  background-image: url("../images/sp/reform-pack/exterior/top-image.jpg");
  background-size: cover;
  height: 120vw;
  width: 100vw;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .exterior-top {
    background-position: center;
    background-image: url("../images/pc/reform-pack/pc-exterior-top.jpg");
    height: 100vh;
    background-position: 50% 45%;
    max-height: 700px;
    max-width: 2580px;
    margin: 0 auto 50px;
  }
}
.exterior-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.2;
}
.exterior-top .exterior__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  padding: 25px 0;
  background-color: rgba(255, 255, 255, 0.5);
}
.exterior-top .exterior__title h1 {
  font-weight: 400;
}
@media (min-width: 768px) {
  .exterior-top .exterior__title h1 {
    font-size: 2.6rem;
    line-height: 3.9rem;
  }
}
.exterior-top .exterior__title h1::before {
  content: attr(title) "Exterior Pack";
  display: block;
  font-size: 3.2rem;
  line-height: 4.8rem;
  font-family: "Zen Tokyo Zoo", cursive;
  font-weight: 400;
  color: #63B19E;
}
@media (min-width: 768px) {
  .exterior-top .exterior__title h1::before {
    font-size: 5.4rem;
    line-height: 5.4rem;
  }
}

.pack__content {
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
}
.pack__content h2 {
  margin-bottom: 5px;
  font-size: 2.4rem;
  line-height: 3.6rem;
  font-weight: 400;
  color: #63B19E;
}
@media (min-width: 768px) {
  .pack__content h2 {
    font-size: 2.8rem;
    line-height: 4.2rem;
  }
}
.pack__content .line__top {
  width: 100%;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 1px;
}
.pack__content .line__center {
  width: 100%;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 1px;
}
.pack__content .line__bottom {
  width: 100%;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 50px;
}
.pack__content ul .pack__content__list {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .pack__content ul .pack__content__list {
    margin-bottom: 100px;
  }
}
.pack__content ul .pack__content__list .pack__content__image {
  position: relative;
}
.pack__content ul .pack__content__list .pack__content__image img {
  aspect-ratio: 3/2;
}
.pack__content ul .pack__content__list .pack__content__image .pack__content__image__text {
  position: absolute;
  padding: 10px 40px 5px 10px;
  top: 10%;
  left: 0pt;
  -webkit-clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
  font-size: 2.6rem;
  line-height: 3.9rem;
  color: #fff;
  background-color: rgba(208, 9, 9, 0.7);
}
.pack__content ul .pack__content__list .pack__content__image .pack__content__image__text span {
  font-size: 3.6rem;
}
.pack__content ul .pack__content__list h3 {
  padding: 15px 0;
  background-color: #F29443;
  color: #fff;
  font-size: 2.4rem;
  line-height: 3.6rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.pack__content ul .pack__content__list p {
  font-size: 1.4rem;
  line-height: 2.6rem;
  text-align: left;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .pack__content ul .pack__content__list .pack__content__list__pc-flex {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }
}
.pack__content ul .pack__content__list .pack__content__bottom-title {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  color: #F29443;
  margin-bottom: 20px;
}
.pack__content ul .pack__content__list .pack__content__bottom-title .pack__content__bottom-title__line-left {
  position: relative;
  background-color: #F29443;
  flex: 1;
  height: 1px;
}
.pack__content ul .pack__content__list .pack__content__bottom-title .pack__content__bottom-title__line-left::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #F29443;
  right: 0;
  top: -2px;
}
.pack__content ul .pack__content__list .pack__content__bottom-title .pack__content__bottom-title__line-right {
  position: relative;
  background-color: #F29443;
  flex: 1;
  height: 1px;
}
.pack__content ul .pack__content__list .pack__content__bottom-title .pack__content__bottom-title__line-right::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #F29443;
  left: 0;
  top: -2px;
}
.pack__content ul .pack__content__list .pack__content__bottom-title h4 {
  margin: 0 10px;
  font-weight: 400;
}
.pack__content ul .pack__content__list ul {
  text-align: left;
  font-size: 1.4rem;
  line-height: 2.6rem;
  margin-bottom: 20px;
}
.pack__content ul .pack__content__list ul li {
  list-style: inside;
}
.pack__content ul .pack__content__list .pack__content__bottom-price h5 {
  text-align: right;
  color: #D00909;
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 400;
}
.pack__content ul .pack__content__list .pack__content__bottom-price p {
  text-align: right;
  color: #D00909;
  font-size: 3.6rem;
  line-height: 5.4rem;
}
@media (min-width: 768px) {
  .pack__content ul .pack__content__list .pack__content__bottom-price p {
    margin-bottom: 0;
  }
}
.pack__content ul .pack__content__list .pack__content__bottom-price p span {
  font-size: 1.2rem;
}

.interior-top {
  position: relative;
  background-image: url(../images/sp/reform-pack/interior/top-image.jpg);
  background-size: cover;
  height: 120vw;
  width: 100vw;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .interior-top {
    background-position: center;
    background-image: url("../images/pc/reform-pack/pc-interior-top.jpg");
    height: 100vh;
    background-position: 50% 65%;
    max-height: 700px;
    max-width: 2580px;
    margin: 0 auto 50px;
  }
}
.interior-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.2;
}
.interior-top .interior {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  padding: 25px 0;
  background-color: rgba(255, 255, 255, 0.5);
}
.interior-top .interior h1 {
  font-weight: 400;
}
@media (min-width: 768px) {
  .interior-top .interior h1 {
    font-size: 2.6rem;
    line-height: 3.9rem;
  }
}
.interior-top .interior h1::before {
  content: attr(title) "Interior Pack";
  display: block;
  font-size: 3.2rem;
  line-height: 4.8rem;
  font-family: "Zen Tokyo Zoo", cursive;
  font-weight: 400;
  color: #63B19E;
}
@media (min-width: 768px) {
  .interior-top .interior h1::before {
    font-size: 5.4rem;
    line-height: 5.4rem;
  }
}

.pet-reform-top {
  position: relative;
  background-image: url("../images/sp/pet-reform/top/top-image.jpg");
  background-size: cover;
  height: 120vw;
  width: 100vw;
  margin-bottom: 20px;
  margin-top: 55px;
}
@media (min-width: 768px) {
  .pet-reform-top {
    background-position: center;
    background-image: url("../images/pc/pet-reform/pc-top-image.jpg");
    height: 100vh;
    background-position: 50% 20%;
    max-height: 700px;
    max-width: 2580px;
    margin-bottom: 50px;
    margin-top: 64px;
  }
}
.pet-reform-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
}
.pet-reform-top .pet-reform__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  padding: 25px 0;
  background-color: rgba(255, 255, 255, 0.5);
}
.pet-reform-top .pet-reform__title h1 {
  font-weight: 400;
  font-size: 2.2rem;
}
@media (min-width: 768px) {
  .pet-reform-top .pet-reform__title h1 {
    font-size: 2.6rem;
    line-height: 3.9rem;
  }
}
.pet-reform-top .pet-reform__title h1::before {
  content: attr(title) "Pet Reform";
  display: block;
  font-size: 3.2rem;
  line-height: 4.8rem;
  font-family: "Zen Tokyo Zoo", cursive;
  font-weight: 400;
  color: #63B19E;
}
@media (min-width: 768px) {
  .pet-reform-top .pet-reform__title h1::before {
    font-size: 5.4rem;
    line-height: 5.4rem;
  }
}

.pet-reform__button {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .pet-reform__button {
    margin-bottom: 100px;
  }
}
.pet-reform__button .pet-reform__button__cat {
  position: relative;
  font-family: "Kaisei Opti", serif;
  width: 120px;
  height: 100px;
  background-image: url(../images/sp/pet-reform/cat/cat-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.pet-reform__button .pet-reform__button__cat .pet-reform__button__text {
  position: absolute;
  color: #fff;
  font-size: 1.8rem;
  line-height: 2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pet-reform__button .pet-reform__button__cat .pet-reform__button__text span {
  font-size: 1.4rem;
  line-height: 2.6rem;
}
.pet-reform__button .pet-reform__button__dog {
  position: relative;
  font-family: "Kaisei Opti", serif;
  width: 120px;
  height: 100px;
  background-image: url(../images/sp/pet-reform/dog/dog-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.pet-reform__button .pet-reform__button__dog .pet-reform__button__text {
  position: absolute;
  color: #fff;
  font-size: 1.8rem;
  line-height: 2rem;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pet-reform__button .pet-reform__button__dog .pet-reform__button__text span {
  font-size: 1.4rem;
  line-height: 2.6rem;
}

.cat-top {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .cat-top {
    margin-bottom: 100px;
  }
}
.cat-top .cat-top__image {
  position: relative;
}
@media (min-width: 768px) {
  .cat-top .cat-top__image .cat-top__image__background {
    height: 200px;
    max-width: 1280px;
    -o-object-position: 50% 40%;
       object-position: 50% 40%;
    margin: 0 auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.cat-top .cat-top__image::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .cat-top .cat-top__image::after {
    width: 320px;
    height: 160px;
  }
}
.cat-top .cat-top__image .cat-top__text {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-family: "Kaisei Opti", serif;
}
.cat-top .cat-top__image .cat-top__text .cat-top__text__image {
  width: 40px;
  margin: 0 auto 5px;
  filter: drop-shadow(0 0 4px #fff);
}
.cat-top .cat-top__image .cat-top__text h3 {
  font-size: 2.4rem;
  font-weight: 400;
  text-shadow: 3px 3px 3px #fff, -3px -3px 3px #fff, -3px 3px 3px #fff, 3px -3px 3px #fff, 3px 0px 3px #fff, -3px 0px 3px #fff, 0px 3px 3px #fff, 0px -3px 3px #fff;
}
.cat-top .cat-top__image .cat-top__text .cat-top__text__line {
  width: 70%;
  height: 1px;
  background-color: #63B19E;
  margin: 5px auto;
}
@media (min-width: 768px) {
  .cat-top .cat-top__image .cat-top__text .cat-top__text__line {
    width: 250px;
  }
}
.cat-top .cat-top__image .cat-top__text h2 {
  font-size: 3.2rem;
  font-weight: 400;
  text-shadow: 3px 3px 3px #fff, -3px -3px 3px #fff, -3px 3px 3px #fff, 3px -3px 3px #fff, 3px 0px 3px #fff, -3px 0px 3px #fff, 0px 3px 3px #fff, 0px -3px 3px #fff;
}

@media (min-width: 768px) {
  .cat-position {
    -o-object-position: 50% 55% !important;
       object-position: 50% 55% !important;
  }
}

.cat-love {
  max-width: 700px;
  margin: 0 auto;
  padding: 50px 5%;
}
@media (min-width: 768px) {
  .cat-love {
    padding-left: 0;
    padding-right: 0;
  }
  .cat-love:first-child {
    padding-top: 0;
  }
}
.cat-love h2 {
  font-size: 2.4rem;
  line-height: 3.6rem;
  color: #63B19E;
  font-weight: 400;
}
@media (min-width: 768px) {
  .cat-love h2 {
    font-size: 2.8rem;
    line-height: 4.2rem;
  }
}
.cat-love .line__top {
  width: 100%;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 1px;
}
.cat-love .line__center {
  width: 100%;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 1px;
}
.cat-love .line__bottom {
  width: 100%;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 50px;
}
.cat-love .cat-love__ul {
  text-align: left;
}
.cat-love .cat-love__ul .cat-love__ul__li {
  margin-bottom: 50px;
}
.cat-love .cat-love__ul .cat-love__ul__li h3 {
  font-family: "Kaisei Opti", serif;
  font-size: 1.8rem;
  line-height: 2.7rem;
  padding-bottom: 5px;
  margin-bottom: 30px;
  color: #F29443;
  font-weight: 400;
  border-bottom: 3px dashed #F29443;
}
@media (min-width: 768px) {
  .cat-love .cat-love__ul .cat-love__ul__li h3 {
    font-size: 2.4rem;
  }
}
.cat-love .cat-love__ul .cat-love__ul__li h3 img {
  display: inline-block;
  vertical-align: sub;
  margin-right: 5px;
  width: 25px;
}
.cat-love .cat-love__ul .cat-love__ul__li .cat-love__ul__li__content {
  display: flex;
  flex-direction: row-reverse;
  gap: 2%;
}
@media (min-width: 768px) {
  .cat-love .cat-love__ul .cat-love__ul__li .cat-love__ul__li__content {
    gap: 4%;
  }
}
.cat-love .cat-love__ul .cat-love__ul__li .cat-love__ul__li__content .cat-love__ul__li__content__image {
  width: 34%;
}
@media (min-width: 768px) {
  .cat-love .cat-love__ul .cat-love__ul__li .cat-love__ul__li__content .cat-love__ul__li__content__image {
    width: 33%;
  }
}
.cat-love .cat-love__ul .cat-love__ul__li .cat-love__ul__li__content .cat-love__ul__li__content__text {
  width: 64%;
  font-size: 1.4rem;
  line-height: 2.6rem;
}
@media (min-width: 768px) {
  .cat-love .cat-love__ul .cat-love__ul__li .cat-love__ul__li__content .cat-love__ul__li__content__text {
    width: 63%;
    font-size: 1.8rem;
    line-height: 2.7rem;
  }
}
.cat-love .cat-love__ul .cat-love__ul__li .cat-love__ul__li__content__even {
  flex-direction: initial;
}
.cat-love .cat-love__ul > *:last-child {
  margin-bottom: 0;
}
.cat-love > *:last-child {
  margin-bottom: 0;
}

.cat-reform__title {
  max-width: 700px;
  margin: 0 auto 50px;
}
.cat-reform__title h2 {
  font-size: 2.4rem;
  line-height: 3.6rem;
  color: #63B19E;
  font-weight: 400;
}
@media (min-width: 768px) {
  .cat-reform__title h2 {
    font-size: 2.8rem;
    line-height: 4.2rem;
  }
}
.cat-reform__title .line__top {
  width: 100%;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 1px;
}
.cat-reform__title .line__center {
  width: 100%;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 1px;
}
.cat-reform__title .line__bottom {
  width: 100%;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 50px;
}

.cat-play {
  max-width: 700px;
  margin-bottom: 50px;
}
.cat-play h2 {
  position: relative;
  padding: 10px 0;
  color: #fff;
  background-color: #907D5F;
  margin-bottom: 20px;
  font-family: "Kaisei Opti", serif;
}
@media (min-width: 768px) {
  .cat-play h2 {
    margin-bottom: 50px;
    font-size: 2rem;
    line-height: 3rem;
  }
}
.cat-play h2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30px;
  background-color: #6E552D;
  border-radius: 0 50% 50% 0;
}
.cat-play h2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 30px;
  background-color: #6E552D;
  border-radius: 50% 0 0 50%;
}
.cat-play > ul {
  text-align: left;
}
@media (min-width: 768px) {
  .cat-play > ul {
    margin-bottom: 100px;
  }
}
.cat-play > ul > li {
  margin-bottom: 50px;
}
.cat-play > ul > li h3 {
  font-family: "Kaisei Opti", serif;
  font-size: 1.8rem;
  line-height: 2.7rem;
  padding-bottom: 5px;
  margin-bottom: 30px;
  color: #F29443;
  font-weight: 400;
  border-bottom: 3px dashed #F29443;
}
@media (min-width: 768px) {
  .cat-play > ul > li h3 {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}
.cat-play > ul > li h3 img {
  display: inline-block;
  vertical-align: sub;
  margin-right: 5px;
  width: 25px;
}
.cat-play > ul > li .cat-play__image {
  margin-bottom: 20px;
}
.cat-play > ul > li p {
  font-size: 1.4rem;
  line-height: 2.6rem;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .cat-play > ul > li p {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}
.cat-play > ul > *:last-child {
  margin-bottom: 0;
}
.cat-play > *:last-child {
  margin-bottom: 0;
}

.cat-play__list {
  list-style: initial;
  margin-left: 20px;
  font-size: 1.4rem;
  line-height: 2.6rem;
}
@media (min-width: 768px) {
  .cat-play__list {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}

.cat-reform__free-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  line-height: 2.6rem;
  color: #F29443;
  text-align: center;
  margin-bottom: 0;
  font-weight: 600;
}
.cat-reform__free-title .cat-reform__free-title__left-line {
  width: 50px;
  height: 2px;
  background: #F29443;
  transform: rotate(45deg);
}
.cat-reform__free-title .cat-reform__free-title__right-line {
  width: 50px;
  height: 2px;
  background: #F29443;
  transform: rotate(-45deg);
}

.cat-achievement {
  max-width: 700px;
  margin-bottom: 50px;
}
.cat-achievement h2 {
  position: relative;
  padding: 10px 0;
  color: #fff;
  background-color: #907D5F;
  font-family: "Kaisei Opti", serif;
}
.cat-achievement h2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30px;
  background-color: #6E552D;
  border-radius: 0 50% 50% 0;
}
.cat-achievement h2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 30px;
  background-color: #6E552D;
  border-radius: 50% 0 0 50%;
}
.cat-achievement .cat-achievement__image {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cat-achievement h3 {
    text-align: left;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}
.cat-achievement ul {
  text-align: left;
  list-style: initial;
  margin-left: 20px;
}
.cat-achievement ul li {
  font-size: 1.2rem;
  line-height: 1.8rem;
}
@media (min-width: 768px) {
  .cat-achievement ul li {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}

.cat-reform {
  max-width: 700px;
  margin-bottom: 50px;
  text-align: left;
}
.cat-reform li {
  margin-bottom: 50px;
}
.cat-reform li h3 {
  font-family: "Kaisei Opti", serif;
  font-size: 1.8rem;
  line-height: 2.7rem;
  padding-bottom: 5px;
  margin-bottom: 30px;
  color: #F29443;
  font-weight: 400;
  border-bottom: 3px dashed #F29443;
}
@media (min-width: 768px) {
  .cat-reform li h3 {
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}
.cat-reform li h3 img {
  display: inline-block;
  vertical-align: sub;
  margin-right: 5px;
  width: 25px;
}
.cat-reform li .cat-reform__image1 {
  margin-bottom: 20px;
}
.cat-reform li .cat-reform__image1 img {
  max-width: 100%;
  width: auto;
  display: block;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .cat-reform li .cat-reform__image1 {
    margin: 0;
  }
}
.cat-reform li .cat-reform__text {
  font-size: 1.4rem;
  line-height: 2.6rem;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cat-reform li .cat-reform__text {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}
.cat-reform li .cat-reform__image2 {
  clear: both;
}
@media (min-width: 768px) {
  .cat-reform li .cat-reform__ul {
    margin-top: 50px;
  }
}
.cat-reform li .cat-reform__ul li {
  background-color: #FFF1E5;
  border-radius: 10px;
  padding: 30px 0;
  opacity: 1;
  width: 100%;
  margin: 0 auto 20px;
}
.cat-reform li .cat-reform__ul li div {
  width: 90%;
  margin: 0 auto;
}
.cat-reform li .cat-reform__ul li div h3 {
  font-family: "Kaisei Opti", serif;
  font-size: 1.8rem;
  line-height: 2.7rem;
  padding-bottom: 5px;
  margin-bottom: 20px;
  color: #F29443;
  font-weight: 400;
  border-bottom: 3px dashed #F29443;
}
@media (min-width: 768px) {
  .cat-reform li .cat-reform__ul li div h3 {
    font-size: 2.2rem;
    line-height: 3.3rem;
  }
}
.cat-reform li .cat-reform__ul li div h3 img {
  display: inline-block;
  vertical-align: sub;
  margin-right: 5px;
  width: 25px;
}
.cat-reform li .cat-reform__ul li div h3 span {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .cat-reform li .cat-reform__ul li div h3 span {
    font-size: 1.6rem;
  }
}
.cat-reform li .cat-reform__ul li div p {
  font-size: 1.4rem;
  line-height: 2.6rem;
}
@media (min-width: 768px) {
  .cat-reform li .cat-reform__ul li div p {
    font-size: 1.6rem;
    line-height: 2.9rem;
  }
}

.reform-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
}
.reform-content li {
  width: 48%;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .reform-content li {
    width: 30.6%;
  }
}
@media (min-width: 992px) {
  .reform-content li {
    width: 22%;
  }
}
.reform-content li div {
  margin-bottom: 10px;
}
.reform-content li p {
  font-size: 1.4rem;
  line-height: 2.1rem;
}

.dog {
  max-width: 700px;
  margin: auto;
  padding: 50px 5%;
}
.dog h2 {
  font-size: 2.4rem;
  line-height: 3.6rem;
  color: #63B19E;
  font-weight: 400;
}
@media (min-width: 768px) {
  .dog h2 {
    font-size: 2.8rem;
    line-height: 1.5;
  }
}
.dog .line__top {
  width: 100%;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 1px;
}
.dog .line__center {
  width: 100%;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 1px;
}
.dog .line__bottom {
  width: 100%;
  height: 1px;
  background-color: #63B19E;
  margin: 0 auto 50px;
}
.dog .dog__ul .dog__ul__li {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .dog .dog__ul .dog__ul__li {
    margin-bottom: 100px;
  }
}
.dog .dog__ul .dog__ul__li h3 {
  position: relative;
  padding: 10px 0;
  color: #fff;
  background-color: #907D5F;
  margin-bottom: 20px;
  font-family: "Kaisei Opti", serif;
}
@media (min-width: 768px) {
  .dog .dog__ul .dog__ul__li h3 {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 50px;
  }
}
.dog .dog__ul .dog__ul__li h3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30px;
  background-color: #6E552D;
  border-radius: 0 50% 50% 0;
}
.dog .dog__ul .dog__ul__li h3::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 30px;
  background-color: #6E552D;
  border-radius: 50% 0 0 50%;
}
.dog .dog__ul .dog__ul__li .dog__ul__li__ul {
  text-align: left;
  margin-bottom: 50px;
}
.dog .dog__ul .dog__ul__li .dog__ul__li__ul .dog__ul__li__ul__li {
  margin-bottom: 50px;
}
.dog .dog__ul .dog__ul__li .dog__ul__li__ul .dog__ul__li__ul__li h4 {
  font-family: "Kaisei Opti", serif;
  font-size: 1.8rem;
  line-height: 2.7rem;
  padding-bottom: 5px;
  margin-bottom: 20px;
  color: #F29443;
  font-weight: 400;
  border-bottom: 3px dashed #F29443;
}
@media (min-width: 768px) {
  .dog .dog__ul .dog__ul__li .dog__ul__li__ul .dog__ul__li__ul__li h4 {
    font-size: 2.4rem;
    line-height: 1.5;
    margin-bottom: 30px;
  }
}
.dog .dog__ul .dog__ul__li .dog__ul__li__ul .dog__ul__li__ul__li h4 img {
  display: inline-block;
  vertical-align: sub;
  margin-right: 5px;
  width: 25px;
}
.dog .dog__ul .dog__ul__li .dog__ul__li__ul .dog__ul__li__ul__li p {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .dog .dog__ul .dog__ul__li .dog__ul__li__ul .dog__ul__li__ul__li p {
    font-size: 1.8rem;
  }
}
.dog .dog__ul .dog__ul__li .dog__ul__li__ul .dog__ul__li__ul__li .dog__ul__li__ul__li__content {
  display: flex;
  gap: 4%;
  justify-content: center;
}
.dog .dog__ul .dog__ul__li .dog__ul__li__ul .dog__ul__li__ul__li .dog__ul__li__ul__li__content p {
  font-size: 1.4rem;
  line-height: 2.6rem;
}
.dog > *:last-child {
  margin-bottom: 0;
}

.dog__ul__li__ul__li__content__eria {
  width: 48%;
}

.dog__content {
  text-align: left;
  display: flex;
  gap: 4%;
  justify-content: center;
}
.dog__content .dog__content__image {
  width: 48%;
}
.dog__content .dog__content__image div {
  margin-bottom: 20px;
}
.dog__content p {
  font-size: 1.4rem;
  line-height: 1.5;
}

.navi {
  height: 100vh;
  overflow-y: hidden;
}/*# sourceMappingURL=style.css.map */



/* add 0820 hapimusu*/

.hapisumu{
	background-color: #FDFDEE;
	padding: 50px 5%;
}
.hapisumu__bnr{
	margin-bottom: 30px;
}
.hapisumu__bnr li{
	margin-bottom: 20px;
}
.hapisumu__award{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.hapisumu__award li{
	width: 48%;
	margin-top: 10px;
}
.hapisumu__award li:first-child{
	width: 100%;
	margin-top: 0;
}

@media (min-width: 768px) {
	.hapisumu{
		padding: 100px 2%;
	}
	.hapisumu ul{
		max-width: 700px;
		margin-left: auto;
		margin-right: auto;
	}
	.hapisumu__bnr{
		display: flex;
		justify-content: space-between;
		column-gap: 100px;
	}
}