@charset "UTF-8";

:root {
  --base-color-ppl: #6879b9;
  --base-color-orn: #ec6c0e;
  --base-color-grn: #00af95;
  --base-color-mar: #b0453f;
  --bg-color: #fafafa;
  --bg-color-gry: #f2f2f2;
  --bg-color-clr: rgba(255, 255, 255, .85);
  --easing: cubic-bezier(0.25, 0, 0, 1);
}

/*-------------------------
__base_style
-------------------------*/
html, body{
  height: 100%;
  width: 100%;
}

html {
  scroll-padding-top: 134px;
}
@media screen and (max-width:767px) {
  html {
    scroll-padding-top: 84px;
  }
}

body {
  font-family: "Roboto", "Zen Kaku Gothic New", sans-serif;
  background-color: var(--bg-color);
}
@media screen and (min-width:768px) {
  body{
    min-width: 1280px;
    margin:0 auto;
  }
}

button, input, select, textarea {
  font-family:inherit;
}

.smt_on {
  display: none!important;
}
@media only screen and (max-width: 767px) {
  .smt_on {
    display: block!important;
  }
  .smt_off {
    display: none!important;
  }
}

/* タブメニュー用 */
.tab_panel_box {
  display: none;
}
.tab_panel_box.is-show {
  display: block;
}

