@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Philosopher&display=swap");

:root {
  --border-bluegreen: 1px solid #2ca6a9;
  --bluegreen: #2ca6a9;
  --bg-coler-origin: rgb(239, 158, 159);
  --bg-btn: #e8415e;
  --color-bk: #222222;
  --color-wht: #fff;
  --color-grn: #d2ebee;
}

/* 共通スタイル------------------------- */
body {
  font-family: "Philosopher", "sans-serif", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1rem;
  font-feature-settings: "palt";
  line-height: 1.5;
  color: var(--color-bk);
  background: var(--color-wht);
  height: 100%;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

/*header--------------------------------*/

.title-wrap {
  background: url("../images/header_bg.webp") left top no-repeat;
  width: 100%;
  background-size: cover;
  padding: 0 0 15px 0;
  position: relative;
  overflow: hidden;
}

header.title-wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-animation: zoom 10s 1;
  animation: zoom 10s 1;
  animation-fill-mode: forwards;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}

.sp-logo {
  display: block;
  width: 100%;
  max-width: 250px;
  padding: 20px;
  background: var(--color-wht);
}

.title-text-area {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: flex-start;
}

.title-left-side {
  width: 100%;
  vertical-align: top;
  margin-left: 10px;
  z-index: 20;
}
.title-left-side .h1-title {
  margin: 0;
  padding: 2rem 0 0 0;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-wht);
  position: relative;
  width: 90%;
}

span.sub_title {
  font-size: 2rem;
  text-align: left;
}

.title-left-side ul.label {
  background: var(--color-wht);
  width: 68%;
  color: var(--bluegreen);
  display: flex;
  justify-content: center;
  padding-top: 5px;
  line-height: 1.2;
  margin: 1.5rem 0 0;
  border: 1px solid;
}

.title-left-side ul.label li {
  font-size: 1.875rem;
}

.title-left-side ul.label li.small {
  font-size: 0.75rem;
  padding-left: 10px;
}

.title-left-side .title-date {
  font-size: 1.75rem;
  margin: 1rem 0 0;
}
.title-left-side .title-date li span {
  font-size: 3rem;
}

.title-left-side ul.title-date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--color-wht);
}

.title-left-side ul.title-date li:nth-child(2) {
  font-size: 1.5rem;
  line-height: 1.2;
}

.btn-wrap-head {
  margin: 10px 0;
  width: 75%;
}

.title-right-side {
  width: 34%;
  text-align: right;
  z-index: 10;
}

.title-right-side img.move01 {
  animation-name: move01;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-direction: alternate;
  animation-duration: 5s;
  pointer-events: none;
}

@keyframes move01 {
  0% {
    transform: scale(1.4);
    opacity: 0;
  }

  100% {
    transform: scale(2);
  }
}

.title-right-side img.move01 {
  padding-top: 115px;
  width: 100%;
}

/*--- ripls top ---*/
.ripples-top div {
  position: absolute;
  left: 72%;
  top: 45%;
  width: 0;
  height: 0;
  border: solid 2px #88ffe5;
  border-radius: 50%;
  opacity: 0;
  animation: ripples_anim 4s linear infinite;
  z-index: 1;
}

.ripples-top div:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border: solid 2px #88ffe5;
  border-radius: 50%;
  opacity: 0;
  animation: ripples_anim 4s linear infinite 0.1s;
}

.ripples-top div:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border: solid 1px #88ffe5;
  border-radius: 50%;
  opacity: 0;
  animation: ripples_anim 5s linear infinite 0.2s;
}

@keyframes ripples_anim {
  0% {
    opacity: 1;
  }

  50% {
    transform: translate(-200px, -200px);
    width: 400px;
    height: 400px;
    opacity: 0;
  }
}

/*--- ripls ---*/
.ripples div {
  position: absolute;
  left: 79%;
  top: 35%;
  width: 0;
  height: 0;
  border: solid 2px var(--bg-btn);
  border-radius: 50%;
  opacity: 0;
  animation: ripples_anim 4s linear infinite;
  z-index: 1;
}

