/*common*/
body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #604c3f;
  font-weight: bold;
  letter-spacing: 1px;
}

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

p {
  line-height: 30px;
}

p a {
  border-bottom: solid 1px #604c3f;
}

a,
a:hover {
  -o-transition: color 0.25s ease-in;
  -webkit-transition: color 0.25s ease-in;
  -moz-transition: color 0.25s ease-in;
  transition: color 0.25s ease-in;
}

.dib {
  display: inline-block;
}

@media screen and (min-width: 1024.02px) {
  .no-pc {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .no-tab {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .no-sp {
    display: none !important;
  }
}

.number_eng {
  font-family: "Roboto", sans-serif;
}

.wrap {
  max-width: 1000px;
  margin: auto;
}

.row {
  margin-top: 10px;
}

.row2 {
  margin-top: 50px;
}

.row3 {
  margin-top: 0px;
}

.row4 {
  margin-top: 100px;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  p {
    line-height: 25px;
  }

  img {
    max-width: 100%;
  }

  section {
    max-width: 100%;
    margin: 30px auto 0;
  }

  .wrap {
    width: 100%;
    margin: auto;
  }

  .row {
    justify-content: center;
  }

  .row img:nth-child(1) {
    margin-top: 50px;
  }

  .sp {
    display: block !important;
  }

  .pc {
    display: none !important;
  }
}

/*header*/
header {
  max-width: 100%;
  width: 1000px;
  background: url("../img2/common/header_pc.png") no-repeat center top / auto calc(142 / 202 * 100%);
  background-color: #fff;
  /* background-repeat: no-repeat; */
  /* background-size: contain; */
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header_box {
  display: flex;
  justify-content: space-between;
  height: 132px;
  padding: 10px;
}

header .header_sub {
  flex-grow: 1;
  display: grid;
  grid-template-rows: auto 1fr;
}

header h1 {
  display: block;
  color: #604c3f;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.15;
  font-size: 14px;
  text-align: right;
}

div a {
  display: block;
  marigin: 0 100px;
}

a img.logo {
  max-width: 80px;
}

nav.menu {
  display: block;
  width: 100%;
  height: 60px;
  padding: 10px;
  color: #604c3f;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.15;
  margin-top: 10px;
}

nav.menu ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
}

nav.menu ul li {
  width: 100%;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  border-right: 1px solid #d6d6d6;
  letter-spacing: 5px;
}

nav.menu ul li:nth-last-child(2) {
  border-right: none;
}

nav ul ul {
  display: block;
}

nav ul li {
  position: relative;
}

nav ul li:hover {
  background-color: #d7f4ff;
}

nav ul li a {
  color: inherit;
  transition: all 0.3s;
}

nav.menu ul li.rec {
  background-color: #ffbb8a;
  color: #9a3838;
}

nav.menu ul li.rec:hover {
  background-color: #ff984e;
}

nav ul li.has-child::after {
  content: "";
  position: absolute;
  right: 11px;
  top: 15px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #604c3f;
  border-right: 2px solid #604c3f;
  transform: rotate(135deg);
}

/*下の階層を持っているulの指定*/
nav li.has-child ul.childmenu {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: 0;
  top: 38px;
  z-index: 4;
  /*形状を指定*/
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  background-color: rgba(215, 244, 2559, 0.9);
  padding: 20px;
  width: 800px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: all 0.3s;
}

/*hoverしたら表示*/
nav li.has-child:hover>ul,
nav li.has-child ul li:hover>ul

/*,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul*/ {
  visibility: visible;
  opacity: 1;
}

nav.menu ul li ul.childmenu li {
  width: calc(25% - 10px);
  margin: 5px;
  text-align: center;
  padding: 10px;
  letter-spacing: 5px;
  background: #fff;
  border: none;
  border-radius: 6px;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a {
  display: block;
  color: #604c3f;
  font-size: 14px;
  letter-spacing: 2px;
  background-color: #fff;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active {
}

@media screen and (max-width: 768px) {
  header {
    max-width: 100%;
    background-image: url("../img2/common/header_sp.png");
    background-position: center top;
    background-size: contain;
    min-height: 95px;
    top: 55px;
  }

  .header_box {
    display: flex;
    flex-direction: column-reverse;
    height: auto;
    padding: calc(10 / 375 * 100vw);
    padding-top: calc(5 / 375 * 100vw);
    width: 100%;
  }

  header .header_sub {
    display: contents;
  }

  header h1 {
    display: block;
    margin-bottom: calc(6 / 10 * 1em);
    font-size: calc(10 / 375 * 100vw);
    letter-spacing: 0.5px;
    text-align: center;
  }

  header a img.logo {
    /* max-width: 46px; */
    width: calc(46 / 375 * 100vw);
  }

  nav {
    padding: 0;
  }

  nav.menu {
    display: block;
    width: 100%;
    height: auto;
    padding: 10px;
    margin-top: 20px;
    background-color: #faf2ad;
    position: relative;
    z-index: 999;
  }

  nav.menu ul {
    display: block;
  }

  nav.menu ul li {
    border-right: none;
  }

  .mean-container .mean-nav ul li.rec {
    background-color: #ffbb8a !important;
    color: #9a3838 !important;
  }

  nav li.has-child ul.childmenu {
    max-width: 100%;
    padding: 10px;
    margin: 0 10px;
  }

  nav li.has-child ul.childmenu li {
    margin: 5px;
    text-align: center;
    padding: 3px;
    letter-spacing: 5px;
    background: #fff;
    border: none;
    border-radius: 6px;
    width: calc(47% - 10px);
    /* margin padding分を引く */
  }

  nav li.has-child ul,
  nav li.has-child ul ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    /*JSで制御するため一旦表示*/
    opacity: 1;
    /*JSで制御するため一旦表示*/
    display: none;
    /*JSのslidetoggleで表示させるため非表示に*/
    transition: none;
    /*JSで制御するためCSSのアニメーションを切る*/
    padding: 0px;
    background-color: #faf2ad;
  }

  /*	nav li.has-child ul.childmenu{
		width: 100%;
		position: initial;
		padding: 0px;
		background-color: #faf2ad;
	}*/
  nav.menu ul li ul.childmenu li {
    width: calc(50% - 10px);
  }

  nav li.has-child ul.childmenu {
    /*絶対配置で位置を指定*/
    position: inherit;
    top: 0;
    width: auto;
    justify-content: center;
  }

  /*矢印の位置と向き*/

  /*	nav ul li.has-child::before{
			left:20px;	
		}

	nav ul ul li.has-child::before{
			transform: rotate(135deg);
			left:20px;
		}

	nav ul li.has-child.active::before{
			transform: rotate(-45deg);
	}*/
  nav ul li.has-child::after {
    display: none;
  }
}

/*footer*/
.end-menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
}

.end-menu a.emblock {
  display: block;
  width: 30%;
  background-color: #d71317;
  padding: 30px 0 20px;
  position: relative;
  border-radius: 10px;
}

.end-menu a.emblock:nth-last-child(2) {
  background-color: #3bae37;
}

p.endmenu_top {
  font-size: 28px;
  margin-bottom: 10px;
  color: #fcf7ae;
  font-weight: medium;
}

p.endmenu_bottom {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
}

p.attention {
  color: #604c3f;
  font-size: 14px;
  position: absolute;
  bottom: -30px;
  letter-spacing: 0px;
}

.end-menu a:nth-child(n + 1) {
  margin-top: 25px;
}

.end-menu .endmenu_p {
  font-weight: 400;
  color: #fcf7ae;
  font-size: 14px;
}

.end-menu p.txt {
  margin: 40px 0 0 auto;
  font-size: 14px;
  letter-spacing: 0px;
  font-weight: 500;
}

footer {
}

footer.--top {
}

footer h2 {
  padding-top: 120px;
  font-size: 25px;
  padding-bottom: 30px;
}

footer img {
  max-width: 80%;
}

footer div {
  background-color: #fff7af;
  padding: 30px 0 20px;
}

footer a {
  padding: 0 5px;
  border-bottom: 1px solid #bf9e90;
}

footer small {
  display: block;
  text-align: right;
  color: #bf9e90;
  background-color: #604c3f;
  padding: 10px;
}

section.area_list {
  padding: 20px 40px;
  background-color: #fff7af;
}

section.area_list h3 {
  margin: 10px auto;
  background-color: #e3d874;
  color: #604c3f;
  padding: 5px;
  font-size: 14px;
  font-weight: 100;
}

section.area_list h4 {
  margin: 5px 20px;
  border-bottom: solid 1px #604c3f;
  font-weight: 500;
}

section.area_list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 20px;
  justify-content: flex-start;
}