/*-------------------------
__header
-------------------------*/
#header {
  width: 100%;
  box-sizing: border-box;
  padding-right: 130px;
  position: fixed;
  left: 0;
  top: 30px;
  z-index: 200;
}
@media only screen and (min-width: 768px) {
  #header {
    min-width: 1280px;
  }
}
#header > .inner {
  display: flex;
  justify-content: space-between;
  margin: 0 30px;
}
#header #logo {
  font-size: 1px;
  line-height: 0;
  height: 74px;
  width: 160px;
  box-sizing: border-box;
  border: 1px solid #FFF;
  border-radius: 37px;
  position: relative;
  z-index: 10;
}
#header #logo::before {
  content: "";
  display: block;
  background-color: var(--bg-color-clr);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 37px;
  z-index: 2;
}
#header #logo::after {
  content: "";
  display: block;
  background: url(../images/bg_gra.png) no-repeat center 0;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  top: 0;
  z-index: 1;
}
#header #logo a {
  font-size: 1px;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 3;
}
#header #logo_f-rei {
  font-size: 1px;
  line-height: 0;
  height: 74px;
  width: 160px;
  margin: 0 auto 0 15px;
  box-sizing: border-box;
  border: 1px solid #FFF;
  border-radius: 37px;
  position: relative;
  z-index: 10;
}
#header #logo_f-rei::before {
  content: "";
  display: block;
  background-color: var(--bg-color-clr);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 37px;
  z-index: 2;
}
#header #logo_f-rei::after {
  content: "";
  display: block;
  background: url(../images/bg_gra.png) no-repeat center 0;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  top: 0;
  z-index: 1;
}
#header #logo_f-rei a {
  font-size: 1px;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 3;
}
#header #logo_f-rei img {
  margin: -3px 0 0;
}
#header #nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 74px;
  box-sizing: border-box;
  border: 1px solid #FFF;
  border-radius: 37px;
  position: relative;
}
#header #nav::before {
  content: "";
  display: block;
  background-color: var(--bg-color-clr);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 37px;
  z-index: 2;
}
#header #nav::after {
  content: "";
  display: block;
  background: url(../images/bg_gra.png) no-repeat center 0;
  background-size: 100% 100%;
  position: absolute;
  left: -20px;
  right: -20px;
  bottom: -25px;
  top: 0;
  z-index: 1;
}
#header #nav .smt_menu_btn {
  display: none;
}
#header #nav #gnav {
  height: 100%;
  padding: 0 25px;
  box-sizing: border-box;
}
#header #nav #gnav > ul {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 3;
}
#header #nav #gnav > ul > li {
  font-size: 1.6em;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.04em;
  height: 100%;
  margin: 0 15px;
  position: relative;
}
#header #nav #gnav > ul > li > a,
#header #nav #gnav > ul > li > span {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  height: 100%;
  border-radius: 37px;
  position: relative;
  transition: color .2s var(--easing);
}
@media screen and (min-width:768px) {
  #header #nav #gnav > ul > li > span {
    cursor: pointer;
  }
}
@media screen and (min-width:768px) {
  #header #nav #gnav > ul > li:first-child > a:hover {
    color: var(--base-color-ppl);
  }
  #header #nav #gnav > ul > li:nth-child(2) > a:hover {
    color: var(--base-color-grn);
  }
  #header #nav #gnav > ul > li:nth-child(3) > span:hover {
    color: var(--base-color-orn);
  }
  #header #nav #gnav > ul > li:nth-child(4) > a:hover {
    color: var(--base-color-mar);
  }
  #header #nav #gnav > ul > li:nth-child(5) > a:hover {
    color: var(--base-color-ppl);
  }
  #header #nav #gnav > ul > li:nth-child(6) > a:hover {
    color: var(--base-color-grn);
  }
}
#header #nav #gnav > ul > li > a::after {
  content: "";
  background-color: #000;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 14px;
  opacity: 0;
  transition: .2s var(--easing);
  visibility: hidden;
}
#header #nav #gnav > ul > li:first-child > a::after {
  background-color: var(--base-color-ppl);
}
#header #nav #gnav > ul > li:nth-child(2) > a::after {
  background-color: var(--base-color-grn);
}
#header #nav #gnav > ul > li:nth-child(4) > a::after {
  background-color: var(--base-color-mar);
}
#header #nav #gnav > ul > li:nth-child(5) > a::after {
  background-color: var(--base-color-ppl);
}
#header #nav #gnav > ul > li:nth-child(6) > a::after {
  background-color: var(--base-color-grn);
}
@media screen and (min-width:768px) {
  #header #nav #gnav > ul > li > a:hover::after {
    bottom: 20px;
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (min-width:768px) {
  #header #nav #gnav > ul > li > ul {
    visibility: hidden;
    width: 250px;
    position: absolute;
    left: -20px;
    top: calc(100% - 6px);
    opacity: 0;
    z-index: -1;
    transition: .2s var(--easing);
  }
  #header #nav #gnav > ul > li.selected > ul {
    opacity: 1;
    top: calc(100% - 12px);
    visibility: visible;
    z-index: 11;
  }
  #header #nav #gnav > ul > li > ul li {
    height:60px;
    overflow: hidden;
  }
  #header #nav #gnav > ul > li > ul li:first-child {
    border-radius: 16px 16px 0 0;
  }
  #header #nav #gnav > ul > li > ul li:last-child {
    border-radius: 0 0 16px 16px;
  }
  #header #nav #gnav > ul > li > ul li a {
    font-size: 80%;
    line-height: 1.4;
    color: #FFF;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-align: left;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    padding-left: 40px;
    position: relative;
  }
  #header #nav #gnav > ul > li > ul li:not(:last-child) a {
    border-bottom: 1px solid #666;
  }
  #header #nav #gnav > ul > li > ul li a::before {
    content: "";
    display: block;
    background-color: #fff;
    height: 7px;
    width: 7px;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(0, -50%);
    z-index: 1;
    transition: transform .2s var(--easing);
  }
  #header #nav #gnav > ul > li > ul li a:hover::before {
    transform: translate(0, -50%) scale(2);
  }
  #header #nav #gnav > ul > li > ul li a::after {
    content: "";
    display: block;
    background-color: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .75;
    transition: opacity .2s;
  }
  #header #nav #gnav > ul > li > ul li a:hover::after {
    opacity: 1;
  }
  #header #nav #gnav > ul > li > ul li:first-child a:hover::after {
    background: linear-gradient(to right, rgba(249,171,19,1) 0%,rgba(247,138,15,1) 100%);
  }
  #header #nav #gnav > ul > li > ul li:nth-child(2) a:hover::after {
    background: linear-gradient(to right, rgba(3,228,177,1) 0%,rgba(37,189,216,1) 100%);
  }
  #header #nav #gnav > ul > li > ul li:last-child a:hover::after {
    background: linear-gradient(to right, rgba(83,118,253,1) 0%,rgba(116,141,255,1) 100%);
  }
  #header #nav #gnav > ul > li > ul li a span {
    position: relative;
    z-index: 1;
  }
  #header #nav #gnav > ul > li.lang_box {
    height: auto;
    width: 100%;
    margin: 0;
    min-width: 1280px;
    position: fixed;
    top: 30px;
    left: 0;
    z-index: -1;
  }
  #header #nav #gnav > ul > li.lang_box .lang {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 74px;
    width: 110px;
    margin: 0 30px 0 auto;
    box-sizing: border-box;
    border: 1px solid #FFF;
    border-radius: 37px;
    position: relative;
  }
  #header #nav #gnav > ul > li.lang_box .lang::before {
    content: "";
    display: block;
    background-color: var(--bg-color-clr);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 37px;
    z-index: 2;
  }
  #header #nav #gnav > ul > li.lang_box .lang::after {
    content: "";
    display: block;
    background: url(../images/bg_gra.png) no-repeat center 0;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -25px;
    top: 0;
    z-index: 1;
  }
  #header #nav #gnav > ul > li.lang_box .lang>div {
    width: 108px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
  }
  #header #nav #gnav > ul > li.lang_box .lang>div a {
    font-size: 88%;
    line-height: 1.5em;
    color: #000;
    text-decoration: none;
    margin: 0 7px;
    transition: .4s var(--easing);
    position: relative;
  }
  #header #nav #gnav > ul > li.lang_box .lang>div a:hover {
    color: #000!important;
  }
  #header #nav #gnav > ul > li.lang_box .lang>div a::after {
    content: "";
    display: block;
    background: #000;
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .4s var(--easing);
    transform: scale(0, 1);
  }
  #header #nav #gnav > ul > li.lang_box .lang>div a:hover::after {
    transform: scale(1, 1);
  }
}