.ripples div:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border: solid 2px var(--bg-btn);
  border-radius: 50%;
  opacity: 0;
  animation: ripples_anim 4s linear infinite 0.1s;
}

.ripples div:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border: solid 2px var(--bg-btn);
  border-radius: 50%;
  opacity: 0;
  animation: ripples_anim 4s linear infinite 0.2s;
}

@keyframes ripples_anim {
  0% {
    opacity: 1;
  }

  50% {
    transform: translate(-200px, -200px);
    width: 400px;
    height: 400px;
    opacity: 0;
  }
}

/*opアニメーション*/
.shutter {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: var(--color-wht);
  z-index: 99;
  -webkit-animation: byeShutter 2.4s forwards;
  animation: byeShutter 1.4s forwards;
}
.op_logo {
  position: absolute;
  width: 200px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-animation: logo 0.8s forwards;
  animation: logo 0.8s forwards;
  animation-delay: 0.2s;
}
@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}
@keyframes logo {
  0% {
    opacity: 1;
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: scale(0.8);
  }
}

/*main--------------------------------*/

main {
  color: var(--color-wht);
}

.read-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  background-color: rgb(255 249 182 / 26%);
}

.read-wrap p {
  padding: 0 10%;
  color: var(--color-bk);
}

.bgcircle {
  background: url("../images/bg_circle.webp") right center no-repeat;
  padding: 2.5rem 0 2rem;
  margin: 20px 0;
}

.list-blk {
  margin: 0;
  color: var(--color-bk);
  width: 100%;
  position: relative;
}
.list-blk ul.list-left {
  max-width: 1000px;
  width: 96%;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

li.img-area {
  z-index: 10;
}

li.img-area img {
  border-radius: 50%;
}

.list-blk ul.list-left .prof-area {
  width: 76%;
  padding-right: 25px;
}

.list-blk ul.list-left .prof-area .name {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.list-blk ul.list-left .prof-area .seminar-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--bluegreen);
  font-weight: bold;
  line-height: 1.3;
}
.list-blk ul.list-left .prof-area .schedule {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0.2rem 0.2rem 0.2rem 0.6rem;
  color: var(--bg-btn);
  border-left: 6px solid;
}

.list-blk02 {
  margin: 0;
  padding: 0;
  color: var(--color-bk);
  width: 100%;
}

.list-blk02 .list-close {
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  background-color: rgb(255 249 182 / 26%);
  font-size: 1.625rem;
  text-align: center;
  color: var(--color-bk);
}

