@charset "UTF-8";

@import url("https://use.typekit.net/hko0fjy.css");

:root {
  /* font */
  --gothic: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --mincho: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  --trajan: "trajan-pro-3", serif;

  /* color */
  --blk: 20, 23, 39;
  --wht: 255, 255, 255;
  --blu: 195, 217, 254;
  --pin: 255, 244, 249;
  --gold: 137, 122, 101;
  --btn: 242, 129, 173;
}

/* ----------------------------------------------------
	基本設定
---------------------------------------------------- */
html {
  scroll-padding-top: 12vw;
}

/*
	reset
------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

p {
  word-wrap: break-word;
}

p:not(:last-of-type) {
  margin-bottom: 1em;
}

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

fieldset,
img {
  border: 0;
}

address,
b,
caption,
cite,
code,
dfn,
em,
i,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

caption,
th {
  text-align: left;
}

a {
  color: rgb(var(--blk));
  text-decoration: underline;
  transition: all 0.5s ease 0s;
}

a:hover {
  text-decoration: none;
  opacity: 0.7;
}

area {
  border: none;
  outline: none;
}

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

/*
	表示設定
------------------------------ */
body {
  background: var(--wht);
  line-height: 1.8;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: calc(62.5% + 40px);
  max-width: calc(800px + 40px);
  width: 100%;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 3.2vw;
  }
}

/*
	font
------------------------------ */
body {
  font-family: var(--gothic);
  font-feature-settings: "palt" 1;
  letter-spacing: 0.05em;
  font-weight: 500;
}

body,
th,
td {
  color: var(--blk);
  font-size: 16px;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  body,
  th,
  td {
    font-size: 3.73333vw;
  }
}

/*
	SP,PC表示切り替え
------------------------------ */
.pc {
  display: block;
}

.sp {
  display: none;
}
.tb {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .tb {
    display: block;
  }
}
/*
	list
------------------------------ */
ul.list li {
  padding-left: 1.25em;
  text-indent: 0;
  position: relative;
}

ul.list li::before {
  margin-right: 0.25em;
  position: absolute;
  left: 0;
}

/* note */
ul.note li {
  font-size: 14px;
}

ul.note li::before {
  content: "※" !important;
  color: rgb(var(--blk)) !important;
}

@media screen and (max-width: 768px) {
  ul.note li {
    font-size: 3.2vw;
  }
}

/* type */
ul.type1 li::before {
  color: #cbc9c5;
  content: "●";
}

/* cnt */
ol.cnt li {
  padding-left: 1.5em;
  position: relative;
  counter-increment: number;
}

ol.cnt li::before {
  margin-right: 0.25em;
  position: absolute;
  left: 0;
  content: "0" counter(number) ".";
}

/*
	tel
------------------------------ */
.tel {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .tel {
    pointer-events: all;
  }
}

/*
	linkBtn
------------------------------ */
.linkBtn a {
  background: rgb(var(--btn));
  width: auto;
  height: 40px;
  color: rgb(var(--wht));
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.linkBtn a:hover {
  opacity: 1;
}

.linkBtn a svg {
  width: 1.25rem;
  fill: rgb(var(--wht));
  transition: all 0.5s ease 0s;
}

@media screen and (max-width: 768px) {
  .linkBtn a {
    max-width: 100%;
    width: 100%;
    height: 10.66667vw;
  }

  .linkBtn a svg {
    width: 4.26667vw;
  }
}

/* type1 */
.linkBtn a.type1 {
  padding: 0 2.5rem;
}

.linkBtn a.type1 svg {
  position: relative;
  right: -1.25rem;
}

.linkBtn a.type1:hover svg {
  right: -1.75rem;
}

@media screen and (max-width: 768px) {
  .linkBtn a.type1 {
    padding: 0 2.5rem 0 1.25rem;
    justify-content: center;
  }

  .linkBtn a.type1 svg {
    position: absolute;
    top: 50%;
    right: 1.25rem;
    transform: translateY(-50%);
  }

  .linkBtn a.type1:hover svg {
    right: 0.5rem;
  }
}

/* type2 */
.linkBtn a.type2 {
  padding: 0 1.25rem;
  justify-content: center;
}

.linkBtn a.type2 svg {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
}

.linkBtn a.type2:hover svg {
  right: 0.75rem;
}

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
.pageTop a {
  background: rgba(var(--blk), 0.8);
  width: 64px;
  height: 64px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 10;
}

.pageTop a svg {
  fill: rgb(var(--wht));
  width: 16px;
  height: auto;
}
