@charset "utf-8";
/* CSS Document */

:root {
  --border-orange: 1px solid #62bec5;
  --orange: #e86100;
  --bg-coler-origin: rgb(15, 190, 182);
  --bg-coler: linear-gradient(
    132deg,
    rgb(234 245 113) 0%,
    rgb(15 190 182) 100%
  );
  --bg-btn: #ff9901;
  --color-bk: #222222;
}

/* 共通スタイル------------------------- */
body {
  font-family: "Lucida Grande", "Lucida Sans Unicode",
    "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo,
    "ＭＳ Ｐゴシック", Helvetica, Arial, Verdana, sans-serif;
  font-size: 1rem;
  font-feature-settings: "palt";
  line-height: 1.5;
  color: var(--color-bk);
  background: #fff;
  height: 100%;
  margin: 0;
  box-sizing: border-box;
  position: relative;
}

ul,
ol {
  list-style: none;
}

/*header--------------------------------*/

.title-wrap {
  background: url(../images/header_bg.webp);
  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;
}

.sp-logo {
  display: block;
  width: 100%;
  max-width: 250px;
  background: var(--bg-coler-origin);
  background: var(--bg-coler);
  padding: 20px;
}

.title-text-area {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 3rem;
  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;
  /*font-size: 3rem;*/
  line-height: 1.2;
  font-weight: bold;
  color: #222;
}

.title-left-side .h1-title ul {
  padding: 0;
  margin: 0;
}

.title-left-side .h1-title ul li:first-child {
  margin-top: 2rem;
  margin-right: 10px;
  font-size: 1.8rem;
}

.title-left-side .h1-title ul li:nth-child(2) {
  font-size: 3.3rem;
}

.title-left-side .h1-title ul li span {
  color: var(--orange);
  background: rgb(255, 153, 1);
  background: linear-gradient(132deg, rgb(216 228 79) 0%, rgb(15 190 182) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-left-side ul.label {
  background: #eee;
  width: 68%;
  color: #212121;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  line-height: 1.5;
  margin: 1.2rem 0 0;
  border: 1px solid #8d8d8d;
}

.title-left-side ul.label li {
  font-size: 1.6rem;
}

.title-left-side ul.label li.small {
  font-size: 0.75rem;
  padding-left: 10px;
}

.title-left-side .title-date {
  font-size: 1.6rem;
  margin: 0;
}

.title-left-side ul.title-date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
}
.title-left-side .title-date li span {
  font-size: 3rem;
}

.title-left-side ul.title-date li:nth-child(2) {
  font-size: 1.275rem;
  line-height: 1.2;
}

.btn-wrap-head {
  margin: 10px 0;
  width: 75%;
}

.title-right-side {
  width: 35%;
  text-align: right;
  z-index: 10;
}
.adTxt {
  background: #fcfff1;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 1rem;
  border: 2px dotted #40caa7;
  width: 68%;
  text-align: center;
}

.square {
  height: 400px;
  width: 480px;
  background: #00bcdd1c;
  margin-top: 9vh;
}
.square2 {
  height: 300px;
  width: 320px;
  background: #91ff003b;
  margin: 5rem 0 0 2rem;
  position: absolute;
}
.square3 {
  height: 280px;
  width: 300px;
  background: #ebff043b;
  margin: 14rem 0;
  position: absolute;
  right: 2rem;
}
.square4 {
  height: 300px;
  width: 280px;
  background: #75d5e627;
  margin: 20rem 0 0 1rem;
  position: absolute;
}

/*opアニメーション*/
.shutter {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
  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: #fff;
}

.read-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  /*background-color: #eeeeee5c;*/
  background: var(--bg-coler);
}

.read-wrap p {
  padding: 0 10%;
  color: #171717;
}

img.readBnr {
  width: 82%;
  margin: 0 auto;
}

.list-blk {
  margin: 0;
  padding: 20px 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;
  background-color: #ffffffab;
  border: var(--border-orange);
}

li.img-area {
  overflow: hidden;
  width: 240px;
  height: auto;
}

.img-area img:hover {
  transform: scale(1.2, 1.2);
  transition: 1s all;
}

.list-blk ul.list-left .prof-area {
  width: 76%;
  margin-right: 20px;
}

