@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}

:root {
  --pink: #ff6e94;
  --gold: #ab903c;
  --bg_gray: #eff4f7
}

body {
  color: #333333;
  /* RGB */
  background-color: #ffffff;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: min(4.1vw, 20px);
  letter-spacing: 0.1rem;
  line-height: 1.8;
  text-align: center;
}

h2,
h3,
h4 {
  font-weight: 700;
}

a {
  color: #333333;
}

a:hover {
  opacity: 0.7;
}

.clarity a:hover {
  opacity: 1;
}

.vertical {
  position: static;
  display: inline-block;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.01rem;
  line-height: 1.5;
  text-align: left;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

img {
  width: 100%;
  display: block;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.is-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pink {
  color: var(--pink);
}

.gold {
  color: var(--gold);
}

.white {
  color: #ffffff;
}

.black {
  color: #333333;
}

.left {
  text-align: justify;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.ft_126 {
  font-size: min(11vw, 12.6rem);
}

.ft_80 {
  font-size: min(16.6vw, 8.0rem);
}

.ft_70 {
  font-size: min(12vw, 7.0rem);
}

.ft_60 {
  font-size: min(10.4vw, 6.0rem);
}

.ft_55 {
  font-size: min(5.4vw, 5.5rem);
}

.ft_50 {
  font-size: min(4.1vw, 5.0rem);
}

.ft_45 {
  font-size: min(4.1vw, 4.5rem);
}

.ft_35 {
  font-size: min(3.3vw, 3.5rem);
}

.ft_30 {
  font-size: min(6.25vw, 3.0rem);
}

.ft_27 {
  font-size: min(3.75vw, 2.7rem);
}

.ft_26 {
  font-size: min(5.4vw, 2.6rem);
}

.ft_24 {
  font-size: min(4.1vw, 2.4rem);
}

.ft_22 {
  font-size: min(3.4vw, 22px);
}

.ft_20 {
  font-size: min(4.1vw, 20px);
}

.ft_18 {
  font-size: min(3.5vw, 1.8rem);
}

.bold {
  font-weight: 700;
}

.flex {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.flex.row {
  flex-direction: row;
  align-items: center;
}

.fadeInUpTrigger,
.fadeInRightTrigger {
  opacity: 0;
}

/* header */
header {
  position: absolute;
  top: 2vw;
  left: 5vw;
  z-index: 10;
}

.logo_wrap {
  width: 45%;
  max-width: 427px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sub_logo {
  background-color: var(--pink);
  padding: 2% 5%;
  color: #ffffff;
  font-weight: 500;
  font-size: min(3vw, 1.4rem);
}

/* bottom_nav */
#bottom_sticky {
  position: fixed;
  bottom: -200%;
  left: 0;
  display: flex;
  z-index: 99;
  width: 100%;
  flex-wrap: nowrap;
  background-color: var(--pink);
  transition: bottom 0.5s;
  box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.15);
}

#bottom_sticky.active {
  bottom: 0%;
}

#bottom_sticky>div {
  width: 50%;
}

#bottom_sticky>div:first-child {
  position: relative;
  padding: 2% 0;
}

#bottom_sticky>div:first-child::after {
  content: "";
  width: 1px;
  height: 80%;
  background-color: #333333;
  position: absolute;
  top: 10%;
  left: 100%;
  z-index: 1;
}

#bottom_sticky a {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0 2px;
}

.tel a p span {
  font-size: min(4.7vw, 5.0rem);
  color: #ffffff;
  padding-left: min(5vw, 3.5rem);
  position: relative;
}

