@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');


html{
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	box-sizing: border-box;
    letter-spacing: .08rem;
    font-size: 100%;
    color: #212529;
    scroll-behavior: smooth;
}

*::selection{
	-webkit-tap-highlight-color:rgba(0,0,0,0.2);
	background-color: #1a1a1a;
	color: #FFF;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
    margin: 0;
	padding: 0;
}

body {
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
    -webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
    font-family:
        "Yu Mincho", "游明朝体",
        "Hiragino Mincho ProN", "ヒラギノ明朝 ProN",
        "Noto Serif JP",
        "Droid Serif", serif;
    position: relative;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3rem;
    line-height: 1.8rem;
    background: aliceblue;
}


p {
    line-height: 3rem;
}

input, button, textarea, select {
	-webkit-appearance: none;
	appearance: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
    text-decoration: none;
    color: white;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-center { 
    text-align: center;
}

.btn,
a.btn,
button.btn {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 3rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
}


.content{
    max-width: 1300px;
    width:100%;
    margin: 0 auto;
    padding: 8rem 2rem;
    position: relative;
}
@media screen and (max-width: 767px){
    body {
        letter-spacing: 0.1rem;
        line-height: 1.5rem;
    }
    .content{
        padding: 6rem 1rem;
    }
    p {
        line-height: 2.2rem;
    }
}


/* パソコンはpc-onlyだけ表示 */
.pc-only {
    display: block;
}
.sp-only {
    display: none;
}
/* スマホはsp-onlyだけ表示 */
@media screen and (max-width: 767px){
    .pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    } 
}


.content {
    font-size: 1rem;
}
@media screen and (max-width: 767px){
.content {
    font-size: .8rem;
}
}
/*========= LOCATION =========*/
#location {
  position: relative;
}

#location::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url(../img/back.png) center / cover no-repeat;
}

/*========= TEXT ==========*/

.font-size-XS {
    font-size: clamp(.8rem, calc(0.9rem + 0.625vw), 1.4rem);
}
.font-size-S {
    font-size: clamp(1.1rem, calc(0.9rem + 0.625vw), 1.6rem);
}
.font-size-M {
    font-size: clamp(1.4rem, calc(1.5rem + 0.625vw), 1.7rem);
}
.font-size-L {
    font-size: clamp(1.9rem, calc(2.2rem + 0.625vw), 2.4rem);
}
.font-size-XL {
    font-size: clamp(2.4rem, calc(2.2rem + 0.625vw), 2.8rem);
    line-height: 2.5rem;
}


/*========= TITLE ==========*/

:root {
  --torem: 0.0625rem;
}

@font-face {
  font-family: 'Rosario';
  src: url('../fonts/Rosario-VariableFont_wght.ttf') format('truetype-variations'),
       url('../fonts/Rosario-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

.font-rosario {
    font-family: 'Rosario', sans-serif;
    font-weight: 300 700;
    font-style: italic;
}

.font-weight {
    font-weight: bold;
}

.title-main {
    font-size: calc(80 * var(--torem)); 
}
.title-sub {
    font-size: calc(15 * var(--torem)); 
    border-bottom: 1px solid;
    padding-bottom: .7rem;
}

@media screen and (max-width: 767px){
.title-main {
    font-size: calc(50 * var(--torem)); 
}

}

/* ====== scroll ======== */

.scroll-space {
  box-sizing: border-box;
  overflow: hidden;
}

.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
}

.fadein.fadein-left {
  transform: translate(-30px, 0);
}

.fadein.fadein-right {
  transform: translate(30px, 0);
}

.fadein.fadein-up {
  transform: translate(0, -30px);
}

.fadein.fadein-bottom {
  transform: translate(0, 30px);
}

.fadein.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}