@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,700");
html {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo', 'ＭＳ ゴシック', sans-serif;
  font-weight: 500;
}

body {
  position: relative;
  min-width: 944px;
}
@media screen and (max-width: 750px) {
  body {
    min-width: 100%;
  }
}
body::before, body::after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}
body::before {
  left: 0;
  background-color: #fff;
}
body::after {
  right: 0;
  background-color: #f5f5f5;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b,
.bold {
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
}

.wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

header {
  opacity: 0;
  animation: headerDisplay 2s ease 2s 1 forwards;
  position: fixed;
  z-index: 3;
  width: 100%;
  padding: 25px 0 0;
}
@media screen and (max-width: 750px) {
  header {
    padding: calc((20 / 750)*100vw) 0 0;
  }
}
header .header_contents {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0px 28px;
}
@media screen and (max-width: 750px) {
  header .header_contents {
    width: 100%;
    padding: 0;
  }
}
header .header_logo a {
  display: block;
  width: 233px;
}
@media screen and (min-width: 751px) {
  header .header_logo a:hover {
    transition: all .5s ease;
    opacity: .7;
  }
}
@media screen and (max-width: 750px) {
  header .header_logo a {
    width: 110px;
  }
}
header .header_logo img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  header .header_logo {
    padding: calc((10 / 750)*100vw) 0 0 calc((30 / 750) * 100vw);
  }
}
header .utility {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 600px;
}
@media screen and (max-width: 750px) {
  header .utility {
    z-index: 10;
    position: fixed;
    right: 0;
    bottom: calc((30 / 750)*100vw);
    left: 0;
    justify-content: center;
    width: 100vw;
    margin: auto;
  }
}
header .block_ellipse {
  margin: 0 0 10px;
  padding: 5px 20px 5px 43px;
  border-radius: 40px;
  background: #000 url(/2k540/common/img/icon_time.png) no-repeat left 9px center;
  background-size: 28px;
  box-shadow: 0px 0px 8px 4px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 750px) {
  header .block_ellipse {
    position: fixed;
    top: calc((20 / 750)*100vw);
    right: -173px;
    z-index: 100;
    cursor: pointer;
  }
  header .block_ellipse.close {
    background: #000 url(/2k540/common/img/icon_close_sp.png) no-repeat left 9px center;
    background-size: 25px;
    right: -17px;
    transition: all .5s ease;
  }
  header .block_ellipse.-is_iphone {
    right: -190px;
  }
  header .block_ellipse.-is_iphone.close {
    right: -17px;
  }
}
header .block_ellipse p {
  letter-spacing: calc((80 / 1000)*1em);
  color: #fff;
  font-size: 1.2rem;
}
header .block_ellipse .business_hours strong {
  display: inline-block;
  margin-left: 3px;
  font-size: 1.4rem;
}
header .block_circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 0px 8px 4px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 750px) {
  header .block_circle {
    margin: 0 14px;
  }
}
header .block_circle > a, header .block_circle > span {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 0 12px;
}
@media screen and (min-width: 751px) {
  header .block_circle > a:hover, header .block_circle > span:hover {
    opacity: .7;
    transition: unset;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 0px 0px 8px 4px rgba(0, 0, 0, 0.15);
  }
}
header .block_circle img {
  width: 30px;
}
header .block_circle img + span {
  margin: 4px 0 0;
}
header .block_circle span {
  letter-spacing: calc((60 / 1000)*1em);
  font-size: .9rem;
}
header .block_circle + .block_circle img {
  width: 25px;
}
header .header_menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 0 10px;
}
header .header_menu img {
  width: 25px;
}
header .header_menu span {
  letter-spacing: calc((60 / 1000)*1em);
  font-size: .9rem;
}
@media screen and (min-width: 751px) {
  header .header_menu:hover {
    cursor: pointer;
    opacity: .7;
    border-radius: 50%;
    box-shadow: 0px 0px 8px 4px rgba(0, 0, 0, 0.15);
  }
}
@media screen and (min-width: 751px) {
  header .header_language:hover {
    cursor: pointer;
  }
}