.list-wht {
  background: linear-gradient(138deg, #d2ebee 25%, var(--color-wht) 25%);
  margin: 0;
  color: var(--color-bk);
  width: 100%;
  position: relative;
}

.list-wht ul.list-left {
  max-width: 1000px;
  width: 96%;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.list-wht ul.list-left .prof-area {
  width: 76%;
  margin-left: 20px;
  background: var(--color-wht);
}

.list-wht ul.list-left .prof-area .name {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.list-wht ul.list-left .prof-area .seminar-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--bg-btn);
  font-weight: bold;
  line-height: 1.3;
}
.list-wht ul.list-left .prof-area .schedule {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0.2rem 0.2rem 0.2rem 0.6rem;
  color: var(--bluegreen);
  border-left: 6px solid;
}

.list-wht ul.list-left .prof-area .schedule span {
  font-size: 1.5rem;
  color: var(--bluegreen);
}

.prof {
  font-size: 0.825rem;
  background: var(--color-wht);
}

.btn-wrap,
.btn-wrap-blk {
  text-align: center;
  margin: 0 auto;
  padding: 30px 0 0;
  width: 75%;
}

.button {
  display: inline-block;
  width: 90%;
  height: 60px;
  text-align: center;
  text-decoration: none;
  background-color: var(--color-wht);
  border: 6px double var(--bg-btn);
  color: var(--bg-btn);
  font-size: 1.6rem;
  line-height: 50px;
  margin-bottom: 15px;
  padding-top: 2px;
  transition: 0.5s all;
}

.button:hover {
  letter-spacing: 0.5em;
  transition: 0.5s all;
  background: var(--bg-btn);
  color: var(--color-wht);
  text-indent: 0.5em;
}

.btn-wrap-blk {
  padding: 15px;
  color: var(--color-bk);
}

.close-btn-head {
  border: 6px double #bfbfbf;
  background: #eee;
  text-align: center;
  width: 90%;
  padding: 10px;
  font-size: 1.4rem;
  color: #ccc;
}

.close-btn {
  border: 6px double #bfbfbf;
  background: #eee;
  text-align: center;
  width: 90%;
  margin: 20px auto;
  padding: 10px;
  font-size: 1.4rem;
  color: #ccc;
}

p.deadline {
  text-align: center;
  font-size: 1.5rem;
  color: var(--color-bk);
}

.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb50 {
  margin-bottom: 50px;
}

.finalsection {
  background: var(--color-wht);
  width: 100%;
}

.summary-wrap {
  background: url(../images/bg-listwrap.webp);
  background-size: cover;
  width: 100%;
  margin: 0 auto 50px;
  padding: 20px 0;
  color: var(--color-bk);
}

.summary-wrap .text-area {
  background: var(--color-wht);
  min-width: 320px;
  width: 80%;
  margin: 0 auto;
  padding: 40px;
  line-height: 2;
  border: var(--border-pink);
}

.summary-wrap .text-area h3 {
  text-align: center;
  color: var(--color-bk);
  font-size: 1.875rem;
  font-weight: lighter;
}

.summary-wrap .text-area .summary-text {
  color: var(--color-bk);
}

.summary-wrap .text-area .summary-text span {
  background: var(--bluegreen);
  padding: 3px 5px;
  text-align: center;
  font-size: 0.9rem;
  margin-inline-end: 10px;
  color: var(--color-wht);
}

.summary-wrap p.kome {
  color: var(--color-bk);
  line-height: 1.4;
  margin-top: 12px;
}

.helpdesk-wrap {
  background-color: rgb(255 249 182 / 26%);
  width: 100%;
  margin: 0 auto;
  padding-top: 20px;
}

.helpdesk-wrap .helpdesk-text {
  display: flex;
  justify-content: center;
}

.helpdesk-wrap .helpdesk-text .title-text {
  font-size: 1.75rem;
  width: 15%;
  color: var(--color-bk);
}
.helpdesk-wrap .helpdesk-text .info-text {
  font-size: 1.25rem;
  color: var(--color-bk);
}

.helpdesk-wrap .mail-link {
  margin: 20px 0;
}

.helpdesk-wrap .mail-link a {
  display: block;
  text-decoration: none;
  color: var(--bluegreen);
  border: var(--border-bluegreen);
  padding: 10px;
  width: 80%;
  text-align: center;
}

.helpdesk-wrap .mail-link a img {
  display: inline;
  vertical-align: middle;
  padding-right: 10px;
}
.mail-link a:hover {
  opacity: 0.5;
}

.notes {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 2rem;
}

.border {
  border-bottom: 2px solid var(--bluegreen);
}

/*---- fadeUp ----*/

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.fadeUpTrigger {
  opacity: 0;
}

/*---- fadeleft ----*/

.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右から */

.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*--- extend ---*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*はみ出た要素を隠す*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*左から右*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-grn); /*伸びる背景色*/
}
@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*右から左*/
.bgRLextend::before {
  animation-name: bgRLextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-grn); /*伸びる背景色*/
}
@keyframes bgRLextendAnime {
  0% {
    transform-origin: right;
    transform: scaleX(0);
  }
  50% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}