.tel a p span::before {
  content: "";
  width: min(4.7vw, 3.1rem);
  aspect-ratio: 1 / 1;
  background-image: url(../img/tel.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}

/* MV */
.MV {
  position: relative;
  max-height: 100vh;
  padding-bottom: 30vw;
}

.MV h2 {
  position: absolute;
  top: 5%;
  right: 5%;
  font-size: min(8.3vw, 6.0rem);
  color: var(--gold);
  line-height: 1.2;
}

.MV_text {
  position: absolute;
  width: 90%;
  max-width: 650px;
  left: 5%;
  bottom: 0;
}

.MV_icon {
  position: absolute;
  width: 37%;
  max-width: 260px;
  left: 5%;
  bottom: min(10%, 200px);
}

/* 共通 */
section {
  position: relative;
}

.section_inner {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  padding: 5vw 0 8vw;
}

#price {
  background-color: var(--bg_gray);
}

#price .content_itemWrap {
  gap: 2%;
  margin-bottom: 20px;
}

#price .content_item {
  width: 30%;
  line-height: 1.5;
  background-color: #ffffff;
  padding: 2% 0;
  position: relative;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

#price .content_item:nth-child(2) {
  width: 50%;
}

#price .content_item::after {
  content: "";
  width: calc(100% - 2vw);
  height: calc(100% - 2vw);
  border: 1px solid var(--gold);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

#price .section_inner>p {
  padding: 10px 0;
}

.CTA_area {
  background-color: var(--pink);
  color: #ffffff;
}

.CTA_area h2 {
  font-size: min(9.5vw, 6.0rem);
  word-break: keep-all;
  position: relative;
  display: inline-block;
  margin: 40px 0;
}

.CTA_area h2::before,
.CTA_area h2::after {
  content: "";
  height: 50%;
  aspect-ratio: 5 / 7;
  background-image: url(../img/banzai.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  bottom: 0;
  right: 90%;
  z-index: 1;
}

.CTA_area h2::after {
  right: auto;
  left: 90%;
  transform: scaleX(-1);
}

.CTA_area .content {
  margin: 40px 0;
}

.CTA_area .btn a {
  color: #ffffff;
  font-size: min(6.25vw, 3.0rem);
}

.CTA_area .btn .flex {
  gap: 0;
  line-height: 1.5;
}

.CTA_area .btn.tel span {
  font-size: min(10.4vw, 5.0rem);
  display: inline-block;
  margin: 0 auto;
  padding-left: min(7.4vw, 4.6rem);
}

.CTA_area .btn.tel span::before {
  width: min(6.4vw, 3.1rem);
}

.CTA_area .btn.line a {
  width: 100%;
  justify-content: center;
}

.CTA_area .btn.line a p {
  position: relative;
  font-size: min(7.2vw, 3.5rem);
  padding-left: min(12vw, 6.4rem);
  line-height: 2.4;
}

.CTA_area .btn.line a p::before {
  content: "";
  width: min(10.6vw, 5.1rem);
  aspect-ratio: 56 / 53;
  background-image: url(../img/line.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.ceramic_lead {
  background-color: var(--gold);
  padding: 10px 0;
  position: relative;
}

.ceramic_lead::after {
  content: "";
  width: 60%;
  aspect-ratio: 451 / 58;
  background-image: url(../img/ceramic_deco.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 100%;
  right: 5%;
  z-index: 1;
}

#ceramic .section_header {
  position: relative;
  aspect-ratio: 480/ 380;
  background-image: url(../img/bg_01.png);
  background-size: cover;
  background-position: 80% bottom;
}

#ceramic .section_header h3 {
  font-size: min(7.5vw, 5.5rem);
  position: absolute;
  margin: 0 0 0 auto;
  top: 12vw;
  right: 5%;
}

#ceramic .content {
  font-size: min(5.8vw, 4.4rem);
  gap: 0;
  margin-bottom: 20px;
}

#ceramic .content p {
  font-size: min(5.8vw, 4.4rem);
  word-break: keep-all;
  text-align: left;
  width: 80%;
}

#ceramic .content_img {
  width: 60%;
  margin: -20% 0 0 auto;
}

#ceramic p.ft_20 {
  font-size: min(4.1vw, 2.0rem);
  margin-bottom: 40px;
}

