@charset "utf-8";

html{
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	box-sizing: border-box;
    line-height: 2rem;
    letter-spacing: .08rem;
    font-size: 62.5%;
    color: #212529;
}

*::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: 'Noto Sans JP', sans-serif;
    position: relative;
    font-size: 16px;
}

input, button, textarea, select {
	-webkit-appearance: none;
	appearance: none;
}

img {
    width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
    display: block;
}
a {
    text-decoration: none;
    color: #212529;
}
a:hover {
    opacity: .7;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


.text-center { 
    text-align: center;
}
.text-left { 
    text-align: left;
}
.text-right { 
    text-align: right;
}


.btn,
a.btn,
button.btn {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  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;
  width: 100%;
}

.btn-active {
    pointer-events: none;
    background-color: #4289ff33;
}

.btn-main {
    background: var(--main-txt-color);
    border-radius: 30px;
    box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.4);
    color: white;
    width: fit-content;
}
.btn-default {
    border: 1.8px solid;
    padding: .4rem 1rem;
    background: white;
    font-weight: bold;
}

.content{
    padding: 5rem;
}
@media screen and (max-width: 768px){
    html {
        line-height: 1.5rem;
    }
    .content{
        padding: 3rem 2rem;
    }
}


/* パソコンはpc-onlyだけ表示 */
.pc-only {
    display: block;
}
.sp-only {
    display: none;
}
/* スマホはsp-onlyだけ表示 */
@media screen and (max-width: 768px){
    .pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    } 
}

/*========= 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.2rem, calc(1rem + 0.625vw), 1.7rem);
}
.font-size-L {
    font-size: clamp(2.4rem, calc(2.2rem + 0.625vw), 2.9rem);
}

.font-weight {
    font-weight: bold;
}


/*======== Color ==========*/

:root {
  --main-txt-color: #3462ae;
  --sub-txt-color: #59b49a;
  --red-txt-color: #EB6165;
  --black-txt-color: #212529;
  --main-bg-color: #F9F6E2;
  --rpp-txt-color: #211E77;
  --rpg-txt-color: #998637;
}

/*========= cl-text ==========*/

.cl-bl {
    color: var(--main-txt-color);
}
.cl-gr {
    color: var(--sub-txt-color);
}
.cl-red {
    color: var(--red-txt-color);
}
.cl-rpp {
    color: var(--rpp-txt-color);
}
.cl-rpg {
    color: var(--rpg-txt-color);
}
.cl-wt {
    color: white;
}
.cl-gry {
    color: gray;
}

.bg-wt {
    background: white;
}
.bg-gry {
    background: rgb(196, 196, 196);
}


/*========= TITLE ==========*/

.title-main {
    font-weight: bold;
    font-style: normal;
    font-size: 2.6rem;
    font-size: calc(4.4rem + ((1vw - 0.48rem) * 0.5556));
    min-height: 0vw;
    line-height: 1.3;
    color: black;
    -webkit-text-fill-color: white;
    -webkit-text-stroke: 2px var(--main-txt-color);
}
.title-sub {
    font-weight: bold;
    font-style: normal;
    font-size: 2rem;
    line-height: 1.3;
    color: var(--main-txt-color)
}

.soldout {
    background-color: var(--red-txt-color);
    text-align: center;
    font-size: medium;
    padding: .3rem;
    margin-right: .3rem;
}

@media screen and (min-width: 1200px) {
  .title-main {
      font-size: 4.8rem;
  }
}


/* デバイス幅が480px以下 */
@media screen and (max-width: 480px) {
    .title-main {
    font-size: 3.4rem;
    }
    .title-sub {
    font-size: 1.8rem;
    }
}


/*========= ARROW ==========*/
.arrow_u {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.arrow_u:before {
  content: '';
  width: 7px;
  height: 7px;
  border: 0;
  border-bottom: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

/*========= ACCORDION ==========*/
.accordion-003 {
    margin-bottom: 7px;
    background-color: #f0efff;
}

.accordion-003 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.accordion-003 summary::-webkit-details-marker {
    display: none;
}

.accordion-003 summary::before,
.accordion-003 summary::after {
    width: 3px;
    height: .9em;
    border-radius: 5px;
    background-color: #333333b3;
    content: '';
}

.accordion-003 summary::before {
    position: absolute;
    right: 2em;
    rotate: 90deg;
}

.accordion-003 summary::after {
    transition: rotate .3s;
}

.accordion-003[open] summary::after {
    rotate: 90deg;
}

.accordion-003 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-003[open] p {
    transform: none;
    opacity: 1;
}