/*-------------------------
__content
-------------------------*/
#content {
  display: block;
}
#content .sec_ttl {
  font-size: 1.6em;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
#content .sec_ttl.wht {
  color: #fff;
}
#content .sec_ttl .en {
  font-size: 294%;
  letter-spacing: 0;
  margin-right: 20px;
}
@media only screen and (min-width: 768px) {
  #content .page_ttl_wrap {
    min-width: 1280px;
  }
}
#content .page_ttl_wrap {
  height: 400px;
  width: 100%;
  /* position: fixed;
  left: 0;
  top: 0; */
}
#content .page_ttl_wrap > .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100%;
}
#content .page_ttl_wrap .page_ttl {
  font-size: 2em;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  margin-top: 60px;
  z-index: 1;
}
#content .page_ttl_wrap .page_ttl .jp,
#content .page_ttl_wrap .page_ttl .en {
  font-size: 270%;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
#content .page_ttl_wrap .page_ttl .en {
  font-weight: 500;
}
#content .page_ttl_wrap .page_ttl .jps {
  font-size: 150%;
  line-height: 1.2;
  display: block;
  margin-bottom: 15px;
}
#content .page_ttl_wrap .page_ttl .jps + .jp {
  margin-bottom: 0;
}
#content > .sec_wrap {
  /* padding-top: 400px; */
  position: relative;
  z-index: 1;
}
#content > .sec_wrap > .inner {
  background-color: var(--bg-color);
}

#content #schedule_bar {
  display: flex;
  width: 100%;
}
#content #schedule_bar a {
  width: 100%;
  height: 100px;
  text-decoration: none;
  padding: 10px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
#content #schedule_bar a::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: opacity .3s;
}
@media screen and (min-width:768px) {
  #content #schedule_bar a:hover::after {
    opacity: 0;
  }
}
#content #schedule_bar a .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  transition: transform .2s var(--easing);
  position: relative;
  z-index: 2;
}
#content #schedule_bar a .box {
  font-size: 3em;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
}
#content #schedule_bar a .box span {
  display: inline-block;
  vertical-align: middle;
}
#content #schedule_bar a .box .date {
  font-size: 56%;
  font-weight: 700;
  background-color: #fff;
  margin:0 10px 0 0;
  padding: 4px 14px;
  border-radius: 30px;
}
#content #schedule_bar a .logo_f-rei {
  font-size: 1px;
  line-height: 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 74px;
  width: 74px;
  margin: 0 15px 0 -15px;
  border-radius: 40px;
  box-shadow: 0 10px 20px 5px rgba(12, 80, 66, .15);
}
#content #schedule_bar a.fukushima {
  background: linear-gradient(to right, rgba(106,252,232,1) 0%,rgba(19,242,190,1) 100%);
}
#content #schedule_bar a.fukushima::after {
  background: linear-gradient(to right, rgba(3,228,177,1) 0%,rgba(37,189,216,1) 100%);
}
#content #schedule_bar a.fukushima .box .date {
  color: var(--base-color-grn);
}
@media screen and (min-width:768px) {
  #content #schedule_bar a:hover .inner {
    transform: scale(1.05);
  }
}