#ceramic .content02 {
  background-color: #ffeff3;
  padding: 40px 5% 60px;
  position: relative;
}

#ceramic .content02::before {
  content: "";
  width: 92%;
  height: calc(100% - 60px);
  border: 1px solid #ffffff;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

#ceramic .content02 h3 {
  margin: 20px 0 40px;
  letter-spacing: 0rem;
}

#ceramic .content02 .ft_60 {
  font-size: min(5.8vw, 6.0rem);
}

#ceramic .content_itemWrap {
  gap: 2vw;
}

#ceramic_02 {
  background-image: url(../img/sp_bg_02.png);
  background-size: cover;
  background-position: center bottom;
  color: #ffffff;
  position: relative;
  padding: 20vw 0 30vw;
  position: relative;
  z-index: 2;
}

#ceramic_02 .section_inner {
  position: relative;
  z-index: 2;
}

#ceramic_02 .section_inner h3 {
  margin: 80px auto 20vw;
  max-width: 750px;
}

#ceramic_02 .section_inner li {
  padding: 10px 0 10px min(6vw, 76px);
  text-align: left;
  border-bottom: 2px dotted #ffffff;
  position: relative;
}

#ceramic_02 .section_inner li::before {
  content: "";
  width: min(5.4vw, 64px);
  aspect-ratio: 26 /27;
  background-image: url(../img/check.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: min(3vw, 20px);
  left: 0;
  z-index: 1;
}

#ceramic_03 {
  margin-top: -15vw;
  padding-top: 15vw;
  background-image: url(../img/bg_03.png);
  background-size: cover;
}

#ceramic_03 .section_lead {
  display: flex;
  flex-direction: column;
  gap: 12px;
  line-height: 1.2;
  margin-bottom: 40px;
}

#ceramic_03 .content {
  width: 100%;
  margin: 3% 0;
  justify-content: flex-end;
  position: relative;
}

#ceramic_03 .content::before {
  content: "";
  width: 55%;
  aspect-ratio: 269/392;
  background-image: url(../img/f_img01.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top;
  position: absolute;
  bottom: 0;
  left: -5vw;
}

#ceramic_03 .content_textWrap {
  width: 65%;
  margin: 12% 0 3%;
  z-index: 2;
}

#ceramic_03 .content_textWrap h4 {
  width: 50%;
  margin: 0 auto 8%;
}

#ceramic_03 .content_itemWrap {
  gap: 10px;
}

.feature_content {
  background-image: url(../img/f_bg01.png);
  background-size: 200% auto;
  background-repeat: no-repeat;
  background-position: 60% 0%;
}

.feature_content .content_inner {
  width: 90%;
  margin: 0 auto;
}

.feature_content .content_item {
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  font-size: min(8.3vw, 7.0rem);
}

.feature_content .content_item h4 {
  width: min(46%, 244px);
}

.feature_content .content_item p {
  line-height: 1.5;
  text-align: left;
}

.feature_content .content_inner>p {
  padding-bottom: 40px;
}

.feature_content.content_02 {
  background-image: url(../img/f_bg02.png);
  background-size: 170% auto;
  background-repeat: no-repeat;
  background-position: 65% 0%;
}

.feature_content:nth-of-type(odd) .content_item h4 {
  margin: 0 0 0 auto;
}

.feature_content.content_02 .body {
  width: 96%;
  margin: 0px auto 40px;
  background-color: #ffeff3;
  padding: 20px 3%;
  display: flex;
  flex-direction: column;
  gap: 6vw;
}

.feature_content.content_02 .body h4 {
  font-size: min(5.8vw, 6.0rem);
  line-height: 1.5;
}

.feature_content.content_02 .body .ft_70 {
  font-size: min(6.4vw, 7.0rem);
}

.feature_content.content_03 {
  background-image: url(../img/f_bg03.png);
  background-size: 170% auto;
  background-repeat: no-repeat;
  background-position: 55% 0%;
}

