@charset "UTF-8";

/*----------------------------------*/
/*----------------変数------------------*/
/*------------------------------------*/

:root {

/*フォント*/
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Geologica", sans-serif;
--font-basic: "Geologica", "Noto Sans JP", sans-serif;

/*カラー*/
  --color-black: #000;
  --color-black-base:#231815;
  --color-white: #fff;
  --color-white-cloudy:#efefef;
  --color-blue:#00516C;
  --color-red:#ba0007;
  --color-yellow:#f6d900;


/*フォントサイズ*/
--rem: calc(1rem / 16);
/* font-size: calc(20 * var(--rem));*/

}


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-repeat: no-repeat;
}



html {
  font-size: 16px;
  font-weight: 400;
  scroll-behavior: smooth;/* スクロールスムーズ */
}
body {
  font-feature-settings: 'palt';/*文字つめ*/
  /* Safari*/
  text-size-adjust: 100%;
  overflow-wrap: anywhere;/*urlもテキスト折る*/
  font-family: var(--font-basic);
  background: var(--color-white);
margin: 0;
letter-spacing: 0.05rem;
}

/* 【ゴシック系初期フォント】font-family:'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, 'sans-serif' */
/* 【明朝系初期フォント】font-family:YuMincho, 'Yu Mincho', 'Hiragino Mincho ProN', 'serif' */


table,
tr,
th,
td,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
figure {
  margin: 0;
  padding: 0;
  font-weight: normal;
  list-style: none;
}

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

sub,
sup {
  font-size: 0.6rem;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/*下付き*/
sub {
  bottom: 0;
}

/*上付き*/
sup {
  top: -0.25rem;
}


/* テキストリンク */
a {
  text-decoration: none;
  color: #000;
  outline: none;
transition: 0.3s;
}
a:hover {
  opacity: 0.5;
}


/* 本文基本 */
p {
  font-feature-settings: 'palt';/*文字つめ*/
  padding: 0;
  margin: 0;
  word-wrap: break-word;
font-family: var(--font-basic);
font-size:calc(16 * var(--rem));
line-height: calc(28 * var(--rem));
color: var(--color-brown);
letter-spacing: 0.05rem;
}
@media screen and (max-width: 768px) {
p {
font-size:calc(14 * var(--rem));
line-height: calc(23 * var(--rem));
}
}



/* 画像 */
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  max-width: 100%;
  height: auto;
  border-style: none;
  image-rendering: -webkit-optimize-contrast;
}

/* clear */
.cle:before,
.cle:after {
  content: ' ';
  display: table;
}
.cle:after {
  clear: both;
}
.cle {
  zoom: 1;
}



/* -------------------------- */
/* --------コンテンツ-------- */
/* -------------------------- */

.pc_no {display: none;}
.sp_no {display: block;}

@media screen and (max-width: 768px) {
.sp_no {display: none;}
.pc_no {display:block;}
}


.content {
  width: min(90%, 1100px);
  margin-left: auto;
  margin-right: auto;
}



/*-----------------------------------------------------*/
/*-------------------共通テキスト ----------------------*/
/*-----------------------------------------------------*/
.txt_red{color: var(--color-red);}
.txt-ja{font-family: var(--font-ja);}
.txt-en{font-family: var(--font-en);}


/*-----------------------------------------------------*/
/*---------------------- マージン ----------------------*/
/*-----------------------------------------------------*/
/*上*/
.ma-t-10{margin-top: 10px;}
.ma-t-20{margin-top: 20px;}
.ma-t-30{margin-top: 30px;}
.ma-t-40{margin-top: 40px;}
.ma-t-50{margin-top: 50px;}
/*左*/
.ma-l-10{margin-left: 10px;}
.ma-l-20{margin-left: 20px;}
.ma-l-30{margin-left: 30px;}
.ma-l-40{margin-left: 40px;}
.ma-l-50{margin-left: 50px;}
/*右*/
.ma-r-10{margin-right: 10px;}
.ma-r-20{margin-right: 20px;}
.ma-r-30{margin-right: 30px;}
.ma-r-40{margin-right: 40px;}
.ma-r-50{margin-right: 50px;}
/*下*/
.ma-b-10{margin-bottom: 10px;}
.ma-b-20{margin-bottom: 20px;}
.ma-b-30{margin-bottom: 30px;}
.ma-b-40{margin-bottom: 40px;}
.ma-b-50{margin-bottom: 50px;}
/*中央*/
.ma-c{margin-left: auto; margin-right: auto;}







/*-----------------------------------------------------*/
/*---------------------- ページTOP ----------------------*/
/*-----------------------------------------------------*/
#page-top {
position: fixed;
bottom: 20px;
right: 20px;
font-size: 1.0rem;
width: 60px;
height: 60px;
z-index: 100;
}
#page-top a {
text-decoration: none;
display: block;
width: 100%;
}