@keyframes headerDisplay {
  100% {
    opacity: 1;
  }
}
nav {
  display: none;
}
nav .menu_list,
nav .language_list {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 13;
  width: 944px;
  margin: auto;
  padding: 30px 100px;
  background: url("/2k540/common/img/bg_logo.png") no-repeat right top 50%;
  background-size: 360px 413.5px;
}
@media screen and (max-width: 750px) {
  nav .menu_list,
  nav .language_list {
    width: 100%;
    padding: calc((100 / 750) * 100vw) calc((60 / 750) * 100vw);
    background: url("/2k540/common/img/bg_logo.png") no-repeat right calc((60 / 750) * 100vw) bottom calc((60 / 750) * 100vw);
    background-size: 50%;
  }
}
nav .language_list {
  padding: 45px 100px 300px;
}
@media screen and (max-width: 750px) {
  nav .language_list {
    padding: calc((100 / 750) * 100vw) calc((60 / 750) * 100vw);
  }
}
nav li {
  margin: 0 0 15px;
}
nav a {
  display: inline-block;
  letter-spacing: calc((80 / 1000)*1em);
  line-height: 1.1765;
}
nav a > * {
  display: block;
}
nav a strong {
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-weight: bold;
  color: #fff;
  font-size: 3.4vh;
}
nav a strong _:-ms-lang(x)::-ms-backdrop, nav a strong {
  padding: 10px 0 0;
  line-height: 26px;
}
@media screen and (max-width: 750px) {
  nav a strong {
    font-size: 1.7rem;
  }
}
nav a span {
  margin: 8px 0 0;
  color: #d6d6d6;
  font-size: 1.2rem;
}
@media screen and (max-width: 750px) {
  nav a span {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 751px) {
  nav a {
    text-decoration: none;
  }
  nav a:hover strong {
    display: inline-block;
    background-color: #00a4e8;
  }
  nav a:hover span {
    text-decoration: none;
  }
}
nav .icon_close {
  z-index: 14;
  position: absolute;
  top: 3.7%;
  right: 1%;
}
nav .icon_close img {
  transform: scale(0.5);
  transform-origin: 0, 0;
}
@media screen and (max-width: 750px) {
  nav .icon_close {
    top: calc((80 / 750) * 100vw);
    right: calc((40 / 750) * 100vw);
  }
}
@media screen and (min-width: 751px) {
  nav .icon_close:hover {
    cursor: pointer;
    opacity: .7;
  }
}

.eyecatch {
  position: relative;
}
.eyecatch h1 {
  position: absolute;
  top: 35%;
  right: 0;
  left: 0;
  text-align: center;
}

.gnav_overlay {
  display: none;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
}

footer {
  position: relative;
  background-color: #fff;
}
footer .pageTop {
  display: none;
  z-index: 2;
  position: fixed;
  right: 0;
  bottom: 0;
  width: 75px;
  height: 75px;
}
@media screen and (max-width: 750px) {
  footer .pageTop {
    width: 45px;
    height: 45px;
  }
}
@media screen and (min-width: 751px) {
  footer .pageTop a:hover {
    opacity: .7;
    text-decoration: none;
  }
}
footer .pageTop img {
  width: 100%;
  vertical-align: top;
}
footer .pageTop.abs {
  position: absolute;
}
footer .breadcrumb {
  width: 100%;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 750px) {
  footer .breadcrumb {
    display: none;
  }
}
footer .breadcrumb .wrap {
  width: 944px;
  margin: auto;
}
footer .breadcrumbList {
  display: flex;
  flex-wrap: wrap;
  padding: 27px 0 24px;
}
footer .breadcrumbList li {
  margin: 0 13px 0 0;
  white-space: nowrap;
}
footer .breadcrumbList li::after {
  content: ">";
  color: #000;
  margin: 0 0 0 13px;
}
footer .breadcrumbList li:last-child {
  margin-right: 0;
  white-space: normal;
}
footer .breadcrumbList li:last-child::after {
  display: none;
}
footer .breadcrumbList li:last-child > * {
  cursor: default;
  color: #009fe8;
}
footer .breadcrumbList li:last-child > *:link, footer .breadcrumbList li:last-child > *:visited, footer .breadcrumbList li:last-child > *:hover,
footer .breadcrumbList li:last-child > * :active {
  text-decoration: none;
}
@media screen and (max-width: 750px) {
  footer .breadcrumbList li:last-child > *:link, footer .breadcrumbList li:last-child > *:visited, footer .breadcrumbList li:last-child > *:hover,
  footer .breadcrumbList li:last-child > * :active {
    text-decoration: none;
  }
}
footer .breadcrumbList a {
  color: #000;
}
@media screen and (max-width: 750px) {
  footer .breadcrumbList a:hover {
    text-decoration: underline;
  }
}
footer .col_wrap {
  display: flex;
  width: 944px;
  margin: auto;
  padding: 60px 0 70px;
}
@media screen and (max-width: 750px) {
  footer .col_wrap {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }
}
footer .col {
  width: 50%;
}
@media screen and (max-width: 750px) {
  footer .col {
    width: 100%;
  }
}
footer .col p {
  width: 290px;
}
@media screen and (max-width: 750px) {
  footer .col p {
    display: block;
    width: calc((466 / 750) * 100% + 2em);
    margin: auto;
    padding: calc((50 / 750) * 100vw) 1em;
    text-align: center;
  }
}
footer .col a {
  display: block;
}
@media screen and (min-width: 751px) {
  footer .col a:hover {
    opacity: .7;
    text-decoration: none;
  }
}
footer .col img {
  vertical-align: top;
}
@media screen and (max-width: 750px) {
  footer .col img {
    width: 100%;
    margin: auto;
    text-align: center;
  }
}
footer .col ul {
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
}
@media screen and (max-width: 750px) {
  footer .col ul {
    width: 100%;
    margin: auto;
    padding: 0 calc((40 / 750) * 100vw) calc((50 / 750) * 100vw);
  }
}
footer .col ul li {
  position: relative;
  letter-spacing: calc((80 / 1000)*1em);
  font-size: 1.6rem;
}
@media screen and (max-width: 750px) {
  footer .col ul li {
    font-size: 1.2rem;
  }
}
footer .col ul li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 2px;
  background-color: #000;
  vertical-align: middle;
}
footer .col ul li + li {
  margin-top: 1em;
}
footer .col ul a {
  display: inline-block;
  padding-left: 8px;
}
@media screen and (min-width: 751px) {
  footer .col ul a:hover {
    text-decoration: underline;
  }
}
footer .copyright {
  width: 100%;
  padding: 50px 1em 50px;
  background-color: #000;
}
@media screen and (max-width: 750px) {
  footer .copyright {
    padding: 50px 1em 30vw;
  }
}
footer .copyright p {
  text-align: center;
}
footer .copyright p samll {
  letter-spacing: calc((120 / 1000)*1em);
  color: #fff;
  font-size: 1.2rem;
}
@media screen and (max-width: 750px) {
  footer .copyright p samll {
    font-size: 1rem;
  }
}