.feature_content.content_03 .content_item p {
  line-height: 1.2;
}

.feature_content.content_04 {
  background-image: url(../img/f_bg04.png);
  background-size: 180% auto;
  background-repeat: no-repeat;
  background-position: 40% 0%;
}

.feature_content.content_04 .content_item p {
  word-break: keep-all;
  text-align: right;
}

.feature_content.content_04 .body {
  width: 90%;
  margin: 0 auto 40px;
}

.feature_content.content_05 {
  background-image: url(../img/f_bg05.png);
  background-size: 200% auto;
  background-repeat: no-repeat;
  background-position: 10% 0%;
}

.feature_content.content_05 .body_itemWrap {
  width: 90%;
  margin: 0 auto 60px;
  gap: 0;
}

.feature_content.content_05 .body_itemWrap .item {
  gap: 0;
}

.feature_content.content_05 .text_wrap {
  background-color: var(--pink);
  color: #ffffff;
  font-size: min(4vw, 2.6rem);
  position: relative;
  height: 8vw;
  display: flex;
  align-items: center;
  line-height: 1;
}

.feature_content.content_05 .text_wrap .no {
  position: absolute;
  font-size: min(18.7vw, 9.0rem);
  bottom: 0;
  left: 0;
  line-height: 1;
  font-style: italic;
  color: #ffe7e7;
}

.feature_content.content_05 .text_wrap p {
  padding-left: min(21vw, 110px);
  text-align: left;
  word-break: keep-all;
  text-align: center;
  margin: 0 auto 0 0;
  z-index: 2;
}

.feature_content.content_05 .text_wrap p span {
  font-size: min(2.8vw, 1.7rem);
}

.feature_content.content_05 .item:nth-of-type(even) .text_wrap .no {
  left: auto;
  right: 0;
}

.feature_content.content_05 .item:nth-of-type(even) .text_wrap p {
  padding-right: min(20vw, 100px);
  padding-left: 5%;
}

#cerec_01 {
  padding: 40px 0 80px;
  overflow: hidden;
}

#cerec_01 h2 {
  padding: 40px 0;
}

#cerec_01 .cerec_head {
  width: 90%;
  margin: 0 auto;
}

#cerec_01 .cerec_head p {
  padding: 40px 0;
  border-top: 1px solid var(--pink);
  border-bottom: 1px solid var(--pink);
  margin-bottom: 10px;
}

#cerec_01 .content_img {
  width: 140%;
  margin-left: -20%;
}

#cerec_01 .content_itemWrap {
  flex-wrap: wrap;
  gap: 40px 5vw;
  width: 90%;
  margin: 40px auto;
  justify-content: center;
}

#cerec_01 .content_item {
  width: 40%;
}

#cerec_01 .content_02 {
  width: 90%;
  margin: 0 auto 40px;
}

#cerec_01 .content_02 .content_img {
  width: 100%;
  margin-left: 0;
}

#cerec_01 .content_02 li {
  padding: 10px 0 10px min(4.2vw, 22px);
  text-align: left;
  border-bottom: 1px solid var(--pink);
  position: relative;
}

#cerec_01 .content_02 li::before {
  content: "";
  width: min(3.75vw, 18px);
  aspect-ratio: 18 /16;
  background-image: url(../img/check_p.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
}

#cerec_01 .section_inner p {
  text-align: left;
  padding-bottom: 40px;
}

#cerec_01 .section_inner h3 {
  padding: 40px 0;
}

#cerec_01 .section_inner ol {
  list-style: none;
}

#cerec_01 .section_inner ol h4 {
  font-size: min(6.25vw, 5.0rem);
  text-align: left;
  position: relative;
  padding-left: min(9.25vw, 9.0rem);
  line-height: 1.5;
  margin-bottom: 20px;
}

