@charset "utf-8";
/* -------------------------------------
01: 変数
02: ベース
-------------------------------------*/
/** ================================================================================
01.変数
================================================================================ **/
:root {
  --base-width: 1100px;
  --base-bg: #fff;
  --color: #534741;

  --c-main: #c47281;
  --c-sub: #d8a2ac;
  --c-point: #a8be93;
  --gray: #505050;
  --bg-main: #f9f3f3;

  --font: "Zen Maru Gothic", sans-serif;
  --fw_n: 400;
  --fw_b: 700;
  --lh: 1.8;
  --lh_s: 1.3;
  --border: 1px solid var(--gray);
  --radius: 24px;
  --radius_s: 18px;
  --opacity: 0.8;
  --transition: 0.3s;
}

@media (max-width: 520px) {
  :root {
    --radius: 10px;
    --radius_s: 10px;
  }
}

/** ================================================================================
02.ベース
================================================================================ **/
body {
  min-width: var(--base-width);
  margin: 0 auto;
  font-family: var(--font);
  color: var(--color);
  font-size: 1.6rem;
  font-weight: var(--fw_n);
  line-height: var(--lh);
  font-feature-settings: "halt"; /*カーニング */
  word-break: break-all;
  background: var(--base-bg);
  position: relative;
}

@media (max-width: 520px) {
  body {
    min-width: 100%;
    font-size: 1.5rem;
  }
}

/* -------------------------------------
セクション
-------------------------------------*/
body > main {
  margin-top: 84px;
}
section,
aside {
  margin-inline: auto;
  padding: 70px 0;
  position: relative;
  z-index: 0;
}

@media (max-width: 520px) {
  body > main {
    margin-top: 70px;
  }
  section,
  aside {
    padding: 80px 0;
  }
}

/* -------------------------------------
フォント
-------------------------------------*/
body .fs32 {
  font-size: 3.2rem;
}

@media (max-width: 520px) {
  body .fs18 {
    font-size: 1.6rem;
  }
  body .fs20 {
    font-size: 1.6rem;
  }
  body .fs22 {
    font-size: 1.6rem;
  }
  body .fs24 {
    font-size: 1.8rem;
  }
  body .fs26 {
    font-size: min(5vw, 2.2rem);
  }
  body .fs28 {
    font-size: min(5vw, 2.4rem);
  }
  body .fs30 {
    font-size: min(5vw, 2.6rem);
  }
  body .fs32 {
    font-size: min(5.6vw, 2.8rem);
  }
  body .fs35 {
    font-size: min(5.6vw, 3rem);
  }
  body .fs40 {
    font-size: min(6.4vw, 3.6rem);
  }
  body .fs45 {
    font-size: min(6.4vw, 3.6rem);
  }
  body .fs50 {
    font-size: min(6.4vw, 4.2rem);
  }
}

/* -------------------------------------
margin
-------------------------------------*/
body .mb0 {
  margin-bottom: 0;
}
body .mb5 {
  margin-bottom: 5px;
}
body .mb10 {
  margin-bottom: 10px;
}
body .mb15 {
  margin-bottom: 15px;
}
body .mb20 {
  margin-bottom: 20px;
}
body .mb30 {
  margin-bottom: 30px;
}
body .mb40 {
  margin-bottom: 40px;
}
body .mb50 {
  margin-bottom: 50px;
}
body .mb70 {
  margin-bottom: 70px;
}
body .mb80 {
  margin-bottom: 80px;
}
body .mb100 {
  margin-bottom: 100px;
}
body .mb150 {
  margin-bottom: 150px;
}
body .mt0 {
  margin-top: 0px;
}
body .mt5 {
  margin-top: 5px;
}
body .mt10 {
  margin-top: 10px;
}
body .mt15 {
  margin-top: 15px;
}
body .mt20 {
  margin-top: 20px;
}
body .mt30 {
  margin-top: 30px;
}
body .mt40 {
  margin-top: 40px;
}
body .mt50 {
  margin-top: 50px;
}
body .mt70 {
  margin-top: 70px;
}
body .mt80 {
  margin-top: 80px;
}
body .mt100 {
  margin-top: 100px;
}
body .mt150 {
  margin-top: 150px;
}