.main {
  max-width: 1024px;
  margin: 50px auto 0;
}
.top .main {
  max-width: 100%;
  margin: 0;
}
@media screen and (max-width: 750px) {
  .main {
    width: 100%;
  }
}
.main .main_inner {
  width: 944px;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .main .main_inner {
    width: 100%;
    min-width: 100%;
    padding: 0 calc((40 / 750) * 100vw);
  }
}

/* PC/SP 表示・非表示 */
@media screen and (max-width: 750px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 750px) {
  .sp_only {
    display: block;
  }
}

/* テキストリンク */
a {
  text-decoration: none;
}
@media screen and (min-width: 751px) {
  a:hover {
    transition: all .5s ease;
    text-decoration: underline;
  }
}

/* ボタン */
/* ホバー時左から右 */
.btn {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  width: 230px;
  margin: 50px auto 0;
  padding: 23px 20px 21px;
  box-sizing: border-box;
  border: 2px solid #000;
  border-radius: 35px;
  background-color: #fff;
  text-align: center;
}
.btn _:-ms-lang(x)::-ms-backdrop, .btn {
  padding: 23px 20px 18px;
}
@media screen and (max-width: 750px) {
  .btn {
    width: 165px;
    margin: 25px auto 0;
    padding: 13px 20px 11px;
  }
}
.btn .eff_bg {
  position: absolute;
  z-index: 1;
  transition: all .5s ease;
  width: 230px;
  height: 70px;
  top: 0;
  left: -230px;
  background: #000;
}
.btn .btn_txt {
  position: relative;
  z-index: 2;
  transition: all .5s ease;
  width: 100%;
  height: 100%;
  margin-left: calc((200 / 1000)*1em);
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  letter-spacing: calc((100 / 1000)*1em);
  line-height: 1;
  font-weight: 700;
  font-size: 1.8rem;
}
@media screen and (max-width: 750px) {
  .btn .btn_txt {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 751px) {
  .btn:hover a {
    text-decoration: none;
  }
  .btn:hover .eff_bg {
    left: 0;
  }
  .btn:hover .btn_txt {
    color: #fff;
  }
}
.btn.has_icon_arrow .btn_txt {
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .btn.has_icon_arrow .btn_txt {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: none;
  }
}
.btn.has_icon_arrow .btn_txt svg {
  margin-left: 3px;
  margin-bottom: 2px;
}
@media screen and (min-width: 751px) {
  .btn.has_icon_arrow:hover .eff_bg {
    left: 0 !important;
  }
  .btn.has_icon_arrow:hover .btn_txt svg {
    line-height: 5px;
  }
  .btn.has_icon_arrow:hover .btn_txt svg path {
    fill: #fff;
  }
}

/* opacity0.7 */
.btn02 {
  width: 330px;
  height: 123px;
  margin: 40px auto 0;
  border-radius: 61px;
  box-sizing: border-box;
  text-align: center;
  background-color: #000;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .btn02 {
    width: calc((429 / 750) * 100vw);
    height: calc((160 / 750) * 100vw);
    margin: 20px auto 0;
    border-radius: calc((80 / 750) * 100vw);
  }
}
@media screen and (min-width: 751px) {
  .btn02:hover {
    opacity: .7;
    transition: all .5s ease;
  }
}
.btn02 .btn_txt {
  color: #fff;
  font-size: 3.0rem !important;
  line-height: 1 !important;
  letter-spacing: calc((80 / 1000)*1em);
  text-align: center !important;
}
@media screen and (max-width: 750px) {
  .btn02 .btn_txt {
    font-size: 2.0rem !important;
    letter-spacing: calc((40 / 1000)*1em);
  }
}
.btn02 .btn_txt .sub_txt {
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  display: block;
  margin-bottom: 16px;
  letter-spacing: calc((80 / 1000)*1em);
}
@media screen and (max-width: 750px) {
  .btn02 .btn_txt .sub_txt {
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: calc((40 / 1000)*1em);
  }
}

