@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;
}

/* デザイン線*/

.box{
   padding-top:5%;
   text-align:center;
}

.line01 {
    border-top: 1px solid #555;
    margin: 0 auto;
    width: 30em;
    margin-top: 3%;
    margin-bottom: 5%;
}

.vertical-line {
    width: 1px;
    height: 100px;
    background: #6b6b6b;
    display: block;
    margin: 0 auto;
}


/* テキスト */

.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.8em;
    line-height: 42px;
    width: 60%;
    margin: 0 auto;
    text-align: center;
    font-family: "Noto Sans JP", serif;
    padding-top: 5%;
    padding-bottom: 2%;
    font-weight: 500;
}

.text03 {
    font-size: 1.0em;
    line-height: 26px;
    width: 100%;
    text-align: center;
    font-family: "Noto Sans JP", serif;
}

.text04 {
    font-size: 1.0em;
    line-height: 26px;
    width: 40%;
    text-align: justify;
    font-family: "Noto Sans JP", serif;
    margin: 0 auto;
    padding-bottom: 5%;
    padding-top: 3%;
}

.font01 {
    font-size: 1.8em;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-family: "Noto Sans JP", serif;
    line-height: 45px;
    padding-top: 5%;
    padding-bottom: 3%;
    font-weight: 500;
}

.font02 {
    font-size: 1.2em;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-family: "Noto Sans JP", serif;
    line-height: 45px;
    padding-top: 1%;
    text-decoration: underline;
}

section {
    max-width: 310px;
    margin: 0 auto;
    padding-top: 5%;
    padding-bottom: 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: 300px;
    margin: auto;
    padding: 1rem 4rem;
    font-weight: bold;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    transition: 0.5s;
    font-family: serif;
    font-size: 1.0em;
}

a.btn_03:hover {
	color: #000;
	background: #fff;
}

/* スライド */
.slider-layout {
    position: relative;
    width: 100vw;
    max-width: 520px;
    aspect-ratio: 1 / 1.25;
    margin: 40px auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0; top: 0;
  opacity: 0;
  z-index: 1;
  object-fit: contain;
  transition: opacity 0.8s ease;
  animation: fadeSlide 6s infinite;
  /* レスポンシブ画像設定 */
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.slide1 { animation-delay: 0s; }
.slide2 { animation-delay: 2s; }
.slide3 { animation-delay: 4s; }

@keyframes fadeSlide {
  0%   { opacity: 1; }
  30%  { opacity: 1; }
  40%  { opacity: 0; }
  100% { opacity: 0; }
}

/* インジケーターとラベルの装飾 */
.indicator {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  opacity: 0.6;
}


/* 1レイアウト */
.parent {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 5px;
    justify-content: center;
    justify-items: center;
}

.parent02 {
    display: grid;
    grid-template-columns: repeat(1, 0.4fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 5px;
    justify-content: center;
    justify-items: center;
} 

.container081 {
    display: grid;
    grid-template-columns: 0.4fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px 10px;
    grid-auto-flow: row;
    align-content: center;
    justify-items: center;
    grid-template-areas:
        "dec01"
        "crezit01";
    justify-content: center;
}

.dec01 { grid-area: dec01; 
    font-size: 1.0em;
    line-height: 25px;
    margin: 0 auto;
    text-align: justify;
    font-family: "Noto Sans JP", serif;
    font-weight: normal;
}

.crezit01 { grid-area: crezit01;
    font-size: 1.0em;
    line-height: 30px;
    /* margin: 5% 9% 0% 40%; */
    text-align: justify;
    font-family: "Noto Sans JP", serif;
    font-weight: normal;
    width: 100%;
    padding-top: 3%;
}
}
/*===============================================
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: 834px) {
.text02 {
    font-size: 1.8em;
    line-height: 42px;
    width: 60%;
    margin: 0 auto;
    text-align: justify;
    font-family: "Noto Sans JP", serif;
    padding-top: 3%;
    padding-bottom: 5%;
}
}
@media (max-width: 768px) {
.container081 {
    display: grid;
    grid-template-columns: 0.6fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px 10px;
    grid-auto-flow: row;
    align-content: center;
    justify-items: center;
    grid-template-areas:
        "dec01"
        "crezit01";
    justify-content: center;
}

.parent02 {
    display: grid;
    grid-template-columns: repeat(1, 0.6fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 5px;
    justify-content: center;
    justify-items: center;
}
.text04 {
    font-size: 1.0em;
    line-height: 26px;
    width: 60%;
    text-align: justify;
    font-family: "Noto Sans JP", serif;
    margin: 0 auto;
    padding-bottom: 5%;
    padding-top: 3%;
}
}
/*===============================================
SMP
===============================================*/
@media (max-width: 430px) {
section {
    max-width: 310px;
    margin: 0 auto;
    padding-top: 8%;
    padding-bottom: 15%;
}

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%;
}

.container521 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 0.1fr 0.1fr;
    gap: 10px 10px;
    grid-auto-flow: row;
    justify-content: center;
    grid-template-areas:
        "photoimage10"
        "textimage10"
        "crezit10";
}

.photoimage10 {
    grid-area: photoimage10;
    width: 85%;
    margin: 0 auto;
}

.parent02 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(1, 1fr);
        gap: 5px;
        justify-content: center;
        justify-items: center;
        padding: 5%;
}

.container081 {
    display: grid;
    grid-template-columns: 0.8fr;
    grid-template-rows: 1fr 0.8fr;
    gap: 10px 10px;
    grid-auto-flow: row;
    align-content: center;
    justify-items: center;
    grid-template-areas:
        "dec01"
        "crezit01";
    justify-content: center;
}

.text01 {
    font-size: 1.0em;
    line-height: 23px;
    width: 100%;
    margin-top: 5%;
    text-align: center;
    margin-bottom: 20%;
    font-family: "Noto Sans JP", serif;
}
.text02 {
        font-size: 1.8em;
        line-height: 42px;
        width: 80%;
        margin: 0 auto;
        text-align: center;
        font-family: "Noto Sans JP", serif;
        padding-top: 8%;
    }
.text04 {
    font-size: 1.0em;
    line-height: 23px;
    width: 80%;
    text-align: justify;
    font-family: "Noto Sans JP", serif;
    margin: 0 auto;
    padding-bottom: 5%;
    padding-top: 3%;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    opacity: 0.6;
}
}
@media (max-width: 320px) {
.container081 {
        display: grid;
        grid-template-columns: 0.8fr;
        grid-template-rows: 1fr 0.6fr;
        gap: 10px 10px;
        grid-auto-flow: row;
        align-content: center;
        justify-items: center;
        grid-template-areas:
        "dec01"
        "crezit01";
        justify-content: center;
    }
}