/*-------------------------
__footer
-------------------------*/
#footer {
  padding: 80px 0 35px;
  position: relative;
  z-index: 1;
}
.top #footer {
  z-index: 10;
}
body:not(.top) #footer {
  background-color: var(--bg-color);
}
#footer .foot_logo {
  font-size: 1px;
  line-height: 0;
  margin-bottom: 65px;
}
#footer .copyright {
  font-size: 1.2em;
  line-height: 1;
  letter-spacing: 0.04em;
}

/*-------------------------
__smt
-------------------------*/
@media screen and (max-width:767px) {
  body.menu_open {
    overflow: hidden;
  }
  #header {
    padding-right: 0;
    top: 15px;
  }
  #header > .inner {
    margin: 0 15px;
  }
  #header #logo {
    height: 54px;
    width: 130px;
  }
  #header #logo::after {
    bottom: -20px;
  }
  #header #logo img {
    height: 32px;
    width: auto;
  }
  #header #logo_f-rei {
    height: 54px;
    width: 130px;
    margin: 0 auto 0 10px;
  }
  #header #logo_f-rei::after {
    bottom: -20px;
  }
  #header #logo_f-rei img {
    height: 43px;
    width: auto;
    margin: -2px 0 0;
  }
  #header #nav {
    height: 54px;
    width: 54px;
  }
  #header #nav::after {
    left: -10px;
    right: -10px;
    bottom: -15px;
  }
  #header #nav .smt_menu_btn {
    display: block;
    height: 23px;
    width: 26px;
    position: relative;
    z-index: 3;
    cursor: pointer;
  }
  #header #nav .smt_menu_btn span {
    display: inline-block;
    height: 3px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 3px;
    position: absolute;
    left: 0;
    transition:.4s var(--easing);
  }
  #header #nav .smt_menu_btn span:nth-of-type(1) {
    top: 0;
    background-color: var(--base-color-ppl);
  }
  #header #nav .smt_menu_btn span:nth-of-type(2) {
    top: 10px;
    background-color: var(--base-color-orn);}
  #header #nav .smt_menu_btn span:nth-of-type(3) {
    bottom: 0;
    background-color: var(--base-color-grn);
  }
  .menu_open #header #nav .smt_menu_btn span:nth-of-type(1) {
    transform: translateY(10px) rotate(-315deg);
  }
  .menu_open #header #nav .smt_menu_btn span:nth-of-type(2) {
    opacity: 0;
  }
  .menu_open #header #nav .smt_menu_btn span:nth-of-type(3) {
    transform: translateY(-10px) rotate(315deg);
  }
  #header #nav #gnav {
    background-color: rgba(0, 0, 0, .85);
    width: 100%;
    height: 100%;
    padding: 0;
    overflow-y: auto;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
    visibility: hidden;
  }
  .menu_open #header #nav #gnav {
    visibility: visible;
  }
  #header #nav #gnav > ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 420px;
  }
  #header #nav #gnav > ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 420px;
  }
  #header #nav #gnav > ul > li {
    font-size: 2em;
    line-height: 2;
    font-weight: 700;
    height: auto;
    width: auto;
    margin: 0;
  }
  #header #nav #gnav > ul > li > a,
  #header #nav #gnav > ul > li > span {
    display: inline-block;
    color: #fff;
    height: auto;
    border-radius: 0;
    opacity: 0;
    transform: translateX(100px);
  }
  .menu_open #header #nav #gnav > ul > li > a,
  .menu_open #header #nav #gnav > ul > li > span {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 1s var(--easing), transform 1s var(--easing);
  }
  .menu_open #header #nav #gnav > ul > li:nth-child(2) > a {
    transition-delay: .1s;
  }
  .menu_open #header #nav #gnav > ul > li:nth-child(3) > span {
    transition-delay: .2s;
  }
  .menu_open #header #nav #gnav > ul > li:nth-child(4) > a {
    transition-delay: .4s;
  }
  .menu_open #header #nav #gnav > ul > li:nth-child(5) > a {
    transition-delay: .5s;
  }
  .menu_open #header #nav #gnav > ul > li:nth-child(6) > a {
    transition-delay: .6s;
  }

  #header #nav #gnav > ul > li > ul li a {
    color: #FFF;
    text-decoration: none;
    display: inline-block;
    opacity: 0;
    transform: translateX(100px);
  }
  .menu_open #header #nav #gnav > ul > li > ul li a {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 1s var(--easing), transform 1s var(--easing);
    transition-delay: .3s
  }
  #header #nav #gnav > ul > li > ul li a span {
    font-size: 70%;
    line-height: 1.3;
    font-weight: 400;
    display: block;
    letter-spacing: 0.04em;
  }

  #header #nav #gnav > ul > li.lang_box .lang {
    margin-top: 1em;
  }
  #header #nav #gnav > ul > li.lang_box .lang>div {
    color: #fff;
    display: inline-block;
    opacity: 0;
    transform: translateX(100px);
  }
  .menu_open #header #nav #gnav > ul > li.lang_box .lang>div {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 1s var(--easing), transform 1s var(--easing);
    transition-delay: .6s;
  }
  #header #nav #gnav > ul > li.lang_box .lang>div a {
    font-size: 70%;
    color: #fff;
    text-decoration: none;
    margin: 0 4px;
    display: inline-block;
    position: relative;
  }
  #header #nav #gnav > ul > li.lang_box .lang>div a {
    color: #fff;
  }
  #header #nav #gnav > ul > li.lang_box .lang>div a::after {
    content: none;
  }
  
  #content .sec_ttl {
    font-size: 1.4em;
    text-align: left;
    display: block;
    margin-bottom: 20px;
  }
  #content .sec_ttl .en {
    font-size: 229%;
    display: block;
    margin: 0 0 6px;
  }
  #content .page_ttl_wrap {
    height: 240px;
    position: relative;
    left: auto;
    top: auto;
  }
  #content .page_ttl_wrap .page_ttl {
    font-size: 1.6em;
  }
  #content .page_ttl_wrap .page_ttl .jp,
  #content .page_ttl_wrap .page_ttl .en {
    font-size: 200%;
  }
  #content .page_ttl_wrap .page_ttl .jps {
    font-size: 110%;
    margin-bottom: 8px;
  }
  /* #content > .sec_wrap {
    padding-top: 0;
  } */
  #content #schedule_bar a {
    height: 90px;
  }
  #content #schedule_bar a .box {
    font-size: 2em;
  }
  #content #schedule_bar a .box .date {
    font-size: 55%;
    margin: 0 0 6px;
    padding: 3px 12px;
  }
  #content #schedule_bar a .box .txt {
    display: block;
  }
  #content #schedule_bar a .logo_f-rei {
    width: 60px;
    height: 60px;
    margin: 0 10px 0 -10px;
  }
  #content #schedule_bar a .logo_f-rei img {
    width: 60%;
    height: auto;
  }

  #footer {
    padding: 40px 0 20px;
  }
  #footer .foot_logo {
    margin-bottom: 40px;
  }
  #footer .foot_logo img {
    height: 50px;
    width: auto;
  }
  #footer .copyright {
    font-size: 1em;
  }
}