.fadeLeftTrigger,
.fadeRightTrigger,
.fadeInTrigger,
.fadeUpTrigger,
.bgLRextendTrigger,
.bgRLextendTrigger {
  opacity: 0;
}

footer {
  text-align: center;
  background: var(--bluegreen);
  color: var(--color-wht);
}

/*@media---------------------------------------------------------*/

@media screen and (max-width: 1024px) {
  .read-wrap p {
    padding: 0 10px;
  }
  .title-right-side img.move01 {
    padding-top: 110px;
    width: 72%;
  }
}

@media screen and (max-width: 896px) {
  .title-left-side ul.label {
    padding: 10px;
    font-size: 1.5rem;
  }

  .title-left-side ul.label li {
    font-size: 1.5rem;
  }

  .title-left-side ul.title-date {
    display: block;
  }

  .title-right-side {
    width: 35%;
    text-align: right;
    margin-right: 10px;
  }

  .list-blk ul.list-left .prof-area .seminar-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .list-wht ul.list-left .prof-area .seminar-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .title-left-side {
    width: 65%;
    margin-left: 20px;
  }

  .list-blk02 .list-close {
    font-size: 1.4rem;
  }

  .summary-wrap .text-area h3 {
    font-size: 1.5rem;
  }

  .helpdesk-wrap .helpdesk-text .title-text {
    font-size: 1.4rem;
  }

  .info-text p {
    font-size: 1rem;
  }
  .ripples-top,
  .ripples {
    display: none;
  }
  span.sub_title {
    font-size: 1.8rem;
  }
  .sp-logo {
    width: 35%;
  }
  .pc_br {
    display: none;
  }
} /*end*/

@media screen and (max-width: 768px) {
  .sp-logo {
    display: block;
    padding: 15px 15px;
    margin: 0 auto;
    width: 35%;
  }

  .sp-logo a {
    display: block;
  }

  .title-wrap {
    background-size: cover;
  }
  .title-right-side {
    display: none;
  }
  .title-left-side {
    width: 100%;
    margin: 0 auto;
  }

  .title-left-side .h1-title {
    width: 82%;
    margin: 0 auto;
    font-size: 2.45rem;
    text-align: center;
    padding: 1rem 1rem 0;
  }

  .title-left-side ul.label {
    margin: 2rem auto 0;
  }
  .title-left-side ul.label li.small {
    font-size: 1rem;
  }
  .title-left-side ul.title-date {
    display: flex;
    justify-content: center;
  }

  /*タイトル*/

  .title-left-side .h1-title ul li:first-child {
    text-align: center;
  }

  .read-wrap p {
    font-size: 0.825rem;
    padding: 0;
  }

  .summary-wrap .text-area {
    width: 80%;
  }

  .summary-wrap .text-area ul li span {
    display: block;
    margin: 10px 0;
    width: 20%;
  }

  .summary-wrap .text-area .summary-text {
    font-size: 0.825rem;
  }

  .summary-wrap p.kome {
    font-size: 0.825rem;
  }

  .helpdesk-wrap .helpdesk-text .title-text {
    width: 18%;
  }

  .list-blk02 .list-close {
    font-size: 1.1rem;
  }

  .list-blk ul.list-left,
  .list-wht ul.list-left {
    width: 90%;
  }

  .close-btn-head {
    border: 5px solid #ccc;
    background: #eee;
    text-align: center;
    width: 100%;
    margin: 20px 0;
    padding: 10px;
    font-size: 1.25rem;
    border-radius: 10px;
    color: #ccc;
  }

  .close-btn {
    border: 5px solid #ccc;
    background: #eee;
    text-align: center;
    width: 90%;
    margin: 20px auto;
    padding: 10px;
    font-size: 1.25rem;
    border-radius: 10px;
    color: #ccc;
  }

  .btn-wrap-head {
    width: 68%;
    margin: 15px auto;
  }

  .btn-wrap,
  .btn-wrap-blk {
    padding: 0;
    margin: 20px auto;
  }

  .btn-wrap-blk {
    padding: 10px 0;
  }

  .list-blk ul.list-left .prof-area .schedule {
    font-size: 1.2rem;
  }
  .list-wht ul.list-left .prof-area .schedule {
    font-size: 1.2rem;
  }

  .button {
    width: 100%;
  }
} /*end*/

