@charset "utf-8";@charset "UTF-8";
.image {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.image img {
	display: block;
	width: 100%;
	height: auto;
}
/* 背景*/

.background {
    background-color: #f7f7f7;
}

/* デザイン線*/

.box{
   padding-bottom:10%;
   text-align:center;
}

.line01 {
    border-top: 1px solid #555;
    margin: 0 auto;
    width: 30em;
    margin-top: 3%;
}

 .vertical-line {
         width: 1px;
         height: 100px;
         background-color: #333;
         margin: 0 auto;
         padding-top:3%;
}

/* 矢印*/

.dli-caret-right {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.375em 0.64952em;
  border-left-color: currentColor;
  border-right: 0;
}
 
/* ボタン*/

.border {
    border: solid 0.5px;
    background-color: #000;
    margin: 0 auto;
    padding: 0% 2% 0% 2%;
    font-size: 0.9em;
    color: #fff;
    letter-spacing: 0.12em;
    border-radius: 4px;
}

/* テキスト */

.text01 {
    font-size: 1.0em;
    line-height: 26px;
    width: 100%;
    margin-top: 5%;
    text-align:center;
    margin-bottom: 5%;
    font-family: "Noto Sans JP", serif;
}

.text02 {
    font-size: 1.0em;
    line-height: 26px;
    width: 100%;
    margin-top: 5%;
    text-align:center;
    margin-bottom: 5%;
    font-family: "Noto Sans JP", serif;
}

.text03 {
    font-size: 1.0em;
    line-height: 26px;
    width: 100%;
    margin-top: 5%;
    margin-bottom: 2%;
    text-align: center;
    font-family: "Noto Sans JP", serif;
}

.font01 {
    font-size: 1.3em;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-family: "Noto Sans JP", serif;
    line-height: 45px;
}

section {
  max-width: 310px;
  margin: 0 auto;
 padding-top:5%;
}

a.btn_02 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    padding: 0 6% 0 12%;
    color: #000;
    font-size: 1.0em;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    font-family: serif;
    font-size: 1.1em;
}

a.btn_02:hover {
  background: #000;
  color: #fff;
}

a.btn_02:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}

a.btn_02:hover:before {
  border-color: transparent transparent transparent #fff;
}

a.btn_03 {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 220px;
    margin: auto;
    padding: 1rem 4rem;
    font-weight: bold;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    transition: 0.5s;
    font-family: serif;
    font-size: 0.9em;
}

a.btn_03:hover {
	color: #000;
	background: #fff;
}

.container0123 {
    display: grid;
    grid-template-columns: 0.4fr;
    grid-template-rows: 0.5fr 0.5fr 0.35fr;
    gap: 20px 20px;
    grid-auto-flow: row;
    grid-template-areas:
        "photo20"
        "photo30"
        "dex10";
    justify-content: center;
}

.photo20 { grid-area: photo20; 
    margin:0 auto;
    width:80%;
}

.photo30 { grid-area: photo30;
    margin:0 auto;
    width:90%;
}

.dex10 { grid-area: dex10; }


/* アイテム写真１カラム＋文字*/

.banner {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3%;
    margin-top: 3%;
}

.text11 {
    position: absolute;
    top: 80%;
    left: 30%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 6.0em;
    text-align: center;
    opacity: 0;
    animation: fadeIn 8s forwards;
    z-index: 2;
    text-shadow: #888888 1px 0 10px;
}

.text12 {
    position: absolute;
    top: 80%;
    left: 70%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 6.0em;
    text-align: center;
    opacity: 0;
    animation: fadeIn 16s forwards;
    z-index: 2;
    text-shadow: #888888 1px 0 10px;
    line-height: 80px;
}

.text13 {
    position: absolute;
    top: 80%;
    left: 30%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 6.5em;
    text-align: center;
    opacity: 0;
    animation: fadeIn 24s forwards;
    z-index: 2;
    text-shadow: #888888 1px 0 10px;
}
.text14 {
    position: absolute;
    top: 10%;
    left: 70%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 6.0em;
    text-align: center;
    opacity: 0;
    animation: fadeIn 32s forwards;
    z-index: 2;
    text-shadow: #888888 1px 0 10px;
    line-height: 80px;
}


        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        @media (max-width: 600px) {
            .text {
                font-size: 36px; /* モバイル用のフォントサイズ */
            }
        }
@media (max-width: 1024px) {
.container0123 {
    display: grid;
    grid-template-columns: 0.6fr;
    grid-template-rows: 0.5fr 0.5fr 0.4fr;
    gap: 20px 20px;
    grid-auto-flow: row;
    grid-template-areas:
        "photo20"
        "photo30"
        "dex10";
    justify-content: center;
}
}
/*===============================================
tablet
===============================================*/
@media (max-width: 834px) {
section {
  max-width: 320px;
  margin: 0 auto;
}

a.btn_02 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    padding: 0 6% 0 12%;
    color: #000;
    font-size: 1.0em;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    font-family: serif;
    font-size: 1.0em;
}