@media (max-width: 520px) {
  body .mb20 {
    margin-bottom: 15px;
  }
  body .mb30 {
    margin-bottom: 25px;
  }
  body .mb40 {
    margin-bottom: 30px;
  }
  body .mb50 {
    margin-bottom: 40px;
  }
  body .mb70 {
    margin-bottom: 50px;
  }
  body .mb80 {
    margin-bottom: 60px;
  }
  body .mb100 {
    margin-bottom: 80px;
  }
  body .mb150 {
    margin-bottom: 100px;
  }
  body .mt20 {
    margin-top: 15px;
  }
  body .mt30 {
    margin-top: 25px;
  }
  body .mt40 {
    margin-top: 30px;
  }
  body .mt50 {
    margin-top: 40px;
  }
  body .mt70 {
    margin-top: 50px;
  }
  body .mt80 {
    margin-top: 60px;
  }
  body .mt100 {
    margin-top: 80px;
  }
  body .mt150 {
    margin-top: 100px;
  }
}

/* -------------------------------------
padding
-------------------------------------*/
body .pb0 {
  padding-bottom: 0;
}
body .pb5 {
  padding-bottom: 5px;
}
body .pb10 {
  padding-bottom: 10px;
}
body .pb15 {
  padding-bottom: 15px;
}
body .pb20 {
  padding-bottom: 20px;
}
body .pb30 {
  padding-bottom: 30px;
}
body .pb40 {
  padding-bottom: 40px;
}
body .pb50 {
  padding-bottom: 50px;
}
body .pb70 {
  padding-bottom: 70px;
}
body .pb80 {
  padding-bottom: 80px;
}
body .pb100 {
  padding-bottom: 100px;
}
body .pb150 {
  padding-bottom: 150px;
}
body .pt0 {
  padding-top: 0px;
}
body .pt5 {
  padding-top: 5px;
}
body .pt10 {
  padding-top: 10px;
}
body .pt15 {
  padding-top: 15px;
}
body .pt20 {
  padding-top: 20px;
}
body .pt30 {
  padding-top: 30px;
}
body .pt40 {
  padding-top: 40px;
}
body .pt50 {
  padding-top: 50px;
}
body .pt70 {
  padding-top: 70px;
}
body .pt80 {
  padding-top: 80px;
}
body .pt100 {
  padding-top: 100px;
}
body .pt150 {
  padding-top: 150px;
}

@media (max-width: 520px) {
  body .pb20 {
    padding-bottom: 15px;
  }
  body .pb30 {
    padding-bottom: 25px;
  }
  body .pb40 {
    padding-bottom: 30px;
  }
  body .pb50 {
    padding-bottom: 40px;
  }
  body .pb70 {
    padding-bottom: 50px;
  }
  body .pb80 {
    padding-bottom: 60px;
  }
  body .pb100 {
    padding-bottom: 80px;
  }
  body .pb150 {
    padding-bottom: 100px;
  }
  body .pt20 {
    padding-top: 15px;
  }
  body .pt30 {
    padding-top: 25px;
  }
  body .pt40 {
    padding-top: 30px;
  }
  body .pt50 {
    padding-top: 40px;
  }
  body .pt70 {
    padding-top: 50px;
  }
  body .pt80 {
    padding-top: 60px;
  }
  body .pt100 {
    padding-top: 80px;
  }
  body .pt150 {
    padding-top: 100px;
  }
}

/* -------------------------------------
幅
-------------------------------------*/
body :is(.w_base, .w100p, .w90p, .w80p, .w1400) {
  width: 100%;
  margin-inline: auto;
}
body .w_base {
  width: min(90%, var(--base-width));
}
body .w90p {
  max-width: 90%;
}
body .w80p {
  max-width: 80%;
}
body .w1400 {
  max-width: 1400px;
}

