@charset "utf-8";@charset "UTF-8";
.row-fluid li {
  display: block;
  float: left;
  width: 100%;
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.image {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.image img {
	display: block;
	width: 100%;
	height: auto;
}

.box {
   padding-top:8%;
   padding-bottom:5%;
   text-align:center;
}

/* ボタン*/

section {
  max-width: 300px;
  margin: 0 auto;
  padding-top:3%;
  padding-bottom:10%;
}

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: 16px;
  text-align: left;
  text-decoration: none;
  position: relative;
  transition-duration: 0.2s;
  font-family: serif;
}

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;
}


/* 追加文字*/

.text01 {
    font-size: 1.0em;
    line-height: 25px;
    width: 40%;
    margin: 0 auto;
    text-align: right;
    padding-top: 1%;
    font-family: serif;
    padding-bottom: 5%;
}

.text02 {
    font-size: 1.0em;
    line-height: 25px;
    width: 50%;
    margin: 0 auto;
    text-align: right;
    padding-top: 1%;
    font-family: serif;
    padding-bottom: 5%;
}

/* ボタン２*/
.border {
    border: solid 0.5px #000;
    background-color: #000;
    margin: 5%;
    padding: 0% 1% 0% 1%;
    font-size: 0.9em;
    color: #fff;
}


/* 1カラム1枚*/
.parent {
    display: grid;
    grid-template-columns: repeat(1, 0.4fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 20px;
    justify-content: center;
}


/* 1カラム2枚*/
.container422 {
    display: grid;
    grid-template-columns: 0.4fr;
    grid-template-rows: 1fr 1fr;
    gap: 50px 10px;
    grid-auto-flow: row;
    justify-content: center;
    justify-items: center;
    grid-template-areas:
        "photoimage10"
        "photoimage20";
    padding-top: 10%;
}

.photoimage10 { grid-area: photoimage10; }

.photoimage20 { grid-area: photoimage20; }

/* 1カラム3枚*/
.container423 {
    display: grid;
    grid-template-columns: 0.4fr;
    grid-template-rows: 1fr 0.4fr 0.4fr;
    gap: 5px;
    grid-auto-flow: row;
    justify-content: center;
    grid-template-areas:
        "photoimage30"
        "photoimage40"
        "photoimage50";
}

.photoimage30 { grid-area: photoimage30; }

.photoimage40 {
    grid-area: photoimage40;
    width: 60%;
    padding-top: 10%;
}

.photoimage50 {
    grid-area: photoimage50;
    width: 80%;
    margin: 5% 0% 0% 30%;
}
}
/*===============================================
tablet
===============================================*/
@media (max-width: 834px) {
.text01 {
    font-size: 0.9em;
    line-height: 23px;
    width: 100%;
    margin: 0 auto;
    text-align: right;
}

.text01a {
    font-size: 0.9em;
    line-height: 23px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.text01c {
    font-size: 0.9em;
    line-height: 23px;
    width: 100%;
    margin: 0 auto;
    text-align: right;
}
}
/*===============================================
SMP
===============================================*/
@media (max-width: 425px) {
.container422 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 50px 10px;
    grid-auto-flow: row;
    justify-content: center;
    justify-items: center;
    grid-template-areas:
        "photoimage10"
        "photoimage20";
    padding-top: 10%;
    margin: 3%;
}

.text01 {
    font-size: 1.0em;
    line-height: 20px;
    width: 100%;
    margin: 0 auto;
    text-align: right;
    padding-top: 1%;
    font-family: serif;
    padding-bottom: 5%;
}

.container423 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 0.5fr 0.5fr;
    gap: 5px;
    grid-auto-flow: row;
    justify-content: center;
    grid-template-areas:
        "photoimage30"
        "photoimage40"
        "photoimage50";
    margin: 3%;
}
.photoimage50 {
    grid-area: photoimage50;
    width: 80%;
    margin: 5% 0% 0% 20%;
}

.text02 {
    font-size: 1.0em;
    line-height: 20px;
    width: 100%;
    margin: 0 auto;
    text-align: right;
    padding-top: 1%;
    font-family: serif;
    padding-bottom: 5%;
}

.parent {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 20px;
    justify-content: center;
    margin: 3%;
}
section {
    max-width: 300px;
    margin: 0 auto;
    padding-top: 10%;
    padding-bottom: 20%;
}
}