html {
  font-size: 62.5%;
} /* font-sizeは16pxの62.5%の10px */
body {
  font-size: 1.4rem;
  color: #5d5b5b;
} /*font-size : 14px と同等*/
body {
  font-family: 'Sawarabi Gothic', sans-serif;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
a {
  text-decoration: none;
  color: 438C38;
  transition: 0.3s;
}
a:hover {
  color: #96473a;
}
/*■■■■■■■■■■■■■■■
ヘッダー
■■■■■■■■■■■■■■■■*/
div#header {
  display: none;
}
/*■■■■■■■■■■■■■■■
角丸写真くくり
■■■■■■■■■■■■■■■■*/
#wrapper {
  width: 100%;
  margin: auto;
  display: block;
  text-align: center;
}
.box_wrapper {
  width: 100%;
  max-width: 950px;
  margin-top: 70px;
  margin-right: auto;
  margin-left: auto;
}
.box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(25% - 12px);
  margin: 6px 6px;
  flex-wrap: wrap;
  height: 230px;
  float: left;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  border-radius: 20px;
}
.photo_box {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
  border-radius: 20px;
}
.box:nth-child(1) {
  height: 470px;
  width: calc(50% - 12px);
}
.box:nth-child(3) {
  background-color: 438C38;
}
.box:nth-child(8) {
  width: calc(50% - 12px);
}
.box:nth-child(1n+9) {
  border: 2px solid #438C38;
  width: calc(25% - 18px);
}
.box:nth-child(12) {
  border: none;
}
.info {
  width: 90%;
  margin: auto;
  color: #5d5b5b;
  letter-spacing: 1.0px;
}
.date {
  font-size: 1.2rem;
}
.info .title {
  font-size: 1.4rem;
  color: #438C38;
  font-weight: bold;
  margin-bottom: 7px;
}
.detail {
  font-size: 1.3rem;
}
li.sns {
  list-style: none;
  margin: auto;
}
li img {
  margin: 0 15px 0 0;
}
.clear {
  clear: both;
  float: none;
}
/*■■■■■■■■■■■■■■■
ロゴとメニュー
■■■■■■■■■■■■■■■■*/
.rogo {
  font-family: 'Brawler', serif;
  font-size: 3.0rem;
  color: white;
  margin: auto;
  letter-spacing: 1px;
}
.rogo p {
  font-size: 2.0rem;
}
ul#menu {
  text-align: left;
  font-size: 1.5rem;
  line-height: 3rem;
  font-weight: bold;
}
/*▼▼トップ以外のヘッダー▼▼*/
#lesson_top #header {
  display: block;
  background-color: #438C38;
  color: #FFF;
  width: 100%;
  border-bottom: #FFF 1px solid;
}
#lesson_top .rogo {
  font-family: 'Brawler', serif;
  font-size: 3.0rem;
  color: white;
  margin: auto;
  letter-spacing: 1px;
  text-align: center;
  padding: 25px 0 10px;
}
#header .rogo a {
  color: #FFF;
}
#header .rogo span {
  font-size: 1.6rem;
  margin: 0 0 0 4px;
}
#lesson_top ul#menu {
  width: 90%;
  max-width: 950px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#lesson_top #menu a {
  color: #FFF;
}
#lesson_top #menu a:hover {
  opacity: 0.6;
}
/*■■■■■■■■■■■■■■■
ロゴとメニュー*780px以下*
■■■■■■■■■■■■■■■■*/
@media only screen and (max-width: 780px) {
  .rogo {
    font-size: 2.3rem;
  }
  p {
    font-size: 1.8rem;
  }
  ul#menu {
    font-size: 1.3rem;
    line-height: 2.6rem;
  }
}
/*■■■■■■■■■■■■■■■
ロゴとメニュー*550px以下*
■■■■■■■■■■■■■■■■*/
@media only screen and (max-width: 550px) {
  div#header {
    background: #438C38;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #header .rogo {
    width: 100%;
    text-align: center;
    padding: 20px 0 10px 0;
    border-bottom: solid 1px #FFF;
    font-size: 2.9rem;
  }
  .max480 .rogo span {
    font-size: 1.6rem;
    margin: 0 0 0 4px;
  }
  ul#menu {
    display: flex;
    margin: 2% 5%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #header li {
    line-height: 1.8rem;
    letter-spacing: 1.0px;
    margin: 4px auto;
    color: white;
    border-right: 1px solid #FFF;
    text-align: center;
    width: calc(50% - 1px);
    padding: 3px 0 3px 0;
  }
  #header li:nth-child(even) {
    border-right: none;
  }
  #header li a {
    color: white;
    display: block;
  }
}
/*■■■■■■■■■■■■■■■
ABOUT
■■■■■■■■■■■■■■■■*/
div#about {
  margin-top: 70px;
  background-color: ECF3EB;
  border-top: medium solid #438C38;
  padding-bottom: 50px;
}
.ttl {
  margin-top: 50px;
  font-size: 3rem;
  font-family: 'Satisfy', cursive;
  font-weight: bold;
  color: 438C38;
  letter-spacing: 1.0px;
}
.caption {
  line-height: 3.8rem;
  margin-top: 20px;
}
img#mameman {
  display: block;
  margin: auto;
}
/*■■■■■■■■■■■■■■■
オリジナル
■■■■■■■■■■■■■■■■*/
div#original {
  border-top: medium solid #438C38;
  padding-bottom: 50px;
}
.max950 {
  max-width: 950px;
  display: flex;
  margin: auto;
}
.left {
  width: 50%;
  margin-top: 70px;
}
.right {
  width: 50%;
  margin-top: 70px;
  margin: auto;
}
.ori_ttl {
  font-family: 'Satisfy', cursive;
  font-size: 3.0rem;
  color: #438C38;
}
.ori_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(50% - 14px);
  margin: 6px 6px;
  flex-wrap: wrap;
  height: 230px;
  float: left;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  border-radius: 20px;
  position: relative;
}
.ori_box:nth-child(2):before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 18px solid #438C38;
}
.ori_set:nth-child(2) {
  flex-flow: row-reverse;
}
.ori_box:nth-child(2) {
  background-color: #438C38;
}
.ori_set:nth-child(2) .ori_box:nth-child(2):before {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 18px solid #438C38;
  left: auto;
}
.item {
  line-height: 2.4rem;
  margin: auto 5%;
  color: white;
}
/*■■■■■■■■■■■■■■■
アクセス
■■■■■■■■■■■■■■■■*/
div#access {
  margin-top: 70px;
  background-color: ECF3EB;
  border-top: medium solid #438C38;
  padding-bottom: 70px;
}
.max950_1 {
  max-width: 950px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 50px;
}
.contener {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 0.8rem;
  line-height: 38px;
  margin-top: 40px;
  color: #5d5b5b;
}
div#map {
  width: 64%;
  height: 470px;
  border-radius: 20px;
  background-color: #d3d6d6;
}
.tenpo {
  width: 35%;
  border-radius: 20px;
  margin-left: 1%;
  background-image: url(https://www.marumitsu.pro/soramame/image/2020_newHP/DSC_0283.jpg);
  background-size: cover;
  background-position: center center;
}
.address {
  width: 50%;
  text-align: left;
  margin: 5% 0 0 0;
  line-height: 2.8rem;
  color: #5d5b5b;
}
.way {
  width: 50%;
  text-align: left;
  margin: 5% 0 0 0;
  font-size: 1.3rem;
  line-height: 2.6rem;
  color: #5d5b5b;
}
/*■■■■■■■■■■■■■■■
フッター
■■■■■■■■■■■■■■■■*/
div#footer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 140px;
  position: absolute;
}
.rogo1 {
  font-family: Minion Pro;
  font-size: 2.4rem;
  color: #438C38;
  letter-spacing: 1px;
  text-align: center;
  margin: 2% auto 0;
  width: 100%;
}
.bottom {
  font-size: 1.2rem;
  color: white;
  /* height: 16px; */
  background-color: #9e9d9d;
  text-align: center;
  letter-spacing: 1.0px;
  width: 100%;
  padding: 7px 0;
}
#footer ul#menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.3rem;
  letter-spacing: 0.1ex;
  width: 90%;
  margin: 0 auto 1%;
  font-weight: 500;
  color: #5d5b5b;
  max-width: 960px;
}
#footer a {
  color: #5d5b5b !important;
}
#footer li {
  margin: auto;
}
.arrow {
  width: 18px;
  height: 18px;
  border: 5px solid;
  border-color: #D9E8D7 #D9E8D7 transparent transparent;
  transform: rotate(-45deg);
  margin: auto;
}
.fright {
  width: 90%;
  margin: auto;
  max-width: 950px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.2rem;
  border-top: solid 1px currentColor;
  padding: 15px 0 15px 0;
}
ul.linkbox {
  width: 20%;
}
#footer .linkbox a {
  text-decoration: underline;
}
ul.linkbox.linkbrand {
  width: 15%;
}
ul.linkbox.linkshop2 {
  width: 25%;
}
.linkbox li {
  margin: 0 0 4px 0 !important;
}
/*■■■■■■■■■■■■■■■
レッスンページ
■■■■■■■■■■■■■■■■*/
div#lesson {
  width: 100%;
  color: #5d5b5b;
}
.banner {
  width: 100%;
  background-color: #e4f4e2;
  color: #438C38;
  line-height: 100%;
  padding: 20px 0 20px;
  font-size: 2rem;
  text-align: center;
}
.banner span {
  display: block;
  margin: 0 0 10px 0;
  font-size: 2.7rem;
  font-family: 'Satisfy', cursive;
  padding: 30px 0 20px 0;
}
.banner p {
  font-size: 1.9rem;
  line-height: 130%;
  width: 90%;
  margin: auto;
  font-weight: 600;
}
#lesson .up {
  width: 90%;
  max-width: 950px;
  margin: 4% auto;
}
#lesson .photo {
  width: 55%;
  height: auto;
  border-radius: 20px;
}
#lesson .photo img {
  width: 100%;
  border-radius: 20px;
  height: auto;
}
#lesson .text {
  width: 40%;
  margin-left: 5%;
  line-height: 2.8rem;
  font-size: 1.4rem;
}
#lesson .down {
  width: 100%;
  background-color: ECF3EB;
}
#lesson .text_box {
  width: 90%;
  max-width: 950px;
  margin: auto;
}
#lesson .text_box .date {
  width: 50%;
  margin: 3% 5% 3% 0;
  font-size: 1.4rem;
}
#lesson .text_box .date {
  width: 50%;
  margin: 3% 5% 3% 0;
  font-size: 1.6rem;
}
.text_box .date p {
  font-size: 1.5rem;
  line-height: 230%;
  border-bottom: dotted 1px currentColor;
}
.date2 {
  width: 45%;
  margin: 3% 0;
  font-size: 1.5rem;
  line-height: 200%;
}
/*■■■■■■■■■■■■■■■
オリジナルページ
■■■■■■■■■■■■■■■■*/
#ori_wrapper {
  width: 100%;
  margin: auto;
  text-align: center;
  background-color: ECF3EB;
}
.contents {
  width: 100%;
  max-width: 950px;
  margin: auto;
  padding-bottom: 5%;
}
.itembox {
  width: 24%;
  margin: 0 1% 3% 0;
  transition: all 0.5s ease-in-out 0s;
}
.photo img {
  width: 100%;
  border-radius: 20px;
  height: auto;
}
.name {
  width: 100%;
  color: #5d5b5b;
}
.name p {
  font-size: 1.3rem;
  margin: 4%;
}
#ori_wrapper .title {
  font-size: 2.7rem;
  font-family: 'Satisfy', cursive;
  padding: 30px 0 20px 0;
  color: #438C38;
}
.itembox.clicked {
    width: 98%;
    position: fixed;
    max-height: 100vh;
    background: #FFF;
    max-width: 560px;
    box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.6);
    padding: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.clicked .photo {
    width: 100%;
    margin: auto;
    max-width: 560px;
}
/*■■■■■■■■■■■■■■■
*780px以下*
■■■■■■■■■■■■■■■■*/
@media only screen and (max-width: 780px) {
  .box:nth-child(1) {
    height: 372px;
  }
  .box {
    height: 180px;
  }
  .title {
    font-size: 1.4rem;
  }
  .detail {
    font-size: 1.2rem;
  }
  .ori_box {
    height: 180px;
  }
  .right {
    width: 50%;
    margin-top: 70px;
  }
  .caption {
    line-height: 30px;
    margin: 3% 10%;
  }
  .caption br {
    display: none;
  }
  .max950_1 {
    width: 98%;
  }
  div#map {
    height: 400px;
  }
  .address {
    margin: 3%;
    line-height: 30px;
    width: 44%;
  }
  .way {
    margin: 3%;
    line-height: 30px;
    width: 44%;
  }
  /*■■■■■■■■■■■■■■■
レッスン*780px以下*
■■■■■■■■■■■■■■■■*/
  #lesson .photo {
    width: 80%;
    height: auto;
    border-radius: 20px;
    margin: auto;
  }
  #lesson .text {
    width: 100%;
    margin: 15px auto;
    line-height: 2.8rem;
    font-size: 1.4rem;
  }
  #lesson .text br {
    display: none;
  }
  #lesson .text_box {
    width: 90%;
    margin: auto;
  }
  #lesson .text_box .date {
    width: 100%;
    margin: 3% auto 3%;
    font-size: 1.5rem;
  }
  .date2 {
    width: 100%;
    margin: 0 0 20px 0;
    font-size: 1.4rem;
    line-height: 180%;
  }
  /*■■■■■■■■■■■■■■■
オリジナル*780px以下*
■■■■■■■■■■■■■■■■*/
  .itembox {
    margin: 0 0.5% 3% 0.5%;
    width: 32.3333%;
  }
  #ori_wrapper .title {
    font-size: 2.0rem;
  }
}
/*■■■■■■■■■■■■■■■
*550px以下*
■■■■■■■■■■■■■■■■*/
@media only screen and (max-width: 550px) {
  .box_wrapper {
    margin-top: 5px;
  }
  .box:nth-child(1) {
    width: calc(100% - 12px);
  }
  .box {
    width: calc(50% - 12px);
  }
  .box:nth-child(3) {
    display: none;
  }
  .box:nth-child(5) {
    display: none;
  }
  .box:nth-child(6) {
    display: none;
  }
  .box:nth-child(1n+9) {
    width: calc(100% - 18px);
  }
  .box:nth-child(11) {
    display: none;
  }
  .max950 {
    flex-wrap: wrap;
  }
  div#about {
    margin-top: 0px;
  }
  .left {
    margin-top: 50px;
    width: 100%;
  }
  .right {
    margin-top: 30px;
    width: 100%;
  }
  div#access {
    margin-top: 30px;
  }
  div#map {
    width: 100%;
  }
  .tenpo {
    width: 100%;
    height: 205px;
    margin-top: 1%;
  }
  .address {
    width: 100%;
  }
  .way {
    width: 100%;
  }
  ul.linkbox {
    width: 100% !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .linkbox li {
    margin: 0 6px 4px 0px !important;
  }
  li.t {
    width: 100%;
    margin: 0 !important;
  }
}
/*■■■■■■■■■■■■■■■
オリジナル*480px以下*
■■■■■■■■■■■■■■■■*/
@media only screen and (max-width: 480px) {
  .itembox {
    width: 48%;
    margin: 0 auto;
  }
  #ori_wrapper .title {
    color: #438C38;
  }
  .clicked .photo {
    width: 100%;
    margin: auto;
  }
}