@media screen and (max-width: 590px) {
  .title-wrap {
    background: url("../images/sp-bg-main.webp") left top no-repeat;
  }

  .title-left-side ul.label {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 1.25rem;
  }

  .title-left-side ul.label {
    margin: 2rem auto 0;
  }

  .title-left-side ul.label li {
    font-size: 1rem;
  }

  .title-left-side ul.label li.small {
    font-size: 0.75rem;
  }

  .title-left-side ul.title-date {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
    text-align: center;
  }

  .title-left-side ul.title-date li:nth-child(2) {
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .sp-logo {
    display: block;
    padding: 15px 15px;
    margin: 0 auto;
    width: 45%;
  }

  /*タイトル*/

  .title-left-side .h1-title {
    width: 100%;
    text-align: center;
  }

  span.sub_title {
    font-size: 1.5rem;
    text-align: center;
  }

  .bgcircle {
    padding: 2rem 0 2rem;
    background: url(../images/bg_circle.webp) center bottom no-repeat;
    background-size: contain;
    margin-right: 0;
  }

  /*list*/

  .list-blk ul.list-left {
    display: block;
    width: 96%;
  }

  .list-blk ul.list-left .prof-area {
    width: 100%;
    padding: 0;
  }

  .list-wht ul.list-left .img-area {
    margin: 0 auto;
  }

  .list-blk ul.list-left .img-area img {
    margin: 0 auto;
  }

  .list-wht ul.list-left {
    max-width: 1000px;
    width: 96%;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: column-reverse;
  }

  .list-wht ul.list-left .prof-area {
    width: 100%;
    margin-left: 0;
  }
  .list-blk ul.list-left .prof-area .schedule,
  .list-wht ul.list-left .prof-area .schedule,
  .list-blk .list-close {
    font-size: 1.4rem;
    font-weight: bold;
  }

  .list-blk ul.list-left .prof-area .name,
  .list-wht ul.list-left .prof-area .name {
    font-size: 1.5rem;
  }

  .list-blk ul.list-left .img-area,
  .list-wht ul.list-left .img-area {
    width: 60%;
    margin: auto;
  }

  p.deadline {
    font-size: 1rem;
  }

  .button {
    font-size: 1.25rem;
  }

  /*summy*/

  .summary-wrap .text-area {
    width: 90%;
    padding: 40px 20px;
  }

  .summary-wrap .text-area ul li {
    margin-bottom: 20px;
    line-height: 1.4;
  }

  /*helpdesk*/
  .helpdesk-wrap {
    padding: 0 20px;
  }

  .helpdesk-wrap .helpdesk-text {
    display: block;
    justify-content: center;
    padding: 20px 0;
  }

  .helpdesk-wrap .helpdesk-text .title-text {
    width: 90%;
    text-align: center;
    font-size: 1.4rem;
    margin: 0 auto 10px;
  }

  .helpdesk-wrap .helpdesk-text .info-text {
    font-size: 1rem;
    text-align: center;
  }

  .helpdesk-wrap .mail-link a {
    width: 100%;
  }

  .summary-wrap .text-area h3 {
    font-size: 1.4rem;
  }
} /*end*/

@media screen and (min-width: 812px) {
  .sp_br {
    display: none;
  }
}

@media screen and (min-width: 812px) and (max-width: 912px) {
  .title-left-side .h1-title {
    font-size: 2rem;
  }
  .title-left-side {
    width: 65%;
    margin-left: 20px;
  }
}