section.area_list ul li {
  font-size: 12px;
  padding: 5px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  footer {
    margin-top: 0px;
    background-image: url("../img2/common/footer_pc.png");
    /*		background-position: top;
    	background-size: contain;*/
  }

  footer h2 {
    padding-top: 100px;
    font-size: 22px;
    padding-bottom: 50px;
  }

  footer img {
    max-width: 60%;
    margin: 0 auto;
  }

  .end-menu {
    display: block;
    width: 95%;
    margin: 0 auto;
  }

  .end-menu a.emblock {
    width: 100%;
    margin-top: 30px;
  }

  .end-menu a.emblock:last-child {
    margin-top: 40px;
  }

  section.area_list {
    padding: 20px;
    margin: 0 auto;
    max-width: 100%;
  }

  section.area_list ul {
    justify-content: center;
    margin: 10px 10px;
  }
}

/*top*/
.eye-catch {
  margin-top: 50px;
}

.topmenu {
  margin-top: 50px;
  padding: 53px 92px 48px;
  background: #f1fcff;
}

.topmenu_title {
  width: 100%;
  font-size: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #0171b7;
  text-align: center;
}

.topmenu_title::before,
.topmenu_title::after {
  content: "";
  display: block;
  width: 44px;
  aspect-ratio: 44/54;
  background: url(../img/common/topmenu-icon.svg) no-repeat center/contain;
}