@media (max-width: 520px) {
  body .w_base {
    width: 88%; /* base.cssの上書き */
  }
  body .w80p {
    max-width: 90%;
  }
  body :is(.w100p_sp, .w90p_sp, .w80p_sp, .w70p_sp) {
    width: 100%;
    margin-inline: auto;
  }
  body .w100p_sp {
    max-width: 100%;
  }
  body .w90p_sp {
    max-width: 90%;
  }
  body .w80p_sp {
    max-width: 80%;
  }
  body .w70p_sp {
    max-width: 70%;
  }
}

/* -------------------------------------
レイアウト
-------------------------------------*/
/* flx */
.flx {
  --gap: 60px;
  display: flex;
  align-items: flex-start;
  gap: var(--gap);
}
.flx .text {
  flex: 1;
}

@media screen and (max-width: 520px) {
  .flx {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .flx .w30p {
    width: 100%;
  }
}

/* flxC */
.flx2c,
.flx3c,
.flx4c {
  --gap: 60px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
.flx2c {
  --row: 2;
}
.flx3c {
  --row: 3;
}
.flx4c {
  --row: 4;
}
:is(.flx2c, .flx3c, .flx4c) > * {
  width: calc((100% - var(--gap) * calc(var(--row) - 1)) / var(--row));
}

@media (max-width: 520px) {
  .flx2c,
  .flx3c,
  .flx4c {
    --gap: 4%;
    gap: 30px var(--gap);
  }
  body .sp1c {
    --row: 1;
  }
  body .sp2c {
    --row: 2;
  }
  body .sp3c {
    --row: 3;
  }
}

/* list-numC */
.list-numC {
  --row: 2;
  --gap: 60px;
  --width: calc((100% - var(--gap) * (var(--row) - 1)) / var(--row));
  display: flex;
  flex-flow: wrap;
  gap: var(--gap);
  position: relative;
  z-index: 5;
}
.list-numC > * {
  width: var(--width);
  display: flex;
  flex-flow: column;
  gap: 20px;
}
.list-numC figure {
  display: block;
  aspect-ratio: 520/346;
}

@media screen and (max-width: 520px) {
  .list-numC > * {
    gap: 15px;
  }
}

/* -------------------------------------
align
-------------------------------------*/
body .t_R {
  text-align: right;
}
body .t_L {
  text-align: left;
}
body .t_C {
  text-align: center;
}

/* -------------------------------------
block
-------------------------------------*/
.sp {
  display: none;
}
.ib {
  display: inline-block;
}

@media (max-width: 520px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .sp-ib {
    display: inline-block;
  }
}

/* -------------------------------------
リンク
-------------------------------------*/
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}
a.link {
  border-bottom: 1px dotted currentColor;
  transition: var(--transition);
}
a.link:hover {
  border-bottom: none;
}

/**PC電話ボタン無効**/
a[href^="tel"] {
  pointer-events: none;
}
@media (max-width: 520px) {
  a[href^="tel"] {
    pointer-events: auto;
  }
}

/* -------------------------------------
画像
-------------------------------------*/
img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
figure {
  overflow: hidden;
}

/**角丸：画像に直接かけれる**/
.radius {
  border-radius: var(--radius);
}

/**hover：透過**/
a:hover .hv {
  opacity: var(--opacity);
}

/**hover：拡大**/
.scale {
  overflow: hidden;
}
.scale img {
  transition: transform 0.3s linear;
}
:is(a:hover .scale, a.scale:hover) img {
  transform: scale(1.1);
}

/* objedt-fit*/
.ojf img {
  width: 100%; /*サイズ指定必須*/
  height: 100%; /*サイズ指定必須*/
  object-fit: cover;
}

/* -------------------------------------
文字
-------------------------------------*/
h1,
h2,
h3,
h4,
h5 {
  line-height: var(--lh_s);
}
.webf {
  font-family: var(--webf);
  font-weight: 600;
}
strong {
  font-weight: var(--fw_b);
}

/**黄色マーカー**/
mark {
  background: linear-gradient(transparent 70%, #ffff77 0%);
}

/* -------------------------------------
色
-------------------------------------*/
body .white {
  color: #fff;
}
body .gray {
  color: var(--gray);
}
body .c-main {
  color: var(--c-main);
}

/* -------------------------------------
背景
-------------------------------------*/
.bg-gray {
  background: var(--bg-gray);
}
.bg-main {
  background: var(--bg-main);
}
.bg-gdad {
  background: #fff;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(249, 243, 243, 1) 15%, rgba(249, 243, 243, 1) 85%, rgba(255, 255, 255, 1) 100%);
}
.bg-ptn {
  background: url(../images/bg-ptn.webp) repeat center / 100% auto;
}

/* bg-photo */
.bg-photo {
  background-image: url(../images/bg-cv.jpg);
  background-size: cover;
  mix-blend-mode: multiply;
}

/**-------------------------------------
iframe
-------------------------------------**/
.gmap {
  height: 240px;
}
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
:is(.gmap, .youtube) iframe {
  width: 100%;
  height: 100%;
}
.yt-short {
  text-align: center;
  filter: grayscale(1);
}

@media (max-width: 480px) {
  .gmap {
    height: 32vh;
  }
}

/* -------------------------------------
table
-------------------------------------*/
/* tbl-col */
.tbl-col table,
table.tbl-col {
  width: 100%;
}
.tbl-col :is(th, td) {
  display: block;
  width: 100%;
}
.tbl-col th {
  padding: 0;
  font-size: 2rem;
  font-weight: var(--fw_b);
  text-align: left;
}
.tbl-col td {
  padding: 10px 0 25px;
}

@media (max-width: 520px) {
  .tbl-col th {
    font-size: 1.5rem;
  }
}

/* tbl-sp_row */
.tbl-sp_row table,
table.tbl-sp_row {
  width: 100%;
  border-top: var(--border);
}
.tbl-sp_row tr {
  border-bottom: var(--border);
}
.tbl-sp_row :is(th, td) {
  padding: 22px 30px;
  vertical-align: top;
  text-align: left;
}
.tbl-sp_row th {
  width: 25%;
  font-weight: var(--fw_b);
  background: var(--bg-main);
}

@media (max-width: 520px) {
  .tbl-sp_row :is(th, td) {
    padding: 14px 10px;
    font-size: 0.9em;
  }
}

/* tbl-sp_col･･･sp th=w:100% */
.tbl-sp_col table,
table.tbl-sp_col {
  width: 100%;
  border-top: var(--border);
}
.tbl-sp_col tr {
  border-bottom: var(--border);
}
.tbl-sp_col :is(th, td) {
  padding: 22px 30px;
  vertical-align: middle;
  text-align: left;
}
.tbl-sp_col th {
  width: 25%;
  font-weight: var(--fw_b);
  background: var(--bg-main);
}

@media (max-width: 520px) {
  .tbl-sp_col table,
  table.tbl-sp_col {
    border-top: none;
  }
  .tbl-sp_col tr {
    border-bottom: none;
  }
  .tbl-sp_col :is(th, td) {
    display: block;
    width: 100%;
    font-size: 1.5rem;
  }
  .tbl-sp_col th {
    padding: 10px 10px;
  }
  .tbl-sp_col td {
    padding: 16px 14px 28px;
  }
}

/* tbl-bicolor･･･bg:2色てれこ */
.tbl-bicolor table,
table.tbl-bicolor {
  width: 100%;
  border-top: var(--border);
}
.tbl-bicolor tr {
  border-bottom: var(--border);
}
.tbl-bicolor tr:nth-of-type(odd) {
  background: plum;
}
.tbl-bicolor tr:nth-of-type(even) {
  background: skyblue;
}
.tbl-bicolor :is(th, td) {
  padding: 20px 16px;
  vertical-align: top;
  text-align: left;
}
.tbl-bicolor th {
  width: 25%;
  font-weight: var(--fw_b);
}

@media (max-width: 520px) {
  .tbl-bicolor :is(th, td) {
    padding: 8px 10px;
    font-size: 1.4rem;
  }
  .tbl-bicolor th {
    min-width: 6em;
    font-size: 1.3rem;
  }
}

/* -------------------------------------
タイトル
-------------------------------------*/
/* tit */
.tit {
  display: block;
  font-weight: var(--fw_b);
  line-height: var(--lh_s);
}
.tit span {
  display: block;
  margin-top: 10px;
  font-size: 0.65em;
}

/* tit-ribbon */
.tit-ribbon {
  max-width: 90%;
  margin-inline: auto;
  text-align: center;
}

/* tit-en */
[class*="tit-en"] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 30px;
  font-size: 3rem;
  font-weight: var(--fw_b);
  text-align: center;
  line-height: var(--lh_s);
}
[class*="tit-en"] span {
  width: fit-content;
  min-height: 40px;
  padding: 0 70px 0;
  background: url(../images/deco-tit_L.svg) no-repeat left bottom / auto 40px, url(../images/deco-tit_R.svg) no-repeat right bottom / auto 40px;
}
[class*="tit-en"] span em {
  font-size: 1.8rem;
  font-weight: var(--fw_n);
}
[class*="tit-en"] i {
  font-size: 2rem;
  color: var(--c-main);
  font-weight: var(--fw_b);
  line-height: 1;
}
/* 配置 */
.tit-en.t_L {
  align-items: start;
  text-align: left;
}
.tit-en.t_L span {
  padding: 0;
  background: none;
}

/* tit-obi */
.tit-obi {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  font-size: 3.2rem;
  color: #fff;
  font-weight: var(--fw_b);
  background: var(--c-sub);
}
.tit-obi span {
  display: grid;
  grid-template-columns: 60px auto;
  align-items: center;
  gap: 20px;
  width: min(90%, var(--base-width));
  margin: 0 auto;
  padding: 20px 0;
}
.tit-obi span i {
  display: grid;
  place-content: center;
  aspect-ratio: 1/1;
  color: var(--c-main);
  background: #fff;
  border-radius: 50%;
}

@media (max-width: 520px) {
  /* tit */
  .tit {
    font-size: min(4.3vw, 2rem);
  }

  /* tit-ribbon */
  .tit-ribbon {
    max-width: 98%;
  }

  /* tit-en */
  [class*="tit-en"] {
    margin-bottom: 20px;
    font-size: min(5.5vw, 2.4rem);
  }
  [class*="tit-en"] span {
    min-height: 30px;
    padding: 0 45px 0;
    background-size: auto 30px, auto 30px;
  }
  [class*="tit-en"] span em {
    font-size: 1.4rem;
  }
  [class*="tit-en"] i {
    font-size: 1.6rem;
  }

  /* tit-obi */
  .tit-obi {
    margin-bottom: 40px;
    font-size: min(5.6vw, 2.8rem);
  }
  .tit-obi span {
    grid-template-columns: 40px auto;
    gap: 20px;
    padding: 20px 0;
  }
  .tit-obi span i {
  }
}

/**-------------------------------------
i.arrow
-------------------------------------**/
i.arrow {
  --arrow-color: var(--color);
  display: block;
  width: 60px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--arrow-color);
  position: relative;
  transition: var(--transition);
}
i.arrow::before {
  --size: 8px;
  content: "";
  display: block;
  width: var(--size);
  height: var(--size);
  position: absolute;
  right: -1px;
  bottom: -1px;
  background: pink;
  background: linear-gradient(
    45deg,
    transparent 0%,
    transparent 44%,
    var(--arrow-color) 44%,
    var(--arrow-color) 60%,
    transparent 60%,
    transparent 100%
  );
}
a:hover i.arrow {
  transform: translateX(7px);
  transform-origin: right top;
}