/* カテゴリーのボタン */
.category_list {
  display: flex;
  position: relative;
  z-index: 0;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  background-color: #fff;
}
.category_list li {
  cursor: pointer;
  position: relative;
  width: calc(100% / 3);
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}
.category_list li::before, .category_list li::after {
  content: "";
  width: 0;
  height: 10px;
  position: absolute;
  transition-duration: 0.4s;
}
.category_list li::before {
  left: -1px;
  top: -1px;
  background: -ms-linear-gradient(-45deg, #00aeeb 0%, #009be6 100%);
  background: -webkit-linear-gradient(-45deg, #00aeeb 0%, #009be6 100%);
  background: linear-gradient(135deg, #00aeeb 0%, #009be6 100%);
}
.category_list li::after {
  right: -1px;
  bottom: -1px;
  background: -ms-linear-gradient(-45deg, #009ee7 0%, #008be2 100%);
  background: -webkit-linear-gradient(-45deg, #009ee7 0%, #008be2 100%);
  background: linear-gradient(135deg, #009ee7 0%, #008be2 100%);
}
@media screen and (min-width: 751px) {
  .category_list li:hover {
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
  }
  .category_list li:hover::before {
    width: calc(100% + 1px);
  }
  .category_list li:hover::after {
    width: calc(100% + 1px);
  }
  .category_list li:hover .list_inner::before, .category_list li:hover .list_inner::after {
    transition-duration: 0.4s;
    height: calc(100% + 1px);
  }
}
.category_list li.current {
  background-color: #009ce3;
}
@media screen and (min-width: 751px) {
  .category_list li.current:hover {
    cursor: default;
  }
  .category_list li.current:hover::before, .category_list li.current:hover::after {
    content: none;
  }
}
.category_list .list_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: center;
  padding: 17px 0 0;
}
@media screen and (max-width: 750px) {
  .category_list .list_inner {
    padding: 5px 0 0;
  }
}
.category_list .list_inner::before, .category_list .list_inner::after {
  content: "";
  width: 10px;
  height: 0;
  position: absolute;
  transition-duration: 0.4s;
}
.category_list .list_inner::before {
  left: -1px;
  top: -1px;
  transition-duration: 0.4s;
  background: -webkit-linear-gradient(top, #00aeeb 0%, #009ee7 100%);
  background: linear-gradient(to bottom, #00aeeb 0%, #009ee7 100%);
}
.category_list .list_inner::after {
  z-index: 1;
  right: -1px;
  bottom: -1px;
  transition-duration: 0.4s;
  background: -webkit-linear-gradient(top, #009be6 0%, #008be2 100%);
  background: linear-gradient(to bottom, #009be6 0%, #008be2 100%);
}
.category_list .txt_area {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  height: 60px;
  text-align: center;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  letter-spacing: calc((80 / 1000)*1em);
  line-height: 1.25;
  font-weight: 700;
  font-size: 1.6rem;
}
@media screen and (max-width: 750px) {
  .category_list .txt_area {
    height: 50px;
  }
}
.category_list .txt_area span {
  display: block;
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
  letter-spacing: calc((60 / 1000)*1em);
  line-height: 1.91;
  color: #8b8b8b;
  font-weight: 700;
  font-size: 1.1rem;
}
.category_list .img_area {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 80px;
  padding-bottom: 10px;
}
@media screen and (max-width: 750px) {
  .category_list .img_area {
    height: 50px;
    padding-bottom: 5px;
  }
}
.category_list .img_area.item01 svg {
  width: 46px;
  height: 54px;
}
.category_list .img_area.item01 .deco01 {
  fill: none;
  stroke: #000;
  stroke-miterlimit: 10;
  stroke-width: 4px;
}
.category_list .img_area.item01 .deco03 {
  fill: #000;
}
.category_list .img_area.item02 svg {
  width: 72px;
  height: 47px;
}
.category_list .img_area.item02 .deco03 {
  fill: #fff;
}
.category_list .img_area.item03 svg {
  width: 51px;
  height: 49px;
}
.category_list .img_area.item03 .deco02 {
  fill: #fff;
}
.category_list .img_area.item03 .deco04,
.category_list .img_area.item03 .deco05 {
  fill: none;
  stroke: #000;
  stroke-miterlimit: 10;
  stroke-width: 4px;
}
.category_list .img_area.item03 .deco05 {
  stroke-dasharray: 12.97 8.65;
}
.category_list .img_area.item04 svg {
  width: 75px;
  height: 49px;
}
.category_list .img_area.item04 .deco01 {
  stroke-width: 5px;
  stroke-miterlimit: 10;
  stroke: #000;
  fill: #fff;
}
.category_list .img_area.item04 .deco02 {
  stroke-linejoin: bevel;
  stroke-width: 4px;
  stroke: #000;
  fill: #fff;
}
.category_list .img_area.item04 .deco03 {
  stroke-linejoin: bevel;
  stroke-width: 4px;
  stroke: #000;
  fill: #fff;
}
.category_list .img_area.item04 .deco04 {
  fill: #000;
}
.category_list .img_area.item05 svg {
  width: 62px;
  height: 42px;
}
.category_list .img_area.item05 .deco01 {
  fill: #000;
}
.category_list .img_area.item06 svg {
  width: 62px;
  height: 15px;
}
.category_list .img_area.item06 .deco01 {
  fill: #000;
}
.category_list .current .txt_area {
  color: #fff;
}
.category_list .current .txt_area span {
  color: #fff;
}
.category_list .current .item01 .deco01 {
  stroke: #fff;
}
.category_list .current .item01 .deco03 {
  fill: #fff;
}
.category_list .current .item02 .deco02 {
  fill: #fff;
}
.category_list .current .item02 .deco03 {
  fill: #009ce3;
}
.category_list .current .item03 .deco01 {
  fill: #fff;
}
.category_list .current .item03 .deco02 {
  fill: #009ce3;
}
.category_list .current .item03 .deco04,
.category_list .current .item03 .deco05 {
  stroke: #fff;
}
.category_list .current .item04 .deco01 {
  stroke: #fff;
  fill: #009ce3;
}
.category_list .current .item04 .deco02 {
  stroke: #fff;
  fill: #009ce3;
}
.category_list .current .item04 .deco03 {
  stroke: #fff;
  fill: #009ce3;
}
.category_list .current .item04 .deco04 {
  fill: #fff;
}
.category_list .current .item05 .deco01 {
  fill: #fff;
}
.category_list .current .item06 .deco01 {
  fill: #fff;
}

/* heading 水色の下線付き */
.has_under_blueline > * {
  position: relative;
}
.has_under_blueline > *:after {
  content: "";
  display: block;
  width: 25px;
  height: 4px;
  background-color: #00aeeb;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 750px) {
  .has_under_blueline > *:after {
    height: 2.5px;
  }
}

/* heading01 */
.heading01 > * {
  font-size: 2.6rem;
  line-height: 1;
  font-weight: bold;
  letter-spacing: calc((200 / 1000)*1em);
  padding-bottom: 25px;
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .heading01 > * {
    font-size: 2rem;
    letter-spacing: calc((80 / 1000)*1em);
    padding-bottom: 15px;
    margin-bottom: 25px;
  }
}

/* heading02 */
.heading02 > * {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: calc((80 / 1000)*1em);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
  .heading02 > * {
    font-size: 1.8rem;
    letter-spacing: calc((40 / 1000)*1em);
    margin-bottom: 17.5px;
  }
}

.indent1em {
  padding-left: 1em;
  text-indent: -1em;
  display: block;
}

/*ニュース部分*/
.info_area .tag_area {
  display: flex;
  justify-content: center;
  margin: 0 -15px 70px;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .info_area .tag_area {
    margin: -1em -.5em 35px;
  }
}
.info_area .tag_area li > * {
  display: block;
  color: #fff;
  padding: .4em .9em;
  border-radius: 1.5em;
  white-space: nowrap;
  margin: 0 15px;
  font-size: 2.1rem;
  line-height: 1;
  border: 1px solid transparent;
  letter-spacing: -.1em;
  text-indent: -.1em;
}
.info_area .tag_area li > * _:-ms-lang(x)::-ms-backdrop, .info_area .tag_area li > * {
  padding: .5em .9em .2em;
}
@media screen and (min-width: 751px) {
  .info_area .tag_area li > *:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 750px) {
  .info_area .tag_area li > * {
    font-size: 1.68rem;
    margin: 1em .5em 0;
    padding: .4em .6em;
  }
}
.info_area .tag_area .tag_all {
  background: #000;
}
@media screen and (min-width: 751px) {
  .info_area .tag_area .tag_all:hover {
    background: #000;
  }
}
.info_area .tag_area .tag_01 {
  background: #8142b6;
}
@media screen and (min-width: 751px) {
  .info_area .tag_area .tag_01:hover {
    background: #8142b6;
  }
}
.info_area .tag_area .tag_02 {
  background: #eb5e19;
}
@media screen and (min-width: 751px) {
  .info_area .tag_area .tag_02:hover {
    background: #eb5e19;
  }
}
.info_area .tag_area .tag_03 {
  background: #139ece;
}
@media screen and (min-width: 751px) {
  .info_area .tag_area .tag_03:hover {
    background: #139ece;
  }
}
.info_area .tag_area .tag_04 {
  background: #179229;
}
@media screen and (min-width: 751px) {
  .info_area .tag_area .tag_04:hover {
    background: #179229;
  }
}
.info_area .tag_area .tag_05 {
  background: #d82c81;
}
@media screen and (min-width: 751px) {
  .info_area .tag_area .tag_05:hover {
    background: #d82c81;
  }
}
.info_area .tag_area .tag_off {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}
@media screen and (min-width: 751px) {
  .info_area .tag_area .tag_off:hover {
    color: #fff;
    border: 1px solid transparent;
    opacity: 1;
  }
}
.info_area .info_lists {
  width: 966px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -11px;
}
@media screen and (max-width: 750px) {
  .info_area .info_lists {
    width: 100%;
  }
}
.info_area .info_item {
  width: 322px;
  padding: 0 11px 60px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .info_area .info_item {
    width: 100%;
    padding: 0 11px 50px;
  }
}
.info_area .info_item.new::before {
  content: "NEW";
  position: absolute;
  left: 11px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 5px 10px;
  line-height: 1;
  z-index: 1;
}
.info_area .info_item.new::before _:-ms-lang(x)::-ms-backdrop, .info_area .info_item.new::before {
  padding: 7px 10px 2px;
}
.info_area .info_item .info_img {
  width: 300px;
  height: 210px;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .info_area .info_item .info_img {
    width: calc((670 / 750) * 100vw);
    height: calc((470 / 750) * 100vw);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.info_area .info_item .info_img a {
  height: 100%;
}
@media screen and (max-width: 750px) {
  .info_area .info_item .info_img a {
    display: flex;
    align-items: center;
  }
}
.info_area .info_item .info_img a img {
  max-height: 100%;
  max-width: 100%;
}
@media screen and (max-width: 750px) {
  .info_area .info_item .info_img a img {
    max-height: calc((470 / 750) * 100vw);
    width: auto;
  }
}
@media screen and (min-width: 751px) {
  .info_area .info_item .info_img a img {
    max-width: 300px;
  }
  .info_area .info_item .info_img a img:hover {
    transition-duration: 0.5s;
    transform: scale(1.1);
  }
}
.info_area .info_item .tag_area {
  justify-content: flex-start;
  margin: 20px -.4em -.4em;
}
.info_area .info_item .tag_area li > * {
  margin: .4em;
  font-size: 1.4rem;
}
.info_area .info_item .tag_area li > *:hover {
  opacity: 1;
}
.info_area .info_item .info_title {
  font-size: 1.6rem;
  padding: 18px 0 8px;
  line-height: 1.75;
  letter-spacing: calc((80 / 1000)*1em);
}
@media screen and (min-width: 751px) {
  .info_area .info_item .info_title a {
    text-decoration: underline;
  }
  .info_area .info_item .info_title a:hover {
    text-decoration: none;
  }
}
.info_area .info_item .time {
  letter-spacing: calc((80 / 1000)*1em);
  font-size: 1.2rem;
  color: #8b8b8b;
}
@media screen and (max-width: 750px) {
  .info_area .info_item {
    width: 100%;
  }
  .info_area .info_item .info_img img {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .info_area {
    display: block;
  }
}

.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1500ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

#movie{
  text-align: center;
  margin: 40px auto;
  width: 100%;
  max-width: 1040px;
}
#movie .movie__inner{
  width: 944px;
    margin: auto;
}
@media screen and (max-width: 750px) {
  #movie .movie__inner {
    width: 100%;
    min-width: 100%;
    padding: 0 calc((40 / 750) * 100vw);
  }
}

#movie iframe{
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
    vertical-align: top;
}