.topmenu_title::after {
  transform: rotateY(180deg);
}

.topmenu_list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}

@media screen and (max-width: 768px) {
  .topmenu {
    width: 100%;
    padding: 24px 20px;
  }

  .topmenu_title {
    font-size: 20px;
  }

  .topmenu_title::before,
  .topmenu_title::after {
    width: 24px;
  }

  .topmenu_list {
    margin-top: 32px;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.banner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.banner a {
  margin-top: 50px;
}

.contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.contact a {
  margin: 0 20px;
}

@media screen and (max-width: 768px) {
  .topmenu {
    width: 95%;
    margin: 30px auto 0;
  }
}

@media screen and (max-width: 768px) {
  .menu a:nth-child(n + 3) {
    margin-top: 0px;
  }

  .contact a {
    margin-top: -20px;
  }

  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}

/*company*/
h2.com_h2 {
  display: block;
  margin: 100 auto 50;
  font-size: 22px;
  text-align: center;
}

table {
  margin: 20px auto;
}

.tbl-com th {
  background: #bdb99c;
  border: solid 1px #fff;
  color: #fff;
  padding: 20px 10px;
}

.tbl-com td {
  border: solid 1px #fff;
  padding: 20px 10px;
}

@media screen and (max-width: 768px) {
  .last td:last-child {
    border-bottom: solid 1px #fff;
    width: 100%;
  }

  .tbl-com {
    width: 80%;
  }

  .tbl-com th,
  .tbl-com td {
    border-bottom: none;
    display: block;
    width: 100%;
  }
}

/* 20241225 */
.col2 {
  display: grid;
  grid-template-columns: repeat(2, 50%);
}

@media screen and (max-width: 768px) {
  .col2 {
    margin-top: 60px;
    grid-template-columns: 100%;
  }
}

.archive-cleaning {
  color: #5d4d42;
  font-weight: 400;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.archive-cleaning h2 {
  text-align: center;
  font-size: 30px;
  line-height: calc(45 / 30);
}

.archive-cleaning strong {
  font-weight: bold;
}

.archive-cleaning table {
}

.archive-cleaning th,
.archive-cleaning td {
  padding: 13px 40px;
  border: 1px solid #c9c9c9;
  vertical-align: baseline;
}

.archive-cleaning td:first-of-type {
  width: 50%;
  background: rgba(254, 247, 183, 0.37);
  font-size: 25px;
}

.archive-cleaning td {
  font-size: 30px;
}

.archive-cleaning tr:has(> :nth-child(3):last-child) td:nth-of-type(2) {
  width: 16%;
}

.archive-cleaning td:last-of-type {
  font-size: 30px;
}

.archive-cleaning td:last-of-type code {
  font-size: 16px;
}

.archive-cleaning figcaption,
.archive-cleaning table + p {
  margin-top: 17px;
  font-size: 25px;
  line-height: calc(31 / 25);
  font-weight: 400;
  font-feature-settings: "palt";
}

.archive-cleaning .pc {
  display: block !important;
}

.archive-cleaning .sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .archive-cleaning h2 {
    font-size: 24px;
  }

  .archive-cleaning th,
  .archive-cleaning td {
    padding: 8px 12px;
    font-feature-settings: "palt";
  }

  .archive-cleaning td {
    font-size: 16px;
  }

  .archive-cleaning tr:has(> :nth-child(3):last-child) td:nth-of-type(2) {
    width: 17%;
  }

  .archive-cleaning td:first-of-type {
    font-size: 16px;
  }

  .archive-cleaning td:last-of-type {
    font-size: 18px;
  }

  .archive-cleaning td:last-of-type code {
    font-size: 12px;
  }

  .archive-cleaning figcaption,
  .archive-cleaning table + p {
    margin-top: 8px;
    font-size: 16px;
  }

  .archive-cleaning .pc {
    display: none !important;
  }

  .archive-cleaning .sp {
    display: block !important;
  }
}

.guarantee {
  margin-top: 50px;
}

.guarantee__inner {
}

.guarantee__box {
  padding-block: 43px 52px;
  background: #d9f1f6;
  position: relative;
}

.guarantee__box::before {
  content: "";
  display: block;
  width: 85.76px;
  aspect-ratio: 85.76/76.31;
  background: url(../img/cleaning/guarantee-img01.png) no-repeat center/contain;
  position: absolute;
  top: 48.7px;
  left: 53.7px;
}

.guarantee__box::after {
  content: "";
  display: block;
  width: 158px;
  aspect-ratio: 158/189;
  background: url(../img/cleaning/guarantee-img02.png) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  right: 21px;
}

h2.guarantee__title {
  font-size: 36px;
}

.guarantee__txt {
  width: 70%;
  margin-top: 30px;
  margin-inline: auto;
  text-align: center;
  /* font-size: 22px; */
  font-size: 28px;
  line-height: calc(36 / 24);
}

@media screen and (max-width: 768px) {
  .guarantee {
    margin-top: 64px;
  }

  .guarantee__box {
    padding-block: 40px 160px;
    padding-inline: 16px;
  }

  .guarantee__box::before {
    width: 40px;
    top: 40px;
    left: 24px;
  }

  .guarantee__box::after {
    width: 120px;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
  }

  h2.guarantee__title {
    font-size: 24px;
  }

  .guarantee__txt {
    width: auto;
    margin-top: 24px;
    /* font-size: 16px; */
    font-size: 18px;
  }
}

.discount {
  margin-top: 90px;
  background: #fffadc;
  border-radius: 30px;
}

.discount.--top {
  margin-right: 10px;
  border-right: 10px solid #fff;
  border-bottom: 10px solid #fff;
  box-shadow: 10px 0 0 0 #d9f1f6;
}

.discount__inner,
.discount__top {
  height: 100%;
}

.discount__top {
  display: grid;
  place-items: center;
}

.discount__top-img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.discount__top img:first-of-type {
  position: absolute;
  top: 52px;
  left: 16px;
  transform: translateY(-100%);
  width: 30%;
}

.discount.--top img:first-of-type {
  top: 24px;
}

.discount.--no-round {
  border-radius: 0;
}

.discount__main {
  padding-inline: 32.5px;
  padding-bottom: 55px;
}

.discount__main:has(.discount__txt:last-child) {
  padding-bottom: 30px;
}

.discount__h2 {
  margin-top: 47px;
  font-weight: bold;
  display: grid;
  grid-template-columns: 1fr calc(752 / 1000 * 100%) 1fr;
  align-items: center;
  gap: 13px;
}

.discount__h2 span {
  font-size: 30px;
}

.discount__h2.--top {
  margin-top: -30px;
}

.discount__h2.--top span {
  color: #fff;
  background: #ff6248;
  border-radius: 10px;
}

.discount__h2::before,
.discount__h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #5e4d42;
}

.discount__h2.--top::before,
.discount__h2.--top::after {
  background: #ff6248;
}

.discount__txt {
  margin-top: 20px;
  text-align: center;
  /* font-size: 20px; */
  font-size: 28px;
  line-height: calc(30 / 20);
}

.discount__list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 8px;
}