.list-blk ul.list-left .prof-area .name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.list-blk ul.list-left .prof-area .seminar-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #e86100;
  font-weight: bold;
}
.list-blk ul.list-left .prof-area .schedule {
  margin: 0;
  position: relative;
  font-weight: normal;
  font-size: 1.5rem;
  background-color: #5fc792;
  color: #fff;
  padding: 10px 0 10px 40px;
  margin-bottom: 20px;
}

.list-blk ul.list-left .prof-area .schedule:before {
  content: "";
  height: 110%;
  width: 3px;
  display: block;
  position: absolute;
  left: 14px;
  top: -3px;
  margin: auto;
  background-color: #fff;
  transform: rotate(356deg);
}
.list-blk ul.list-left .prof-area .schedule:after {
  content: "";
  height: 116%;
  width: 3px;
  display: block;
  position: absolute;
  left: 14px;
  top: -6px;
  margin: auto;
  background-color: #fff;
  transform: rotate(340deg);
}

.list-blk02 {
  margin: 0;
  padding: 20px 0;
  color: var(--color-bk);
  width: 100%;
}

.list-blk02 .list-close {
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  background: #eeeeee;
  font-size: 1.625rem;
  text-align: center;
  color: #171717;
}

.list-blk02 .notes {
  font-size: 0.8rem;
  margin: 1rem;
  text-align: center;
}

/*プロフィールac*/
.acbox {
  width: 100%;
  font-size: 0px; /* ラベルと開く部分を分離する時は数値を入れる */
  margin: 0.5rem auto;
}
.acbox label {
  width: 23%;
  font-size: 0.875rem;
  background: #5fc792;
  position: relative;
  display: block;
  padding: 6px 7px;
  cursor: pointer;
  color: #fff;
  /*box-shadow: 0 4px 0 0 rgb(0 0 0 / 11%);*/
  /*border-radius: 3px;*/
}
.acbox label:hover {
  background-color: #e86100;
  color: #fff;
  box-shadow: none;
}
.acbox input {
  display: none;
}
.acbox label:after {
  color: #fff;
  content: "▼";
  position: absolute;
  top: 50%;
  right: 6px;
  margin-top: -10px;
}
.acbox input:checked ~ label::after {
  content: "▲";
}
.acbox div {
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.2s; /* 開閉スピードの設定 */
}
.acbox input:checked ~ div {
  height: auto;
  padding: 18px; /* 開いた部分の枠内の余白 */
  border-radius: 0px;
  background: #fff; /* 開いた部分の背景色 */
  opacity: 1;
  border: 1px dashed #e86100;
}
.acbox input:checked ~ label {
  background: #e86100; /* クリック後のラベルの背景色 */
  box-shadow: none;
  border-radius: 3px 3px 0 0;
}
.acbox-under {
  font-size: 0.875rem; /* 開いた部分の文字サイズ */
  color: #212121; /* 開いた部分の文字色 */
}

.list-wht {
  margin: 0;
  color: var(--color-bk);
  width: 100%;
  position: relative;
  padding: 20px 0 0;
}

.list-wht .radius {
  background: var(--bg-coler-origin);
  background: var(--bg-coler);
  padding: 20px 0;
}

.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;
  background: #fff;
}

.box01 {
  position: relative;
  margin: 1em 0 1.5rem;
  padding: 25px 10px 7px;
  border: dashed 1px #5fc792;
}
.box01 .box-title {
  position: absolute;
  display: inline-block;
  top: -1px;
  left: -1px;
  padding: 0 9px;
  height: 25px;
  line-height: 25px;
  font-size: 0.875rem;
  background: #5fc792;
  color: #ffffff;
}
.box01 p {
  font-size: 0.9rem;
}

.list-wht ul.list-left .prof-area {
  width: 76%;
  margin-left: 20px;
}

.list-wht ul.list-left .prof-area .name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.list-wht ul.list-left .prof-area .seminar-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #e86100;
  font-weight: bold;
}

.list-wht ul.list-left .prof-area .schedule {
  margin: 0;
  position: relative;
  font-weight: normal;
  font-size: 1.5rem;
  background-color: #5fc792;
  color: #fff;
  padding: 10px 0 10px 40px;
  margin-bottom: 20px;
}