@media (max-width: 520px) {
  i.arrow {
    width: 40px;
  }
}

/*----------------------------------------
btn
-------------------------------------**/
.btn,
[class^="btn_"] {
  --height: 64px;
  --color: var(--c-main);
  width: min(450px, 80%);
  display: flex;
  align-items: center;
  gap: 0.7em;
  height: var(--height);
  margin: 30px auto 0;
  padding: 0 1em;
  color: #fff;
  font-size: 1.6rem;
  font-weight: var(--fw_b);
  line-height: 1.4;
  background: var(--color);
  border: 1px solid var(--color);
  border-radius: var(--height);
  position: relative;
}
:is(.btn, [class^="btn_"]) span {
  flex: 1;
  height: var(--height);
  display: grid;
  place-content: center;
  font-size: 2.2rem;
}
:is(.btn, [class^="btn_"])::after {
  content: "→";
  transition: var(--transition);
}
:is(.btn, [class^="btn_"]):hover {
  opacity: 0.9;
}
:is(.btn, [class^="btn_"]):hover::after {
  translate: 5px 0;
}
a[href^="tel"][class^="btn"]::after {
  display: none;
}

@media (max-width: 520px) {
  .btn,
  [class^="btn_"] {
    --height: 54px;
    width: 85%;
    margin-top: 35px;
    margin-left: auto;
  }
  :is(.btn, [class^="btn_"]) span {
    font-size: 1.6rem;
  }
}