.discount__item {
  position: relative;
  display: grid;
  grid-template: 1fr 1fr;
}

.discount__item > * {
  grid-area: 1/1/-1/-1;
}

.discount__item-img {
}

.discount__item-title {
  margin-top: auto;
  padding-block: 4px 6px;
  color: #fff;
  background: rgba(93, 77, 66, 0.45);
  font-size: 25px;
  line-height: calc(38 / 25);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .discount {
    margin-top: 64px;
    border-radius: 15px;
  }

  .discount.--top {
    margin-top: 0;
    margin-right: 0;
    border-right: none;
    border-bottom: none;
    box-shadow: none;
  }

  .discount__main {
    padding-inline: 18px;
    padding-bottom: 32px;
  }

  .discount__main:has(.discount__txt:last-child) {
    padding-bottom: 15px;
  }

  .discount__top img:first-of-type {
    top: 18px;
  }

  .discount__h2 {
    margin-top: 30px;
    gap: 8px;
    grid-template-columns: 1fr calc(850 / 1000 * 100%) 1fr;
  }

  .discount__h2 span {
    font-size: 16px;
  }

  .discount__h2.--top {
    margin-top: 0;
  }

  .discount__h2.--top span {
    border-radius: 5px;
  }

  .discount__h2::before,
  .discount__h2::after {
    height: 2px;
  }

  .discount__txt {
    margin-top: 16px;
    /* font-size: 14px; */
    font-size: 18px;
  }

  .discount__list {
    margin-top: 30px;
    grid-template-columns: repeat(2, 1fr);
  }

  .discount__item-title {
    padding-block: 4px 6px;
    font-size: 18px;
  }
}