#cerec_01 .section_inner ol h4::before {
  content: counter(list-item) ". ";
  position: absolute;
  left: min(4vw, 20px);
  font-size: min(6.25vw, 5.0rem);
  color: var(--pink);
  font-family: "Shippori Mincho", serif;
}

#cerec_01 .section_inner ol h4::after {
  content: "";
  width: 10px;
  height: min(15.6vw, 75px);
  background-color: var(--pink);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}

#cerec_01 .body {
  margin: 40px auto;
  background-color: #ffe7e7;
  text-align: left;
  padding: 5%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#cerec_01 .body h4 {
  font-size: min(7.5vw, 5.0rem);
  word-break: keep-all;
  line-height: 1.5;
}

#cerec_01 .body>p {
  padding: 0;
}

#cerec_02 {
  background-image: radial-gradient(var(--pink) 1px, transparent 1px);
  background-size: 30px 30px;
  padding: 60px 0;
}

#cerec_02 h2 {
  margin-bottom: 3%;
}

#cerec_02 .content {
  background-color: #ffffff;
  border: 1px solid #333333;
}

#cerec_02 .content ol {
  list-style: none;
}

#cerec_02 .content ol li {
  width: 94%;
  margin: 0 auto;
  padding: 14% 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  position: relative;
}

#cerec_02 .content ol li:not(:last-child)::before,
#cerec_02 .content ol li:not(:last-child)::after {
  content: "";
  width: calc((100% - 20vw) / 2);
  height: 1px;
  background-color: #9b9b9b;
  position: absolute;
  top: 100%;
  left: 0;
}

#cerec_02 .content ol li:not(:last-child)::after {
  left: auto;
  right: 0;
}

#cerec_02 .content ol li h3 {
  font-size: min(5vw, 3.0rem);
  text-align: left;
  word-break: keep-all;
  line-height: 1.2;
  padding-bottom: 20px;
  gap: 10px;

}

#cerec_02 .content ol li h3 span {
  background-color: var(--pink);
  color: #ffffff;
  line-height: 1;
  padding: 1% 3% 2%;
}

#cerec_02 .content ol li p {
  position: relative;
}

#cerec_02 .content ol li:not(:last-child) p::after {
  content: "";
  width: min(7.5vw, 36px);
  aspect-ratio: 36 / 19;
  background-image: url(../img/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: calc(100% + 12vw);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

#cerec_02 .content ol li:first-child {
  padding-top: 8%;
}

#cerec_02 .content ol li:last-child {
  padding-bottom: 8%;
}

#cerec_02 .content ol li:last-child p::after {
  display: none;
}

#cerec_03 {
  padding-top: 60px;
}

#cerec_03 h2 {
  font-size: min(6.4vw, 6.0rem);
}

#cerec_03 .content {
  margin: 40px auto 80px;
  max-width: 600px;
}

#cerec_03 .content h3 {
  font-size: min(5.4vw, 3.0rem);
  text-align: left;
  padding-left: min(10%, 52px);
  position: relative;
}

#cerec_03 .content h3::before {
  content: "";
  width: min(8%, 42px);
  height: 3px;
  background-color: var(--pink);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}

#cerec_03 table {
  text-align: left;
  border: 1px solid #333333;
  border-bottom: none;
  width: 100%;
  max-width: 950px;
  margin: 20px auto;
}

#cerec_03 table tr {
  display: flex;
  flex-direction: column;
  gap: 0;
}

#cerec_03 table td {
  border-bottom: 1px solid #333333;
  padding: 20px;
}

#cerec_03 table td:first-child {
  background-color: #ffe7e7;
}

#access .content {
  width: 90%;
  margin: 40px auto;
}

#access .content_left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#access .logo_wrap {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  gap: 14px;
}

#access .sub_logo {
  padding: 0 5%;
  font-size: min(6vw, 3.0rem);
}

#access .tel a p span {
  font-size: min(11vw, 5.4rem);
  color: #333333;
  padding-left: min(8vw, 40px);
  position: relative;
}