/* -------------------------------------
mail-btn
-------------------------------------*/
.mail-btn {
  --height: 60px;
  width: min(80%, 240px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: var(--height);
  padding: 0 0.8em;
  color: #fff;
  font-weight: var(--fw_b);
  line-height: 1;
  background: var(--c-sub);
  border-radius: var(--height);
  transition: var(--transition);
}
.mail-btn::before {
  --width: 18px;
  content: "";
  width: var(--width);
  aspect-ratio: 17/13;
  -webkit-mask: url(../images/icon_mail.svg) center / 100% auto no-repeat;
  mask: url(../images/icon_mail.svg) center / 100% auto no-repeat;
  background: #fff;
}
.mail-btn:hover {
  opacity: var(--opacity);
}

/* -------------------------------------
svgアイコン
-------------------------------------*/
svg {
  vertical-align: top;
  fill: currentColor;
}
i.svg-mail svg {
  aspect-ratio: 4/3;
}

/* -------------------------------------
tel
-------------------------------------*/
.tel {
  display: flex;
  align-items: center;
  gap: 0.2em;
  line-height: 1;
  font-weight: var(--fw_b);
}
.tel::before {
  --size: 0.6em;
  content: "";
  display: block;
  width: var(--size);
  aspect-ratio: 20/28;
  margin-top: 0.2em;
  -webkit-mask: url(../images/ico-tel.svg) center / 100% auto no-repeat;
  mask: url(../images/ico-tel.svg) center / 100% auto no-repeat;
  background: currentColor;
  transition: var(--transition);
}

/* -------------------------------------
ブロック
-------------------------------------*/
.content-box {
  padding: 60px;
  background: #fff;
}

@media (max-width: 520px) {
  .content-box {
    margin-left: -2%;
    margin-right: -2%;
    padding: 30px;
  }
}

/**-------------------------------------
lead
-------------------------------------**/
.lead {
  text-align: center;
}

/**-------------------------------------
count  自動連番
-------------------------------------**/
.count li {
  counter-increment: num 1;
}
.count li::before {
  content: counter(num, decimal-leading-zero) "."; /* 10未満は頭に0がつく */
}

/**-------------------------------------
grid
-------------------------------------**/
/* [class*="grid_"] 等分 */
[class*="grid_"] {
  --gap: 50px;
  display: grid;
  grid-template-columns: repeat(var(--grid), 1fr);
  gap: var(--gap);
}
.grid_2c {
  --grid: 2;
}
.grid_3c {
  --grid: 3;
}
.grid_4c {
  --grid: 4;
}
@media (max-width: 520px) {
  [class*="grid_"] {
    --gap: 30px;
    --grid: 1;
  }
  [class*="grid_"].sp_2c {
    --grid: 2;
  }
}

/* .box_2c 按分 */
.box_2c {
  --gap: 50px;
  --box: 30%;
  display: grid;
  grid-template-columns: var(--box) 1fr;
  align-items: flex-start;
  gap: var(--gap);
}
@media (min-width: 521px) {
  .box_2c.reverse {
    grid-template-columns: 1fr var(--box);
  }
  .box_2c.reverse > *:first-child {
    order: 1;
  }
}
@media (max-width: 520px) {
  .box_2c {
    --gap: 30px;
    grid-template-columns: 1fr;
  }
}