.pay {
  margin-top: 109px;
  background: #d9f1f6;
  position: relative;
  z-index: 0;
  font-family: "Noto Sans JP", sans-serif;
}

/* .pay.--top {
  margin-top: 90px;
} */

h2.pay__title {
  /* width: calc(290 / 487 * 100%); */
  width: calc(470 / 36 * 1em);
  position: absolute;
  /* top: -50px; */
  top: -39px;
  left: 0;
  font-size: 36px;
}

/* .pay.--top .pay__title {
  margin-left: -21px;
  width: 276px;
  position: static;
  transform: rotate(-0.5deg);
} */

.pay__title img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pay__row {
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: end;
  justify-content: center;
  padding-block: 70px 50px;
  padding-inline: 50px;
}

/* .pay.--top .pay__row {
  padding: 19px 21px;
  gap: 10px;
} */

.pay__main {
  /* padding-bottom: 30px; */
}

.pay__para {
  /* font-size: 32px; */
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
}

/* .pay.--top .pay__para {
  margin-top: 24px;
  font-size: 16px;
} */

.pay__card {
  margin-top: 20px;
}

.pay__card img {
  width: 420px;
}

.pay__img {
  /* max-width: 100%; */
  position: relative;
  box-shadow: 20px 20px 0 #b9bfa0;
}

/* .pay.--top .pay__img {
  width: 197px;
  } */

/* .pay__img::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: #b9bfa0;
    transform: translate(20px, 20px);
    z-index: -1;
    } */

/* .pay.--top .pay__img::before {
      transform: translate(5px, 5px);
      } */

.pay__img img {
  width: 388px;
  aspect-ratio: 388 / 260;
  /* width: 100%; */
  /* height: 100%; */
  object-fit: cover;
  object-position: center 20%;
}

.pay__heading {
  margin-top: 58px;
  text-align: center;
  font-size: 27px;
  font-weight: bold;
  color: #014375;
}

.pay__list {
  margin-top: 30px;
  margin-inline: auto;
  max-width: 815px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 33px 41px;
}

.pay__item {
  min-height: 58px;
  display: grid;
  place-items: center;
  background: #fff;
  text-align: center;
  color: #014375;
  font-weight: bold;
  font-size: 18px;
  border-radius: 14px;
}

