@charset "UTF-8";
/* CSS Document */
html {
  font-size: 100%;
}
body {
  color: #353333;
  background-color: #B7DFCF;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 0.8rem;
}
img {
  max-width: 100%;
}
.wrapper {
  max-width: 850px;
  margin: auto;
  padding: 1rem;
  background-color: #fff;
  border-radius: 20px;
}
h1 {
  font-size: 1.2em;
  background-image: url("../img/bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-top: 1rem;
  padding: 1rem;
}
h1 a {
  text-decoration: none;
  color: #8B5824;
  border-bottom: 3px #8B5824 dotted;
}
h1 a:hover {
  background-color: #fff;
  border-bottom: 3px #8B5824 solid;
  border-radius: 20px;
}
h2 img {
  max-width: 200px;
  margin-top: 2rem;
}
h3 {
  margin: 3rem 0 1rem;
  background-color: #8B5824;
  color: #fff;
  text-align: center;
  border-radius: 5rem;
  max-width: 100%;
  opacity: 0.8
}
header, footer {
  text-align: center;
}
header img, footer img {
  max-width: 150px;
}
/* ------main--------- */
.soeda {
  border: 0.5rem double #FFF050;
  padding: 1rem;
  border-radius: 3rem;
}
/* 各コンテンツ */
section {
  min-height: 28rem;
}
.box_text {
  height: 28rem;
}
#box_content1, #box_content2, #box_content3, #box_content4, #box_content5 {
  display: flex;
  gap: 1rem;
  border: 1px solid #8B5824;
  border-radius: 20px;
  padding: 1rem;
}
.box_photo {
  width: 40%;
}
.box_text {
  width: 55%;
}
/* 各コンテンツボタン*/
.btn {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.6rem;
  margin-top: 1rem;
}
.btn a {
  text-decoration: none;
  color: #8B5824;
}
.sample {
  width: 100%;
  white-space: nowrap;
  border: #8B5824 1px solid;
  border-radius: 20px;
  text-align: center;
}
.btn1 {
  width: 100%;
  white-space: nowrap;
  text-align: center;
  border: 1px solid #DAF0F8;
  border-radius: 20px;
  background-color: #DAF0F8;
}
.btn2 {
  width: 100%;
  white-space: nowrap;
  text-align: center;
  border: #FCE6E7 1px solid;
  border-radius: 20px;
  background-color: #FCE6E7;
}
.btn3 {
  width: 100%;
  white-space: nowrap;
  text-align: center;
  border: #EEE5F0 1px solid;
  border-radius: 20px;
  background-color: #EEE5F0;
}
.btn4 {
  width: 100%;
  white-space: nowrap;
  text-align: center;
  border: #FCEFC5 1px solid;
  border-radius: 20px;
  background-color: #FCEFC5;
}
.btn5 {
  width: 100%;
  white-space: nowrap;
  text-align: center;
  border: #E6EEC4 1px solid;
  border-radius: 20px;
  background-color: #E6EEC4;
}
/* 各コンテンツ背景 */
#box_content1 {
  background-image: url(../img/1.png);
}
#box_content2 {
  background-image: url(../img/2.png);
}
#box_content3 {
  background-image: url(../img/3.png);
}
#box_content4 {
  background-image: url(../img/4.png);
}
#box_content5 {
  background-image: url(../img/5.png);
}
#box_content1, #box_content2, #box_content3, #box_content4, #box_content5 {
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100px;
}
/*----デスクトップ用------*/
@media(min-width:800px) {
  .box {
    display: flex;
    gap: 1rem;
  }
  section {
    width: 50%;
    height: auto;
  }
  .btn {
    font-size: 0.7rem;
  }
  .sample {
    padding: 0 0.7rem;
  }
  .btn1, .btn2, .btn3, .btn4, .btn5 {
    padding: 0 0.2rem;
  }
}