.list-wht ul.list-left .prof-area .schedule:before {
  content: "";
  height: 110%;
  width: 3px;
  display: block;
  position: absolute;
  left: 14px;
  top: -3px;
  margin: auto;
  background-color: #fff;
  transform: rotate(358deg);
}
.list-wht ul.list-left .prof-area .schedule:after {
  content: "";
  height: 116%;
  width: 3px;
  display: block;
  position: absolute;
  left: 14px;
  top: -6px;
  margin: auto;
  background-color: #fff;
  transform: rotate(340deg);
}

.prof {
  font-size: 0.9rem;
}

.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;
  line-height: 54px;
  outline: none;
}
.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
}
.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.button {
  position: relative;
  z-index: 2;
  background-color: var(--bg-btn);
  border: 1px solid var(--bg-btn);
  color: #fff;
  font-size: 1.8rem;
  line-height: 50px;
  margin-bottom: 15px;
  padding-top: 6px;
}
.button:hover {
  background-color: #fff;
  border-color: var(--bg-btn);
  color: var(--bg-btn);
}
.button::before,
.button::after {
  top: 0;
  width: 50%;
  height: 100%;
  background-color: var(--bg-btn);
}
.button::before {
  right: 0;
}
.button::after {
  left: 0;
}
.button:hover::before,
.button:hover::after {
  width: 0;
  background-color: var(--bg-btn);
}

.btn-wrap-blk {
  padding: 15px;
  color: var(--color-bk);
}

.btn-wrap p,
.btn-wrap-blk p {
  font-size: 1.5rem;
}

.close-btn-head {
  border: 2px solid #ccc;
  background: #eee;
  text-align: center;
  width: 90%;
  padding: 10px;
  font-size: 1.2rem;
  color: #ccc;
}

.close-btn {
  border: 2px solid #ccc;
  background: #eee;
  text-align: center;
  width: 90%;
  margin: 20px auto;
  padding: 10px;
  font-size: 1.25rem;
  color: #999;
}

p.deadline {
  text-align: center;
  font-size: 1.5rem;
  color: #171717;
}

.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}

.finalsection {
  background: url(../images/summary_bg.webp);
  background-size: cover;
  width: 100%;
}

.summary-wrap {
  margin: 50px 0;
  width: 100%;
  padding: 20px 0;
  color: var(--color-bk);
}

.summary-wrap .text-area {
  background: #ffffffab;
  min-width: 320px;
  width: 80%;
  margin: 0 auto;
  padding: 40px;
  line-height: 2;
  border: var(--border-orange);
}

.summary-wrap .text-area h3 {
  text-align: center;
  color: #171717;
  font-size: 1.875rem;
  font-weight: lighter;
}

.summary-wrap .text-area .summary-text {
  color: #171717;
}

.summary-wrap .text-area .summary-text span {
  background: #e86100;
  padding: 3px 8px;
  text-align: center;
  font-size: 0.9rem;
  margin-inline-end: 10px;
  color: #fff;
}

.summary-wrap p.kome {
  color: #171717;
  line-height: 1.4;
  margin-top: 12px;
}

.helpdesk-wrap {
  background-color: #eeeeee;
  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: #171717;
}
.helpdesk-wrap .helpdesk-text .info-text {
  font-size: 1.25rem;
  color: #171717;
}

.helpdesk-wrap .mail-link {
  margin: 20px 0;
}

.helpdesk-wrap .mail-link a {
  display: block;
  text-decoration: none;
  color: var(--orange);
  border: 1px solid #e86100;
  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.3;
}

.border {
  border-bottom: 1px solid #8d8d8d;
}

/*---- 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;
}

footer {
  text-align: center;
  color: #fff;
  background: var(--bg-coler-origin);
  background: var(--bg-coler);
}

/*.fixed {*/
/*position: fixed;
  top: 0; /*ページ上部の固定する位置*/
/*width: 100%;
  z-index: 9999;
}*/

.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.floatBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  background-color: #ff9901;
  color: #fff;
  font-size: 1.8rem;
  writing-mode: vertical-rl;
}
.floatBtn {
  width: 100%;
  height: 50px;
  /*position: fixed;
  bottom: 24px;
  right: 0px;*/
}

