@charset "utf-8";@charset "UTF-8";
.background {
    background-color: #00AEEB;
    padding: 1%;
    text-align: center;
    font-size: 1.5em;
    color: white;
}

.image {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.image img {
	display: block;
	width: 100%;
	height: auto;
}

.box {
   padding-top:5%;
   padding-bottom:5%;
}

.box2 {
   text-align:center;
   padding-top:8%;
   padding-bottom:3%;
}

.box3 {
   padding-top:5%;
   padding-bottom:5%;
}

/* ライン */
.line01 {
    border-top: 1px solid #555;
    margin: 0 auto;
    width: 30em;
    margin-top: 3%;
}

/* ボタン*/

.border {
    border: solid 0.5px;
    /* background-color: #fff; */
    margin: 0 auto;
    padding: 0% 2% 0% 2%;
    font-size: 0.9em;
    /* color: #000000; */
}

/* テキスト */

.text01 {
    font-size: 1.1em;
    line-height: 25px;
    width: 90%;
    margin: 0% auto;
    text-align: center;
    padding: 3%;
    font-family: 'Yu Gothic UI', YuGothic, 'Yu Gothic', sans-serif;
}

.text02 {
    font-size: 1.1em;
    line-height: 25px;
    width: 90%;
    margin: 0% auto;
    text-align: right;
    padding-bottom: 5%;
    font-family: 'Yu Gothic UI', YuGothic, 'Yu Gothic', sans-serif;
}

.font01 {
    font-size: 3.5em;
    text-align: center;
    font-family: Gill Sans, Gill Sans MT, Calibri, sans-serif;
    padding-top: 5%;
}

.marker_text-decoration {
    text-decoration: underline;
    text-decoration-color: #00AEEB;
    text-decoration-thickness: 0.5em;
    text-decoration-skip-ink: none;
    text-underline-offset: -0.25em;
}

section {
  max-width: 350px;
  margin: 0 auto;
  padding-bottom:3%;
}

/* ボタン1*/

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.2em;
    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;
}

/* ボタン2*/

a.btn_04 {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 200px;
    margin: auto;
    padding: 1rem 4rem;
    font-weight: bold;
    border: 1px solid #00AEEB;
    background: #00AEEB;
    color: #fff;
    border-radius: 100vh;
    transition: 0.5s;
}

a.btn_04:hover {
	color: #222222;
	background: #fff;
}

/*1カラム*/

.containersof0204 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas: "textaria";
    justify-items: center;
    margin-top: 5%;
}
.textaria { grid-area: textaria; 
   width:40%;
}


/* 3カラム*/

.containersof0206 {
    display: grid;
    grid-template-columns: 0.3fr 0.3fr 0.3fr;
    grid-template-rows: 1fr;
    gap: 10px 10px;
    grid-auto-flow: row;
    justify-content: center;
    grid-template-areas: "photoimage30 photoimage40 photoimage50";
    padding-bottom: 1%;
}

.photoimage30 { grid-area: photoimage30; }

.photoimage40 { grid-area: photoimage40; }

.photoimage50 { grid-area: photoimage50; }


.parent {
    display: grid;
    grid-template-columns: repeat(1, 0.4fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 5px;
    justify-items: center;
    justify-content: center;
    padding: 2%;
}
}
/*===============================================
tablet
===============================================*/
@media (max-width: 768px) {
section {
    max-width: 350px;
    margin: 0 auto;
    padding: 3%;
}
}
/*===============================================
SMP
===============================================*/
@media (max-width:430px) {
section {
        max-width: 300px;
        margin: 0 auto;
        padding: 5%;
}

.box {
        padding-top: 8%;
        padding-bottom: 15%;
}

.box2 {
   padding-top:20%;
   padding-bottom:12%;
}
.text01 {
    font-size: 1.1em;
    line-height: 25px;
    width: 100%;
    margin: 0% auto;
    text-align: center;
    padding: 3%;
    font-family: 'Yu Gothic UI', YuGothic, 'Yu Gothic', sans-serif;
}

.text02 {
    font-size: 1.1em;
    line-height: 22px;
    width: 90%;
    margin: 0% auto;
    text-align: right;
    padding-bottom: 10%;
    font-family: 'Yu Gothic UI', YuGothic, 'Yu Gothic', sans-serif;
}

.parent {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 5px;
    justify-items: center;
    justify-content: center;
    padding: 5%;
}
.containersof0204 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas: "textaria";
    justify-items: center;
    margin-top: 15%;
    margin-bottom: 10%;
}
.textaria {
    grid-area: textaria;
    width: 80%;
}
}