/*フォント指定*/
@font-face {
    font-family: 'MyFont1';
	src: url("portfolio/font/yosugaraver1_2.ttf");
}

@font-face {
    font-family: 'MyFont2';
	src: url("portfolio/font/SanariFontH002.ttf");
}

@font-face {
    font-family: 'MyFont3';
	src: url("portfolio/font/Cormorant-VariableFont_wght.ttf");
}

body{
  background-image: url("portfolio/image/common/20250531002.JPG");
  background-size: cover;/*全画面*/
  background-attachment: fixed;/*画像固定*/
  background-position: center;
  background-blend-mode: lighten;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.button{
display: inline-flex;
width: 100vw;
height:95vh;
border-radius: 8px;
font-weight: bold;
}

.button_PC{
  text-align: center;
  color: #000000;
  background-color:#aaf2ff;
  border:solid 1px black;
  border-radius: 50px;/* 角丸サイズ */
  box-shadow: 0 0 0 10px #aaf2ff, 0 2px 3px 5px rgba(0,0,0,0.5);/* 縁取り・影 */
  border: 8px dashed #fff;/* 点線の色・サイズ */
  margin:10%;
  width: 40%;
  height: 30%;
}

.button_mobile {
text-align: center;
background-color:#bfffb3;
border:solid 1px black;
border-radius: 50px;/* 角丸サイズ */
box-shadow: 0 0 0 10px #bfffb3, 0 2px 3px 5px rgba(0,0,0,0.5);/* 縁取り・影 */
border: 8px dashed #fff;/* 点線の色・サイズ */
margin:10%;
width: 40%;
height: 30%;
}

.text_PC{
  font-family:'MyFont3';
  font-size: 300%;
  font-weight: bold;
  color: #000000;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.text_mobile{
  font-family:'MyFont3';
  font-size: 300%;
  font-weight: bold;
  color: #000000;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

img{
  width: 35%;
}

footer{
    height: 40px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    display: flex;
    bottom: 0;
}

footer p{
    font-style: italic;
    font-family:'MyFont3';
}