@media screen and (max-width:374px) {
  #content #schedule_bar a .box .txt {
    font-size: 90%;
  }
}

@media screen and (max-width:374px) {
  #header #logo_f-rei {
    width: 80px;
  }
}

/*-------------------------
__fixed_entry_btn
-------------------------*/
#fixed_entry_btn {
  height: 230px;
  width: 230px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
}
#fixed_entry_btn .box {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, rgba(3,228,177,1) 0%,rgba(37,189,216,1) 100%);
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 10px 40px rgba(80, 55, 35, .1);
  border-radius: 115px;
  transition: transform .2s var(--easing);
  position: relative;
}
@media screen and (min-width:768px) {
  #fixed_entry_btn .box:hover {
    transform: scale(1.1);
  }
}
#fixed_entry_btn .box::after {
  content: "";
  display: block;
  background-color: #fff;
  height: calc(100% - 20px);
  width: calc(100% - 20px);
  border-radius: 115px;
  position: absolute;
  left: 10px;
  top: 10px;
}
#fixed_entry_btn .box > .inner {
  position: relative;
  z-index: 10;
}
#fixed_entry_btn .box .ttl {
  font-size: 1.8em;
  line-height: 1.2;
  font-weight: 700;
  background: linear-gradient(to right, rgba(18,193,158,1) 0%,rgba(78,203,230,1) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: -4px 0 4px;
}
#fixed_entry_btn .box .date {
  margin-bottom: 5px;
}
#fixed_entry_btn .box .date dt {
  font-size: 1.2em;
  line-height: 1.1;
  font-weight: 500;
  color: #000;
  display: inline-block;
  border: 1px solid;
  margin-bottom: 4px;
  padding: 2px 6px;
  border-radius: 4px;
}
#fixed_entry_btn .box .date dd {
  font-size: 1.6em;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
}
#fixed_entry_btn .box .date dd span {
  font-size: 120%;
  line-height: 1;
}
#fixed_entry_btn .box .btn {
  font-size: 1.4em;
  line-height: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-block;
  background: linear-gradient(to right, rgba(3,228,177,1) 0%,rgba(37,189,216,1) 100%);
  padding: 0 14px;
  border-radius: 15px;
}