.pay__catch {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  max-width: 540px;
  line-height: 1.2;
  font-size: 28px;
  min-height: 37px;
  font-weight: 400;
  color: #fff;
  background: #014375;
  border-radius: 99em;
  text-align: center;
  font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {
  .pay {
    margin-top: 60px;
  }

  /* .pay.--top {
    margin-top: 0;
  } */

  /* .pay.--top .pay__row {
    padding: 20px 20px 40px;
  } */

  h2.pay__title {
    /* width: 90%; */
    font-size: 24px;
    top: -25px;
  }

  .pay__row {
    grid-template-columns: auto;
    row-gap: 30px;
    padding-block: 55px 30px;
    padding-inline: 25px;
  }

  .pay__main {
    /* padding-bottom: 30px; */
  }

  .pay__para {
    /* font-size: 24px; */
    font-size: 18px;
  }

  .pay__card {
    margin-top: 20px;
  }

  .pay__img {
    width: 0;
    min-width: 100%;
    box-shadow: 10px 10px 0 #b9bfa0;
  }

  .pay__img img {
    width: auto;
  }

  .pay__heading {
    margin-top: 20px;
    font-size: 20px;
  }

  .pay__list {
    margin-top: 24px;
    width: 90%;
    gap: 16px;
  }

  .pay__item {
    min-height: 50px;
    font-size: 15px;
    border-radius: 7px;
    line-height: 1.25;
  }

  .pay__catch {
    margin-inline: auto;
    font-size: 20px;
    min-height: 37px;
    width: 90%;
  }
}

.line {
  padding-top: 32px;
  padding-bottom: 8px;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .line {
    padding-top: 16px;
    padding-bottom: 0;
  }
}

.contact {
  margin-top: 0;
  font-family: "Noto Sans JP", sans-serif;
  background: #d9f1f6;
}

.contact.--top {
  padding-bottom: 36px;
}

.contact__inner {
  padding-block: 55px 70px;
  margin-inline: auto;
  max-width: 880px;
  width: 90%;
  position: relative;
}

.contact__ttl {
  font-size: 34px;
  margin-top: 40px;
  text-align: center;
  font-weight: bold;
  color: #014375;
}

.contact__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-image: linear-gradient(135deg, #b4e3ee, #00aadb);
  position: absolute;
  top: 105px;
  right: -23px;
  color: #fff;
  line-height: calc(45.6 / 31.15);
  font-size: 24px;
  text-align: center;
  transform: translateY(-46%);
  z-index: 9;
  font-weight: bold;
}

.contact__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 34px;
  margin-top: 29px;
  line-height: 1.6;
  text-align: center;
}

.contact__list_item {
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 170px;
  border-radius: 20px;
  background-color: #fff;
  position: relative;
}

.contact__list_item.--tel {
  grid-column: span 2;
  flex-direction: row;
  /* padding-bottom: 0.15em; */
  padding-bottom: 0.5em;
  font-size: 64px;
  font-weight: bold;
}

.contact__list_item::before {
  content: "";
  display: block;
  width: 55px;
  height: 55px;
  background: no-repeat center center / contain;
  position: absolute;
  top: 22px;
  left: 22px;
}

.contact__list_item.--tel::before {
  background-image: url(../img/corporate/contact-tel.svg);
}

.contact__list_item.--mail::before {
  background-image: url(../img/corporate/contact-mail.svg);
}

.contact__list_item.--line::before {
  background-image: url(../img/corporate/contact-line.svg);
}

.contact__list_head {
  font-size: 30px;
  font-weight: bold;
}

.contact__list_item.--tel .contact__list_head {
  font-size: 52px;
}

.contact__list_item.--tel .contact__list_head::after {
  content: ":";
  margin-inline: 0.1em;
}

.contact__list_body {
  font-size: 30px;
  font-weight: bold;
}

.contact__list_item:first-child .contact__list_body {
  font-size: 52px;
}

@media screen and (max-width: 1024px) {
  .contact__list_item.--tel .contact__list_head {
    font-size: 20px;
  }

  .contact__list_item:first-child .contact__list_body {
    font-size: 20px;
  }
}

.contact__list_tel-number {
}

.contact__list_tel-time {
  position: absolute;
  right: 1em;
  left: 1em;
  /* bottom: 0.35em; */
  bottom: 1em;
  font-size: 20px;
  font-weight: bold;
}

.contact__heading {
  margin-top: 58px;
  text-align: center;
  font-size: 27px;
  font-weight: bold;
  color: #014375;
}

.contact__order-list {
  margin-top: 25px;
  padding: 77px 52px;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 42px;
  border-radius: 23px;
}