a.btn_02:hover {
  background: #000;
  color: #fff;
}

a.btn_02:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}
a.btn_02:hover:before {
  border-color: transparent transparent transparent #fff;
}
}
@media (max-width: 768px) {
.container0123 {
    display: grid;
    grid-template-columns: 0.7fr;
    grid-template-rows: 0.5fr 0.5fr 0.4fr;
    gap: 20px 20px;
    grid-auto-flow: row;
    grid-template-areas:
        "photo20"
        "photo30"
        "dex10";
    justify-content: center;
}
/*===============================================
SMP
===============================================*/
@media (max-width: 425px) {

section {
  max-width: 310px;
  margin: 0 auto;
}

a.btn_02 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    padding: 0 6% 0 12%;
    color: #000;
    font-size: 1.0em;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    font-family: serif;
    font-size: 1.1em;
}

a.btn_02:hover {
  background: #000;
  color: #fff;
}

a.btn_02:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}

a.btn_02:hover:before {
  border-color: transparent transparent transparent #fff;
}

.sma{
    display: none;
}

.line01 {
        border-top: 1px solid #555;
        margin: 0 auto;
        width: 90%;
        margin-top: 10%;
        padding: 3%;
}
.container0123 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 0.5fr 0.5fr 0.5fr;
    gap: 20px 20px;
    grid-auto-flow: row;
    grid-template-areas:
        "photo20"
        "photo30"
        "dex10";
    justify-content: center;
}

.banner {
        position: relative;
        width: 80%;
        height: auto;
        margin: 0 auto;
        text-align: center;
        margin-bottom: 2%;
        margin-top: 10%;
}

.photo20 {
    grid-area: photo20;
    margin: 0 auto;
    width: 60%;
}
.photo30 {
    grid-area: photo30;
    margin: 0 auto;
    width: 75%;
}

.text01 {
    font-size: 1.0em;
    line-height: 23px;
    width: 100%;
    /* margin-top: 5%; */
    text-align: left;
    margin-bottom: 5%;
    font-family: "Noto Sans JP", serif;
    padding: 5%;
}
.text02 {
    font-size: 1.0em;
    line-height: 23px;
    width: 100%;
    text-align: left;
    margin-bottom: 5%;
    font-family: "Noto Sans JP", serif;
    padding: 0% 8%;
}
}
@media (max-width: 425px) {

.text11 {
            position: absolute;
            top: 80%;
            left: 25%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 3.0em;
            text-align: center;
            opacity: 0;
            animation: fadeIn 2s forwards;
            z-index: 2;
            line-height: 60px;
}

.text12 {
    position: absolute;
    top: 85%;
    left: 75%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 4.0em;
    text-align: center;
    opacity: 0;
    animation: fadeIn 16s forwards;
    z-index: 2;
    text-shadow: #888888 1px 0 10px;
    line-height: 60px;
}
.text13 {
    position: absolute;
    top: 80%;
    left: 20%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 4.5em;
    text-align: center;
    opacity: 0;
    animation: fadeIn 24s forwards;
    z-index: 2;
    text-shadow: #888888 1px 0 10px;
}
.text14 {
    position: absolute;
    top: 10%;
    left: 70%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 4.4em;
    text-align: center;
    opacity: 0;
    animation: fadeIn 32s forwards;
    z-index: 2;
    text-shadow: #888888 1px 0 10px;
    line-height: 60px;
}
}
@media (max-width: 320px) {
.text11 {
            position: absolute;
            top: 80%;
            left: 20%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 3.5em;
            text-align: center;
            opacity: 0;
            animation: fadeIn 2s forwards;
            z-index: 2;
            line-height: 45px;
 }
.text12 {
            position: absolute;
            top: 85%;
            left: 75%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 3.4em;
            text-align: center;
            opacity: 0;
            animation: fadeIn 16s forwards;
            z-index: 2;
            text-shadow: #888888 1px 0 10px;
            line-height: 50px;
}
.text13 {
    position: absolute;
    top: 80%;
    left: 23%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 4.5em;
    text-align: center;
    opacity: 0;
    animation: fadeIn 24s forwards;
    z-index: 2;
    text-shadow: #888888 1px 0 10px;
}
.text14 {
    position: absolute;
    top: 10%;
    left: 65%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 4.0em;
    text-align: center;
    opacity: 0;
    animation: fadeIn 32s forwards;
    z-index: 2;
    text-shadow: #888888 1px 0 10px;
    line-height: 45px;
}
.font01 {
    font-size: 1.3em;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-family: "Noto Sans JP", serif;
    line-height: 45px;
    padding-top: 5%;
}
}