@media screen and (max-width:767px) {
  #fixed_entry_btn {
    height: 186px;
    width: 186px;
    right: 10px;
    bottom: 10px;
  }
  #fixed_entry_btn .box::after {
    height: calc(100% - 16px);
    width: calc(100% - 16px);
    left: 8px;
    top: 8px;
  }
  #fixed_entry_btn .box .ttl {
    font-size: 1.5em;
    line-height: 1.2;
    margin: -3px 0 3px;
  }
  #fixed_entry_btn .box .date {
    margin-bottom: 4px;
  }
  #fixed_entry_btn .box .date dt {
    font-size: 1em;
  }
  #fixed_entry_btn .box .date dd {
    font-size: 1.2em;
  }
  #fixed_entry_btn .box .btn {
    font-size: 1.1em;
    line-height: 21px;
    padding: 0 8px;
  }
}

/*-------------------------
__fixed_schedule
-------------------------*/
#fixed_schedule {
  height: 150px;
  width: 150px;
  position: fixed;
  right: 20px;
  bottom: 185px;
  z-index: 50;
  transition: transform .2s var(--easing);
}
@media screen and (min-width:768px) {
  #fixed_schedule:hover {
    transform: scale(1.05);
  }
}
#fixed_schedule > .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, rgba(3,228,177,1) 0%,rgba(37,189,216,1) 100%);
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 10px 40px rgba(80, 55, 35, .1);
  border-radius: 95px;
  position: relative;
}
#fixed_schedule > .inner::after {
  content: "";
  display: block;
  background-color: #fff;
  height: 138px;
  width: 138px;
  border-radius: 88px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#fixed_schedule a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}
#fixed_schedule a img {
  width: auto;
  height: 60px;
  margin: 5px 0 0;
}

@media screen and (max-width:767px) {
  #fixed_schedule {
    height: 110px;
    width: 110px;
    right: 8px;
    bottom: 128px;
  }
  #fixed_schedule > .inner::after {
    height: 100px;
    width: 100px;
  }
  #fixed_schedule a img {
    height: 43px;
  }
}

/*-------------------------
__fixed_pressform
-------------------------*/
#fixed_pressform {
  height: 150px;
  width: 150px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  transition: transform .2s var(--easing);
}
@media screen and (min-width:768px) {
  #fixed_pressform:hover {
    transform: scale(1.05);
  }
}
#fixed_pressform > .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, rgba(191,91,88,1) 0%,rgba(167,32,67,1) 100%);
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 10px 40px rgba(80, 55, 35, .1);
  border-radius: 95px;
  position: relative;
}
#fixed_pressform > .inner::after {
  content: "";
  display: block;
  background-color: #fff;
  height: 138px;
  width: 138px;
  border-radius: 88px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#fixed_pressform a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}
#fixed_pressform a img {
  width: auto;
  height: 60px;
  margin: 5px 0 0;
  position: relative;
  z-index: 1;
}

@media screen and (max-width:767px) {
  #fixed_pressform {
    height: 110px;
    width: 110px;
    right: 8px;
    bottom: 8px;
    top: auto;
  }
  #fixed_pressform > .inner::after {
    height: 100px;
    width: 100px;
  }
  #fixed_pressform a img {
    height: 43px;
  }
}