.contact__order-item {
  font-size: 29px;
  font-feature-settings: "palt";
  font-weight: 500;
}

.contact__order-item:nth-of-type(even) {
  padding-left: 42px;
  border-left: 1px solid #97c6cf;
}

@media screen and (max-width: 1024px) {
  .contact {
  }

  .contact__inner {
    padding-block: 70px 50px;
    padding-inline: 20px;
    width: 100%;
  }

  .contact__ttl {
    font-size: 20px;
  }

  .contact__circle {
    width: 90px;
    height: 90px;
    right: 8px;
    top: 16px;
    font-size: 15px;
  }

  .contact__list {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
    line-height: 1.3;
  }

  .contact__list_item {
    height: 75px;
    border-radius: 10px;
  }

  .contact__list_item.--tel {
    grid-column: auto;
    padding-bottom: 0.9em;
    font-size: 24px;
  }

  .contact__list_item::before {
    width: 30px;
    height: 30px;
    top: 10px;
    left: 15px;
  }

  .contact__list_head {
    font-size: 20px;
  }

  .contact__list_body {
    font-size: 20px;
  }

  .contact__list_tel-time {
    right: 0.5em;
    /* bottom: 0.3em; */
    bottom: 0.6em;
    font-size: 13px;
  }

  .contact__heading {
    margin-top: 20px;
    font-size: 20px;
  }

  .contact__order-list {
    padding: 32px 20px;
    grid-template-columns: 100%;
    row-gap: 24px;
    border-radius: 16px;
  }

  .contact__order-item {
    font-size: 20px;
  }

  .contact__order-item:nth-of-type(even) {
    padding-left: 0;
    border: none;
  }
}

.topfooter {
  margin-top: -36px;
  mix-blend-mode: multiply;
}

.footer-main {
  padding-block: 84px 0;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .footer-main {
    padding-block: 60px 0;
  }
}

.home .footer-main {
  margin-top: -88px;
}

.footer-main {
  background-image: url("../img2/common/footer_pc.png");
  background-position: center 50px;
  background-repeat: no-repeat;
  text-align: left;
  position: relative;
  z-index: 1000;
}

@media screen and (max-width: 1024px) {
  .footer-main {
    background-position: center 40px;
  }
}

.footer-main.--top {
  position: relative;
  z-index: 1000;
}

.footer-main__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* gap: 64px; */
  gap: 50px;
  width: 100% !important;
  background: #fff7af;
  padding: 80px 40px 20px;
}

@media screen and (max-width: 1024px) {
  .footer-main__inner {
    padding: 40px 20px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
}

.footer-main__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1280px) {
  .footer-main__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
}

.footer-main__info {
  padding-right: 35px;
  border-right: 3px solid #000000;
}

@media screen and (max-width: 1280px) {
  .footer-main__info {
    padding-right: 0;
    border-right: none;
  }
}

.footer-main__company {
  font-size: 1.8rem;
  line-height: 1.1578947368;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

@media screen and (max-width: 1024px) {
  .footer-main__company {
    font-size: 1.25rem;
  }
}

.footer-main__address {
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

@media screen and (max-width: 1024px) {
  .footer-main__address {
    font-size: 1rem;
  }
}

.footer-main__contact {
  padding-left: 40px;
}

@media screen and (max-width: 1280px) {
  .footer-main__contact {
    padding-left: 0;
  }
}

.footer-main__tel-link {
  font-size: 2rem;
  line-height: 1.1578947368;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.footer-main__tel-link:where(:-moz-any-link, :enabled, summary):hover {
  opacity: 0.6;
}

.footer-main__tel-link:where(:any-link, :enabled, summary):hover {
  opacity: 0.6;
}

@media screen and (max-width: 1024px) {
  .footer-main__tel-link {
    font-size: 1.25rem;
  }
}

.footer-main__time {
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

@media screen and (max-width: 1024px) {
  .footer-main__time {
    font-size: 1rem;
  }
}

.footer-main__pagetop {
  width: 160px;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  color: #fff;
  background: #57493e;
}

@media screen and (max-width: 1024px) {
  .footer-main__pagetop {
    width: 85px;
    font-size: 1rem;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
}

/* 2025.01.18 */
.price__content td {
  padding: 0.5rem;
}
