/* --------------------------------------------------------------------------------
 * web fonts
-------------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap&subset=japanese");
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;700;&display=swap&subset=japanese');
@import url('https://fonts.googleapis.com/css2?family=Cardo&display=swap');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}
input, textarea {
	margin: 0;
	padding: 0;
}
ol, ul{
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption, th {
  text-align: left;
}
img {
	vertical-align: middle;
}

/* ----------------------------------------------------------------------
 basic setting
---------------------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  /* font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif; */
  color: #212529;
  line-height: 1.5;
  letter-spacing: 0;
  /*
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	*/
}

body * {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

input, button, textarea, select {
  color: #161f3e;
  /* font-family: "Noto Sans JP", sans-serif; */
  font-size: 16px;
}

textarea {
  vertical-align: top;
}

*:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a:hover {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* ----------------------------------------------------------------------
 common class
---------------------------------------------------------------------- */
.serif {
  font-family: 'Noto Serif JP', serif;
}
.cardo {
  font-family: 'Cardo', serif;
}

.mb-0 {
  margin-bottom: 0;
}
.mr-2 {
  margin-right: 1em;
}
.mt-4 {
  margin-top: 2em;
}

.tCenter {
  text-align: center;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.telLink {
  color: inherit;
  text-decoration: none;
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hoverImg {
  transition: .3s;
}

.hoverText {
  text-decoration: none;
  color: inherit;
}

.hoverText:hover {
  text-decoration: underline;
}

.require {
  display: inline-block;
  background-color: #d44629;
  color: #fff;
  font-size: 1.4rem;
  padding: 3px 5px;
  border-radius: 4px;
  margin-left: 5px;
}

.color-red {
  color: #D20005;
}
.color-pink {
  color: #ed1e79;
}
.toiyaHero {
  position: relative;
  font-family: "Noto Serif JP", serif;
}
.toiyaHero__inner {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toiyaHero__logo {
  width: 120px;
  position: absolute;
  top: 50px;
  left: 112px;
}
.toiyaHero__h1 {
  width: 558px;
}
.toiyaHero__scroll {
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: 0px;
  text-align: center;
}
.toiyaHero__scroll .inner {
  display: inline-block;
}
.toiyaHero__scroll span {
  display: block;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
}
.toiyaHero__scroll .line {
  display: inline-block;
  position: relative;
  height: 91px;
  width: 1px;
  margin-top: 15px;
  background-color: rgba(255, 255, 255, 0.4);
}
.toiyaHero__scroll .line:after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  animation: scrolling-running 3s ease-in-out infinite;
}
@keyframes scrolling-running {
  from {
    top: -3.5px;
  }
  to {
    top: 100%;
  }
}
.m-circle {
  width: 160px;
  height: 160px;
  background-color: rgba(255,255,255,0.9);
  border-radius: 50%;
  text-align: center;
  padding-top: 20px;
  font-family: "Noto Serif JP", serif;
}
.m-circle__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.m-circle__top .city {
  font-size: 15px;
  letter-spacing: 0.1em;
}
.m-circle__top .town {
  font-size: 30px;
  letter-spacing: 0.2em;
  line-height: 1.2;
}
.m-circle__bottom {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.1em;
  padding-top: 10px;
  margin: 4px 16px 0;
  border-top: 1px solid #b3b3b3;
}
.toiyaHero__circle {
  position: absolute;
  top: calc(50% - 80px);
  right: calc(50% - 490px);
}
.kodedraIntro {
  background-color: #eeeef0;
  padding: 80px 3%;
}
.kodedraIntro__inner {
  max-width: 980px;
  margin: 0 auto;
}
.kodedraIntroThumbs {
  display: flex;
  justify-content: space-between;
}
.kodedraIntroThumbs__left {
  width: 400px;
}
.kodedraIntroThumbs__right {
  width: 530px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.kodedraIntroThumbs__bottom {
  display: flex;
  justify-content: space-between;
}
.kodedraIntroThumbs__bottom img {
  height: 245px;
  width: auto;
}
.kodedraIntroDesc {
  margin-top: 130px;
  position: relative;
}
.kodedraIntroDesc__title {
  font-size: 98px;
  font-family: "Cardo", serif;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
  position: relative;
  left: -30px;
}
.kodedraIntroDesc__inner {
  max-width: 740px;
  margin: 15px auto 0;
}
.kodedraIntroDesc__subtitle {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.15em;
}
.kodedraIntroDescTime {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.kodedraIntroDescTime__tag {
  background-color: #212529;
  text-align: center;
  width: 308px;
  font-size: 24px;
  letter-spacing: 0.45em;
  padding: 7px 0 7px 0.225em;
  color: #fff;
  font-family: "Noto Serif JP", serif;
}
.kodedraIntroDescTime__time {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-left: 64px;
}
.kodedraIntroDesc__text {
  margin-top: 30px;
  font-size: 18px;
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.15em;
  font-family: "Noto Serif jp", serif;
}
.kodedraIntroDesc__circle {
  position: absolute;
  top: 0;
  right: calc(50% - 502px);
}
.kodedraIntroConcept {
  max-width: 882px;
  margin: 70px auto 0;
  border: 1px solid #b3b3b3;
  padding: 35px 60px 40px;
}
.kodedraIntroConcept__row {
  display: flex;
  justify-content: space-between;
  margin: 30px 0 40px;
}
.kodedraIntroConcept__left {
  width: 472px;
}
.kodedraIntroConcept__right {
  width: 244px;
}
.kodedraIntroConcept__title {
  text-align: center;
  font-size: 36px;
  letter-spacing: 0.03em;
  font-family: "Cardo", serif;
}
.kodedraIntroConcept__text {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.2em;
  font-family: "Noto Serif JP", serif;
}
.koderaIntroContept__copy {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  &:before {
    content: "";
    display: inline-block;
    flex: 1;
    height: 1px;
    background-color: #212529;
    margin-right: 15px;
  }
  &:after {
    content: "";
    display: inline-block;
    flex: 1;
    height: 1px;
    background-color: #212529;
    margin-left: 15px;
  }
}
.toiyaPlan {
  margin-top: 130px;
  padding: 0 3%;
}
.toiyaPlan__inner {
  max-width: 1068px;
  margin: 0 auto;
}
.toiyaPlan__title {
  font-size: 45px;
  letter-spacing: 0.03em;
  font-family: "Cardo", serif;
  text-align: center;
}
.toiyaPlan__subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-top: 32px;
}
.toiyaPlan__tags {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.toiyaPlan__tags li {
  border-top: 1px solid #212529;
  border-bottom: 1px solid #212529;
  border-left: 1px solid #212529;
  text-align: center;
  width: 245px;
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  padding: 5px 0;
}
@media screen and (min-width: 751px){
  .toiyaPlan__tags li:last-child {
    border-right: 1px solid #212529;
  }
}
.toiyaPlan__wrapper {
  max-width: 920px;
  margin: 0 auto;
}
.toiyaPlan__spec {
  margin-top: 45px;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-align: center;
}
.toiyaPlan__text {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-top: 60px;
  line-height: 2.25;
  font-family: "Noto Serif JP", serif;
}
.toiyaPlanGallery {
  margin-top: 120px;
  position: relative;
}
.toiyaPlanGallery__item img {
  height: 225px;
}
.toiyaPlanGallery__item a {
  display: block;
  padding: 0 5px;
}
.toiyaPlanGallery .slick-prev {
  position: absolute;
  width: 60px;
  height: 60px;
  background: url(../img/prev.svg) no-repeat center/contain;
  top: calc(50% - 30px);
  left: -88px;
}
.toiyaPlanGallery .slick-next {
  position: absolute;
  width: 60px;
  height: 60px;
  background: url(../img/next.svg) no-repeat center/contain;
  top: calc(50% - 30px);
  right: -88px;
}
.toiyaPlanGallery .slick-dots {
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: -40px;
  display: flex;
  justify-content: center;
}
.toiyaPlanGallery .slick-dots li {
  margin: 0 4px;
}
.toiyaPlanGallery .slick-dots li button {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border: 1px solid #bcbebf;
  background-color: #fff;
  border-radius: 50%;
  padding: 0;
  text-indent: -9999px;
}
.toiyaPlanGallery .slick-dots li.slick-active button {
  background-color: #bcbebf;
}
.toiyaPlanPoint {
  max-width: 920px;
  margin: 160px auto 0;
}
.toiyaPlanPoint__title span {
  display: inline-block;
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2em;
  padding: 5px 27px 5px 27px;
  border: 1px solid #212529;
}
.toiyaPlanPoint__list {
  margin-top: 30px;
}
.toiyaPlanPoint__list li {
  font-size: 15px;
  letter-spacing: 0.15em;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  margin-bottom: 10px;
  text-indent: -1em;
  margin-left: 1em;
}
.toiyaPlanPoint__list li:before {
  content: "・";
}
.toiyaLayout {
  margin-top: 130px;
  padding: 0 3%;
}
.toiyaLayout__title {
  font-size: 45px;
  letter-spacing: 0.03em;
  font-family: "Cardo", serif;
  text-align: center;
}
.toiyaLayout__img {
  text-align: center;
  margin-top: 50px;
  img {
    width: 700px;
  }
}
.toiyaKodawari {
  margin-top: 130px;
  padding: 60px 3% 50px;
  background-color: #ebebe1;
}
.toiyaKodawari__title {
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2em;
  text-align: center;
}
.toiyaKodawari__text {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 2.25;
  margin-top: 40px;
}
.toiyaKodawariGallery {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.toiyaKodawariGallery__item {
  width: 188px;
  margin: 0 10px;
}
.toiyaKodawariGallery__num {
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}
.toiyaKodawariGallery__thumb {
  margin-top: -10px;
}
.toiyaKodawariGallery__text {
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  margin-top: 20px;
}
.toiyaSpec {
  margin-top: 120px;
}
.toiyaSpec__title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
.toiyaSpec__inner {
  max-width: 770px;
  margin: 90px auto 0;
  border: 1px solid #212529;
  padding: 45px;
  display: flex;
  justify-content: space-between;
}
.toiyaSpec__left {
  width: 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.toiyaSpec__logo {
  text-align: center;
  width: 102px;
}
.toiyaSpec__name {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  padding: 24px 0;
  border-top: 1px solid #212529;
  border-bottom: 1px solid #212529;
}
.toiyaSpec__right {
  width: 510px;
}
.toiyaSpec__title span {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 1px 15px 2px;
  border: 1px solid #212529;
}
.toiyaSpecPrice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-left: 0px;
}
.toiyaSpecPrice__left {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.15em;
}
.toiyaSpecPrice__center {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.toiyaSpecPrice__center span {
  font-size: 44px;
  color: #c71432;
}
.toiyaSpecPrice__right {
  font-size: 14px;
  letter-spacing: 0.015em;
}
.toiyaSpec__desc {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: .05em;
}
.toiyaContact {
  padding-top: 110px;
}
.toiyaContact__inner {
  max-width: 880px;
  margin: 0 auto;
}
.toiyaContactHeader {
  text-align: center;
}
.toiyaContactHeader__title {
  letter-spacing: 0.1em;
}
.toiyaContactHeader__title .en {
  font-size: 24px;
  display: block;
}
.toiyaContactHeader__title .ja {
  font-size: 12px;
  display: block;
}
.toiyaContactHeader__text {
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-top: 20px;
}
.toiyaContactTel {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #212529;
  letter-spacing: 0.1em;
  text-align: center;
}
.toiyaContactTel__title {
  font-size: 16px;
}
.toiyaContactTel__tel {
  font-size: 40px;
}
.toiyaContactTel__time {
  font-size: 16px;
}
.toiyaContact__h3 {
  margin-top: 110px;
  font-size: 20px;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-align: center;
}
.toiyaContactForm__table {
  width: 100%;
  margin-top: 30px;
}
.toiyaContactForm__table tr {
  border-top: 1px solid #212529;
}
.toiyaContactForm__table th {
  width: 320px;
  padding: 30px 0 30px 60px;
  position: relative;
  font-size: 16px;
  letter-spacing: .1em;
  vertical-align: middle;
}
.toiyaContactForm__table th .hissu {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fff;
  width: 45px;
  padding: 2px 0 3px;
  text-align: center;
  display: inline-block;
  position: absolute;
  top: calc(50% - 13px);
  left: 0px;
  background-color: #c1272d;
}
.toiyaContactForm__table td {
  padding: 30px 0;
}
.toiyaContactForm__table input[type="text"],
.toiyaContactForm__table input[type="email"] {
  width: 100%;
  height: 25px;
  border: 1px solid #212529;
  padding: 0 0.25em;
}
.toiyaContactForm__table select {
  height: 25px;
  border: 1px solid #212529;
  padding: 0 0.25em;
}
.toiyaContactForm__table textarea {
  width: 100%;
  border: 1px solid #212529;
  padding: 0.5em 0.25em;
}
.toiyaContactForm__table input[type="text"].-short {
  width: 65px;
}
.sp-vertical {
  display: inline-block;
  margin-right: 2em;
}
.toiyaContactForm__btn {
  margin-top: 80px;
  text-align: center;
}
.toiyaContactForm__btn button {
  -webkit-appearance: none;
  letter-spacing: 0.1em;
  border-style: none;
  color: #fff;
  background-color: #212529;
  width: 310px;
  height: 50px;
}
.toiyaContactForm__btn button:hover {
  opacity: 0.8;
  cursor: pointer;
}
.toiyaBottom {
  margin-top: 150px;
  padding: 0 20px;
}
.toiyaBottom__inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.toiyaBottom__item {
  width: 475px;
}
.toiyaBottom__item a {
  display: block;
  width: 100%;
  font-size: 24px;
  letter-spacing: 0.1em;
  text-align: center;
  background-color: #ebebe1;
  padding: 72px 0;
  text-decoration: none;
  color: inherit;
}
.toiyaBottom__item a:hover {
  opacity: 0.8;
}
/*
.footer {
  background-color: #ebebe1;
  margin-top: 100px;
  padding: 40px 20px 50px;
}
.footer__inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.footer__left {
  text-align: center;
  width: 475px;
  text-align: center;
  padding-top: 25px;
}
.footer__right {
  margin-left: 20px;
  font-size: 14px;
  letter-spacing: 0.1em;
}
  */
.bottomButtons {
  display: none;
}

@media only screen and (min-width: 751px) {
  .pc-non {
    display: none !important;
  }
  .telLink {
    pointer-events: none;
  }
  .hoverImg:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 750px) {
  .sp-non {
    display: none !important;
  }
}

@media screen and (max-width: 750px){
  .toiyaHero__logo {
    width: 86px;
    top: 26px;
    left: 26px;
  }
  .toiyaHero__h1 {
    width: 100%;
    padding: 0 15.8% 0 4.8%;
    top: 48vw;
    position: absolute;
    left: 0px;
  }
  .m-circle {
    width: 130px;
    height: 130px;
    padding-top: 22px;
  }
  .m-circle__top .city {
    font-size: 12px;
  }
  .m-circle__top .town {
    font-size: 24px;
  }
  .m-circle__bottom {
    font-size: 14px;
  }
  .toiyaHero__circle {
    top: 67.8vw;
    right: 4.2%;
  }
  .kodedraIntro {
    padding: 24px 24px;
  }
  .kodedraIntroThumbs {
    flex-direction: column;
  }
  .kodedraIntroThumbs__left {
    width: 100%;
    margin-bottom: 15px;
  }
  .kodedraIntroThumbs__right {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
  .kodedraIntroThumbs__top {
    width: calc(50% - 7.5px);
  }
  .kodedraIntroThumbs__bottom {
    width: calc(50% - 7.5px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .kodedraIntroThumbs__bottom img {
    height: auto;
  }
  .kodedraIntroDesc {
    margin-top: 24px;
  }
  .kodedraIntroDesc__title {
    font-size: 42px;
    position: static;
  }
  .kodedraIntroDesc__subtitle {
    font-size: 14px;
    letter-spacing: 0;
  }
  .kodedraIntroDesc__inner {
    margin-top: 5px;
  }
  .kodedraIntroDescTime {
    width: calc(100% - 150px);
    flex-direction: column;
    margin-top: 10px;
  }
  .kodedraIntroDesc__circle {
    right: 0px;
    top: 76px;
  }
  .kodedraIntroDescTime__tag {
    width: 100%;
    font-size: 14px;
    padding: 2px 0;
  }
  .kodedraIntroDescTime__time {
    text-align: center;
    font-size: 16px;
    margin: 4px 0 0;
    letter-spacing: .01em;
  }
  .kodedraIntroDesc__text {
    font-size: 13px;
    width: calc(100%);
    margin-top: 4px;
    letter-spacing: 0;
  }
  .kodedraIntroConcept {
    margin-top: 35px;
    padding: 20px;
  }
  .kodedraIntroConcept__row {
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .kodedraIntroConcept__left {
    width: 100%;
  }
  .kodedraIntroConcept__right {
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }
  .kodedraIntroConcept__title {
    font-size: 35px;
    text-align: left;
  }
  .kodedraIntroConcept__text {
    font-size: 13px;
  }
  .koderaIntroContept__copy {
    border-top: 1px solid #b3b3b3;
    font-size: 16px;
    margin: 20px 20px 0;
    padding-top: 20px;
    text-align: center;
    &:before,
    &:after {
      display: none;
    }
  }
  .toiyaPlan {
    margin-top: 50px;
    padding: 0 24px;
  }
  .toiyaPlan__title {
    font-size: 32px;
  }
  .toiyaPlan__subtitle {
    font-size: 14px;
    margin-top: 15px;
  }
  .toiyaPlan__tags {
    margin-top: 30px;
    flex-wrap: wrap;
  }
  .toiyaPlan__tags li {
    width: 50%;
    margin-left: -1px;
    margin-top: -1px;
    border: 1px solid #45494e;
    font-size: 13.5px;
  }
  .toiyaPlan__spec {
    font-size: 14px;
    text-align: center;
  }
  .toiyaPlan__text {
    font-size: 13px;
    line-height: 1.7;
    margin-top: 25px;
  }
  .toiyaPlanGallery {
    margin-top: 50px;
  }
  .toiyaPlanGallery__item a {
    padding: 0 0px;
  }
  .toiyaPlanGallery__item img {
    margin: 0 auto;
  }
  .toiyaPlanGallery .slick-prev {
    left: -20px;
    width: 30px;
    height: 30px;
    top: calc(50% - 15px);
  }
  .toiyaPlanGallery .slick-next {
    right: -20px;
    width: 30px;
    height: 30px;
    top: calc(50% - 15px);
  }
  .toiyaPlanGallery .slick-dots {
    bottom: -30px;
  }
  .toiyaPlanGallery .slick-dots li {
    margin: 0 2px;
  }
  .toiyaPlanPoint {
    margin-top: 70px;
  }
  .toiyaPlanPoint__title span {
    font-size: 16px;
    padding: 5px 15px;
  }
  .toiyaPlanPoint__list {
    margin-top: 20px;
  }
  .toiyaPlanPoint__list li {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .toiyaLayout {
    margin-top: 75px;
    padding: 0 24px;
  }
  .toiyaLayout__title {
    font-size: 35px;
  }
  .toiyaLayout__img {
    margin-top: 40px;
  }
  .toiyaKodawari {
    margin-top: 50px;
    padding: 50px 24px 20px;
  }
  .toiyaKodawari__title {
    font-size: 20px;
    white-space: nowrap;
    margin: 0 -1em;
  }
  .toiyaKodawari__title .small {
    font-size: 18px;
  }
  .toiyaKodawari__text {
    margin: 30px -1em 0;
    font-size: 13px;
  }
  .toiyaKodawariGallery {
    margin-top: 0;
    flex-direction: column;
  }
  .toiyaKodawariGallery__item {
    position: relative;
    padding-left: 83px;
    margin: 40px 0 0;
    width: 100%;
  }
  .toiyaKodawariGallery__num {
    position: absolute;
    left: 0px;
    top: 8.6vw;
    z-index: 1;
  }
  .toiyaKodawariGallery__thumb {
    position: relative;
    z-index: 2;
  }
  .toiyaKodawariGallery__thumb img {
    aspect-ratio: 245/172;
    object-fit: cover;
  }
  .toiyaKodawariGallery__text {
    margin-top: 10px;
  }
  .toiyaSpec {
    margin-top: 70px;
    padding: 0 24px;
  }
  .toiyaSpec__title {
    font-size: 18px;
  }
  .toiyaSpec__inner {
    margin: 50px auto 0;
    padding: 30px 20px 20px;
    flex-direction: column;
  }
  .toiyaSpec__left {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .toiyaSpec__logo {
    width: 102px;
  }
  .toiyaSpec__name {
    padding: 16px 0;
    font-size: 16px;
    width: calc(100% - 125px);
  }
  .toiyaSpec__right {
    width: 100%;
    margin-top: 30px;
    position: relative;
  }
  .toiyaSpec__title {
    text-align: left;
  }
  .toiyaSpec__title span {
    font-size: 18px;
    padding: 1px 10px 2px;
  }
  .toiyaSpecPrice {
    padding-left: 0;
    margin-top: 12px;
  }
  .toiyaSpecPrice__left {
    font-size: 20px;
    letter-spacing: 0;
    width: 69px;
  }
  .toiyaSpecPrice__center {
    position: absolute;
    top: -21px;
    left: 118px;
    font-size: 20px;
  }
  .toiyaSpecPrice__center span {
    font-size: 44px;
    letter-spacing: 0;
  }
  .toiyaSpecPrice__right {
    font-size: 14px;
    letter-spacing: 0.015em;
  }
  .toiyaSpec__desc {
    font-size: 13px;
  }
  .toiyaContact {
    margin-top: 90px;
    padding: 0 25px;
  }
  .toiyaContactTel__tel {
    font-size: 35px;
  }
  .toiyaContactTel__time {
    font-size: 14px;
    margin-top: 10px;
  }
  .toiyaContact__h3 {
    font-size: 16px;
    margin-top: 50px;
    text-align: center;
  }
  .toiyaContactForm__table,
  .toiyaContactForm__table tbody,
  .toiyaContactForm__table tr,
  .toiyaContactForm__table th,
  .toiyaContactForm__table td {
    display: block;
  }
  .toiyaContactForm__table th {
    padding: 15px 0 15px 55px;
  }
  .toiyaContactForm__table td {
    padding: 0 0 15px;
  }
  .toiyaContactForm__btn {
    margin-top: 70px;
  }
  .toiyaBottom {
    margin-top: 50px;
    padding: 0 25px;
  }
  .toiyaBottom__inner {
    display: block;
  }
  .toiyaBottom__item {
    width: 100%;
    max-width: 325px;
    margin-left: auto;
    margin-right: auto;
  }
  .toiyaBottom__item:not(:first-child) {
    margin-top: 30px;
  }
  .toiyaBottom__item a {
    font-size: 16px;
    padding: 48px 0;
  }
  .footer {
    padding-bottom: 70px !important;
  }
  /*
  .footer {
    padding: 30px 25px 160px;
  }
  .footer__inner {
    position: relative;
  }
  .footer__left {
    width: 92px;
    padding-top: 0;
  }
  .footer__right {
    font-size: 12px;
  }
  .copyright {
    position: absolute;
    bottom: -64px;
    left: 0px;
    width: 100%;
    text-align: center;
  }
  */
  .bottomButtons {
    display: block;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 10;
    height: 60px;
  }
  .bottomButtons__inner {
    display: flex;
  }
  .bottomButtons__item {
    width: 50%;
    height: 60px;
  }
  .bottomButtons__item a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    height: 100%;
    color: #fff;
    text-decoration: none;
  }
  .bottomButtons__item a.-black {
    background-color: #000000;
  }
  .bottomButtons__item a.-gray {
    background-color: #b3b3b3;
  }
  .bottomButtons__item a:before {
    content: "";
    width: 6px;
    height: 12px;
    background: url(../img/angle-right.svg) no-repeat center/contain;
    margin-right: 12px;
  }
}