#page_top {
  /* width: 200px; */
  height: 50px;
  position: fixed;
  right: -200%;
  bottom: 170px;
  background: #ff9901;
  /* border-radius: 50%;*/
}
#page_top a {
  position: relative;
  display: block;
  height: 20rem;
  text-decoration: none;
  width: 3.5rem;
  color: #fff;
  padding: 10px;
  font-size: 1.5rem;
}
/*#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f102";
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -10px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}*/

/*@media---------------------------------------------------------*/

@media screen and (max-width: 1024px) {
  .read-wrap p {
    padding: 0 10px;
  }
}

@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.2rem;
  }

  .title-left-side ul.title-date {
    display: block;
  }

  .title-right-side {
    width: 35%;
    text-align: right;
    margin-right: 10px;
  }

  .title-left-side {
    width: 65%;
  }

  .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;
  }

  .acbox label {
    width: 33%;
  }
  img.readBnr {
    width: 100%;
  }
} /*end*/

@media screen and (max-width: 768px) {
  .sp-logo {
    padding: 15px 15px;
    margin: 0 auto;
    width: 54%;
  }

  .sp-logo a {
    display: block;
  }

  .title-wrap {
    background-size: cover;
  }
  .title-right-side {
    display: none;
  }
  .title-left-side {
    width: 90%;
    margin: 0 auto;
  }

  .title-left-side .h1-title ul li:nth-child(2) {
    font-size: 2.8rem;
    text-align: center;
  }

  .title-left-side ul.label {
    width: 80%;
    margin: 20px auto;
  }
  .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: 25%;
  }

  .summary-wrap .text-area .summary-text {
    font-size: 0.9rem;
  }

  .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: 2px solid #ccc;
    background: #eee;
    text-align: center;
    width: 100%;
    margin: 20px 0;
    padding: 10px;
    font-size: 1.25rem;
    color: #ccc;
  }

  .close-btn {
    border: 2px solid #ccc;
    background: #eee;
    text-align: center;
    width: 90%;
    margin: 20px auto;
    padding: 10px;
    font-size: 1.25rem;
    color: #ccc;
  }

  .btn-wrap-head {
    width: 80%;
    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%;
  }

  .adTxt {
    margin: 0 auto;
    width: 95%;
    font-size: 1rem;
  }
} /*end*/

@media screen and (max-width: 590px) {
  .title-wrap {
    background: url(../images/sp-bg-main.webp) center top no-repeat;
    width: 100%;
    background-size: cover;
    padding: 0 0 15px 0;
    position: relative;
    overflow: hidden;
  }

  .title-left-side ul.label {
    display: block;
    text-align: center;
    padding: 5px;
    font-size: 1.25rem;
    margin: 1rem auto;
  }

  .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;
  }

  /*タイトル*/

  .title-left-side .h1-title ul li:first-child {
    font-size: 1.6rem;
    text-align: center;
  }

  .title-left-side .h1-title ul li:first-child {
    margin: 1rem 0 0;
  }

  /*list*/

  .list-blk ul.list-left {
    display: block;
    width: 96%;
  }

  .list-blk ul.list-left .prof-area {
    width: 100%;
  }

  .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.1rem;
  }

  .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;
  }

  /*btn*/

  .btn-wrap p,
  .btn-wrap-blk p {
    font-size: 0.97rem;
  }

  .btn_txt {
    font-size: 1.25rem;
  }

  p.deadline {
    font-size: 1rem;
  }

  .button {
    font-size: 1.5rem;
  }

  /*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: 660px) {
  .sp_br {
    display: none;
  }
}

@media screen and (min-width: 800px) and (max-width: 845px) {
  .title-left-side .h1-title ul li:first-child {
    font-size: 1.6rem;
  }
  .title-left-side .h1-title ul li:nth-child(2) {
    font-size: 2.8rem;
  }
  .title-left-side .title-date li span {
    font-size: 2rem;
  }
  .title-right-side.timeLag img.logo {
    width: 80%;
  }
  .title-left-side ul.title-date li:nth-child(2) {
    font-size: 1rem;
  }
}

/*@media screen and (min-width: 667px) and (max-width: 736px) {
  .title-left-side .h1-title ul li:nth-child(2) {
    font-size: 2.8rem;
  }
}*/
@media screen and (min-width: 812px) and (max-width: 912px) {
  .sp-logo {
    width: 35%;
  }
}