#access .tel a p span::before {
  background-image: url(../img/tel_b.png);
  width: min(7vw, 34px);
}

#access .web {
  max-width: 440px;
  margin: 0 auto;
}

#access dl {
  gap: 10px;
  width: 100%;
  margin: 20px auto;
  font-size: min(4.5vw, 2.2rem);
}

.table_wrap table {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 20px;
}

.table_wrap table thead {
  background-color: var(--pink);
  color: #ffffff;
}

.table_wrap table thead th:first-of-type {
  text-align: left;
  padding-left: 2%;
}

.biz-hour .U_bar {
  border-bottom: 1px solid #9b9b9b;
}

.biz-hour td,
.biz-hour th {
  text-align: center;
  line-height: 2.4;
}

.biz-hour th:first-of-type {
  width: min(30vw, 186px);
  font-size: min(3.2vw, 2.0rem);
}

.biz-txt {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 20px;
}

#access iframe {
  display: block;
  height: 80vw;
  max-height: 450px;
}

.cr {
  padding: 16px 0;
  background-color: var(--pink);
  color: #ffffff;
  font-size: 1.6rem;
  text-align: center;
}

#go_top {
  width: 50px;
  position: fixed;
  bottom: 10px;
  right: 5px;
  z-index: 900;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  .sp_none {
    display: block;
  }

  .pc_none {
    display: none;
  }

  .flex {
    display: flex;
    flex-direction: row;
    gap: 5%;
  }

  header {
    width: 30%;
    max-width: 427px;
    top: 20px;
    left: 20px;
  }

  .logo_wrap {
    width: 100%;
  }

  .MV {
    padding: 0;
  }

  .MV_text-wrap {
    width: 80%;
    max-width: 1000px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 3%;
    position: absolute;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: space-between;
  }

  .MV_text {
    position: static;
    width: 55%;
    right: 0;
  }

  .MV_icon {
    position: static;
    width: 25%;
  }

  .MV h2 {
    position: absolute;
    top: 12%;
    right: 60%;
    font-size: min(3.2vw, 6.0rem);
    color: var(--gold);
    line-height: 1.2;
  }

  .section_inner {
    width: 90%;
    max-width: 1280px;
  }

  #price .section_inner {
    padding-top: 0;
    max-width: 1000px;
  }

  #price .content_item::after {
    width: calc(100% - 12px);
    height: calc(100% - 12px);
  }

  .CTA_area .section_inner {
    padding-top: 0;
    padding-bottom: 40px;
  }

  .CTA_area h2 {
    letter-spacing: 0.4rem;
    margin-bottom: 0;
    width: 80%;
  }

  .CTA_area h2::before,
  .CTA_area h2::after {
    height: 80%;
    right: 100%;
  }

  .CTA_area h2::after {
    left: 100%;
  }

  .CTA_area .content {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    max-width: 1100px;
    margin: 40px auto;
  }

  .CTA_area .content .btn:first-child {
    width: 100%;
  }

  .CTA_area .content .btn:first-child a {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
  }

  .CTA_area .content .btn.tel .flex {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
  }

  .CTA_area .content .btn.line .flex {
    display: flex;
    flex-direction: row;
    max-width: 500px;
    margin: 0 auto;
    text-wrap: nowrap;
    gap: 20px;
  }

  #ceramic .section_header {
    aspect-ratio: 1920 / 734;
    background-size: 90% auto;
    background-repeat: no-repeat;
    background-position: left top;
  }

  .ceramic_lead::after {
    width: min(40%, 450px);
    right: 10%;
    z-index: 1;
  }

  #ceramic .section_header h3 {
    top: 5vw;
    right: 12%;
  }

  #ceramic .section_inner {
    padding: 0 0 40px;
  }

  #ceramic .content {
    justify-content: space-between;
    margin-top: -10%;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
  }

  #ceramic .content p {
    width: 50%;
  }

  #ceramic .content_img {
    margin: 0;
    width: 45%;
  }

  #ceramic .content02 {
    max-width: 1280px;
    margin: 0 auto 40px;
  }

  #ceramic .content02::before {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }

  #ceramic .content02 .content_itemWrap {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 30px;
  }

  #ceramic .content02 .content_itemWrap {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  #ceramic_02 {
    background-image: url(../img/bg_02.png);
    background-size: cover;
    background-position: center bottom;
    padding: 0 0;
    z-index: 2;
  }

  #ceramic_02 .section_inner {
    max-width: 1100px;
    padding-bottom: 12vw;
  }

  #ceramic_02 .section_inner h3 {
    margin: 10vw auto 3vw;
  }

  #ceramic_03 .section_inner {
    padding-bottom: 0;
  }

  #ceramic_03 .section_lead {
    max-width: 1060px;
    gap: 2vw;
    line-height: 1.2;
    margin: 0 auto 40px;
  }

  #ceramic_03 .content {
    margin-bottom: 0;
  }

  #ceramic_03 .content_textWrap {
    margin-top: 5%;
  }

  #ceramic_03 .content_itemWrap {
    flex-direction: column;
  }

  #ceramic_03 .content::before {
    content: "";
    width: 55%;
    aspect-ratio: 846 / 954;
    background-image: url(../img/f_img01.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right top;
    position: absolute;
    bottom: 0;
    left: -10vw;
  }

  #ceramic_03 .feature_content {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
  }

  .feature_content .content_inner {
    max-width: 1280px;
    font-weight: 700;
  }

  .feature_content .content_item {
    aspect-ratio: auto;
    height: min(41vw, 800px);
  }

  .feature_content .content_item p {
    padding-bottom: 20%;
  }

  #ceramic_04 .feature_content {
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
  }

  #ceramic_04 .feature_content:nth-child(odd) .flex {
    justify-content: flex-end;
  }

  .feature_content.content_02 .content_item {
    height: min(64vw, 890px);
  }

  .feature_content.content_02 .content_item p {
    padding: 30% 0 0;
  }

  .feature_content.content_02 .body {
    max-width: 1094px;
    padding: 40px 3%;
    gap: 60px;
    margin-bottom: 80px;
  }

  .feature_content.content_03 .content_item,
  .feature_content.content_04 .content_item,
  .feature_content.content_05 .content_item {
    height: min(38vw, 740px);
  }

  .feature_content.content_03 .content_item p,
  .feature_content.content_04 .content_item p,
  .feature_content.content_05 .content_item p {
    padding: 0;
  }

  .feature_content .content_inner>p {
    padding-bottom: 80px;
  }

  .feature_content.content_04 .body {
    max-width: 1000px;
    margin: 0 auto 120px;
  }

  .feature_content.content_04 .body h4 {
    font-size: 5.0rem;
  }

  .feature_content.content_05 .body_itemWrap {
    max-width: 900px;
    flex-direction: column;
  }

  .feature_content.content_05 .body_itemWrap .item>* {
    width: 50%;
    display: block;
  }

  .feature_content.content_05 .body_itemWrap .item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .feature_content.content_05 .body_itemWrap .text_wrap {
    height: auto;
    display: flex;
    text-align: left;
  }

  #ceramic_04 .feature_content.content_05 .body_itemWrap .text_wrap p {
    padding: 4%;
    text-align: left;
  }

  #ceramic_04 .feature_content.content_05 .body_itemWrap .item:nth-child(even) .text_wrap p {
    text-align: right;
    margin: 0 0 0 auto;
  }

  .feature_content.content_05 .text_wrap .no {
    bottom: 50%;
    left: auto;
    right: 2%;
    transform: translateY(50%);
  }

  .feature_content.content_05 .item:nth-of-type(even) .text_wrap .no {
    left: 0;
    right: auto;
  }

  #cerec_01 {
    padding: 0;
  }

  #cerec_01 .content_wrap {
    display: flex;
    flex-direction: row-reverse;
  }

  #cerec_01 .content {
    width: 100%;
    z-index: 2;
  }

  #cerec_01 .content .content_itemWrap {
    flex-wrap: nowrap;
    gap: 2%;
  }

  #cerec_01 .content_02 {
    flex-direction: column;
    font-weight: 700;
  }

  #cerec_01 .content_02 ul {
    width: 90%;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2%;
  }

  #cerec_01 .content_02 ul li {
    letter-spacing: 0.02rem;
  }

  #cerec_01 .section_inner {
    padding-top: 40px;
  }

  #cerec_01 .body {
    align-items: center;
    gap: 30px;
  }

  #cerec_02 .content ol li {
    width: 94%;
    flex-direction: row;
    letter-spacing: 0.02rem;
    padding: 5% 0;
  }

  #cerec_02 .content ol li:not(:last-child)::before,
  #cerec_02 .content ol li:not(:last-child)::after {
    width: calc((100% - 5vw) / 2);
  }

  #cerec_02 .content ol li h3 {
    padding-bottom: 40px;
  }

  #cerec_02 .content ol li .text_wrap {
    width: 70%;
    position: relative;
  }

  #cerec_02 .content ol li:not(:last-child) .text_wrap::after {
    content: "";
    width: min(7.5vw, 36px);
    aspect-ratio: 36 / 19;
    background-image: url(../img/arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: absolute;
    top: calc(100% + 4vw);
    left: 73%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  #cerec_02 .content ol li:nth-child(2) .text_wrap {
    width: 100%;
  }

  #cerec_02 .content ol li:nth-child(2) .text_wrap::after {
    left: 50%;
  }

  #cerec_02 .content ol li .img {
    width: 30%;
  }

  #cerec_02 .content ol li p::after {
    display: none;
  }

  #cerec_03 .content {
    max-width: 940px;
    margin: 80px auto 40px;
  }

  #cerec_03 table tr {
    flex-direction: row;
    width: 100%;
  }

  #cerec_03 table tr td:first-child {
    width: 40%;
  }

  #cerec_03 table tr td:last-child {
    width: 60%;
    text-align: right;
  }

  #access .content {
    max-width: 1280px;
    gap: 8%;
    margin: 80px auto;
  }

  #access .content .content_left {
    width: 50%;
  }

  #access dl {
    flex-direction: column;
  }

  #access dl .description-item {
    display: flex;
  }

  #access dl .description-item dt {
    width: 130px;
  }

  #access dl .description-item dd {
    width: calc(100% - 130px);
  }

  .animate__delay-05s {
    animation-delay: calc(var(--animate-delay) * 0.5);
  }

  .animate__delay-10s {
    animation-delay: calc(var(--animate-delay) * 1.0);
  }

  #company dl .description-item {
    display: flex;
  }

  #company dl .description-item dt {
    width: 130px;
  }

  #company dl .description-item dd {
    width: calc(100% - 130px);
  }

  footer {
    background-color: #000000;
  }

  .footer_nav {
    border-top: none;
    padding: 80px 0 100px;
    max-width: 700px;
    margin: 0 auto;
  }

  .footer_nav ul {
    justify-content: center;
    justify-content: space-between;
  }

  .footer_nav ul li a {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    font-size: 2.0rem;
  }

  #go_top {
    width: 60px;
    bottom: 40px;
    right: 20px;
  }

  /* pcスタイル */
  @media screen and (max-width: 1279px) {
    #top_about .content.flex {
      flex-direction: column;
    }

    #top_about .content_textWrap {
      width: 100%;
      max-width: none;
    }

    #company .content.flex {
      flex-direction: column;
      gap: 40px;
    }

    #company .content dl {
      max-width: 600px;
      margin: 0 auto;
    }
  }
}