@charset "UTF-8";
/* Googleフォント */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@200;300;400;500;600;700&display=swap");
/* flexbox @mixin */
/* メディアクエリ @mixin */
/* Telリンク制御 */
@media (min-width: 767.98px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* カラーマップ */
/*
	* @Block: Base
	* @Description: 
*/
/* リセット */
fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

q:before, q:after {
  content: "";
}

main, article, aside, figure, footer, header, hgroup, nav, section, main {
  display: block;
  margin: 0;
  padding: 0;
}

button, fieldset, form, input, label, legend, select, textarea {
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: none;
  outline: none;
}

a:focus, *:focus {
  outline: none;
}

input[type=button], input[type=submit] {
  -webkit-appearance: none;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, p, blockquote, th, td, img, a, figure {
  margin: 0;
  padding: 0;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Base Styles */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  position: relative;
  width: auto;
  height: auto;
  background: #fff;
  z-index: 0;
  color: #212121;
  font-size: 1rem;
  font-family: "Noto Sans", sans-serif, "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 1px;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.main__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  padding: 0 2%;
}

.main__inner-narrow {
  width: 100%;
  max-width: 1008px;
  margin: 0 auto;
  position: relative;
  padding: 0 1%;
}

.main__inner-wide {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  padding: 0 2%;
}

h1:not(#top_h1) {
  font-size: 21px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

h2 {
  font-size: 16px;
  font-weight: 500;
  color: #212121;
  margin: 0 0 40px;
}
h2 span {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: #950000;
  display: block;
  margin-bottom: -8px;
}

h2 + p {
  margin: 0 0 40px;
}
h2 + p span {
  font-size: 21px;
  color: #212121;
  font-weight: bold;
  display: block;
  margin-bottom: 24px;
}

h3 {
  display: block;
  width: 100%;
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 36px;
  z-index: 0;
  color: #212121;
  border-bottom: 1px solid #950000;
  padding-bottom: 12px;
}
h3:nth-of-type(n+2) {
  margin-top: 80px;
}

h4 {
  font-size: 21px;
  font-weight: bold;
  color: #212121;
  margin-bottom: 16px;
}

section {
  padding: 80px 0;
}
section:last-of-type {
  padding: 80px 0 120px;
}
section:nth-of-type(even) {
  background: #f5f7fc;
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.ofcimage {
  -o-object-fit: cover;
     object-fit: cover;
}

.txt_indent {
  padding-left: 16px;
  text-indent: -16px;
}

/* mmenu */
.sp-menu__nav {
  visibility: hidden;
}

.mm-menu, .mm-menu_offcanvas {
  top: 0 !important;
  z-index: 9999 !important;
  visibility: visible !important;
}

.mm-wrapper__blocker {
  z-index: 9998 !important;
}

.mm-menu .mm-navbar, .mm-menu .mm-panels, .mm-menu .mm-listview, .mm-menu .mm-listitem {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.mm-menu, .mm-menu_offcanvas {
  opacity: 0;
  transition: opacity 0.2s ease;
}

html.is-mmenu-opening .mm-menu, html.is-mmenu-opening .mm-menu_offcanvas, html.is-mmenu-open .mm-menu, html.is-mmenu-open .mm-menu_offcanvas {
  opacity: 1;
}

/* Animation */
.fadein {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadein-up {
  transform: translateY(40px);
}

.fadein-up-late {
  transform: translateY(40px);
  transition-delay: 0.2s;
}

.fadein-up-morelate {
  transform: translateY(40px);
  transition-delay: 0.4s;
}

.fadein-left {
  transform: translateX(-40px);
}

.fadein-right {
  transform: translateX(40px);
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/*404*/
.not-found__inner {
  width: 100%;
  padding: 80px 0;
}
.not-found__inner > p {
  font-size: 16px;
  color: #333;
  padding: 30px 0;
}
.not-found__inner > p span {
  color: #de0515;
  display: block;
}

/*ユーティリティクラス*/
.u-mt__20 {
  margin-top: 20px;
}

.u-mt__40 {
  margin-top: 40px;
}

.u-mt__80 {
  margin-top: 80px;
}

.u-mb__20 {
  margin-bottom: 20px;
}

.u-mb__40 {
  margin-bottom: 40px;
}

.u-mb__80 {
  margin-bottom: 80px;
}

/* Pc */
@media screen and (min-width: 768px) {
  .u-hide-pc {
    display: none !important;
  }
}
/* Tab */
@media (min-width: 768px) and (max-width: 1024px) {
  .nav-container.u-hide-mobile {
    display: none !important;
  }
  .sp-menu.u-hide-pc {
    display: block !important;
  }
  .main__inner, .main__inner-narrow, .main__inner-wide {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }
  .sp-menu {
    position: absolute;
    top: 12px;
    right: 46px;
  }
  .sp-menu i {
    font-size: 30px;
    color: #0077b6;
  }
  .mm-listitem > a, .mm-listitem > span {
    font-weight: bold;
    padding: 20px 10px 20px 20px !important;
    color: #212121 !important;
  }
  .mm-listitem:nth-child(6) > a {
    background: #0077b6;
    color: #FFF !important;
    width: 80%;
    margin: 0 auto;
    border-radius: 8px;
  }
  .mm-listitem:nth-child(6), .mm-listitem:nth-child(7) {
    margin-top: 20px;
  }
  .mm-listitem:nth-child(6)::after, .mm-listitem:nth-child(6)::after {
    border: none;
  }
}
/* Sp landscape */
@media (max-height: 480px) and (orientation: landscape) {
  h1:not(#top_h1) {
    font-size: 28px;
  }
  h3 {
    font-size: 21px;
  }
  h3 + p {
    line-height: 30px;
  }
  section {
    padding: 40px 0;
  }
  section:last-of-type {
    padding: 40px 0 120px;
  }
  .u-hide-pc {
    display: block !important;
  }
  .u-hide-mobile {
    display: none !important;
  }
  .main__inner, .main__inner-narrow, .main__inner-wide {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }
  .sp-menu {
    position: absolute;
    top: 16px;
    right: 46px;
  }
  .sp-menu i {
    font-size: 30px;
    color: #0077b6;
  }
  .mm-listitem > a, .mm-listitem > span {
    font-weight: bold;
    padding: 20px 10px 20px 20px !important;
    color: #212121 !important;
  }
  .mm-listitem:nth-child(6) > a {
    background: #0077b6;
    color: #FFF !important;
    width: 80%;
    margin: 0 auto;
    border-radius: 8px;
  }
  .mm-listitem:nth-child(6), .mm-listitem:nth-child(7) {
    margin-top: 20px;
  }
  .mm-listitem:nth-child(6)::after, .mm-listitem:nth-child(6)::after {
    border: none;
  }
}
/* Sp */
@media screen and (max-width: 767.98px) {
  h1:not(#top_h1) {
    font-size: 28px;
  }
  h3 {
    font-size: 21px;
  }
  h3:nth-of-type(n+2) {
    margin-top: 40px;
  }
  h3 + p {
    line-height: 30px;
  }
  section {
    padding: 40px 0;
  }
  section:last-of-type {
    padding: 40px 0 120px;
  }
  .u-hide-mobile {
    display: none !important;
  }
  .main__inner, .main__inner-narrow, .main__inner-wide {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }
  .sp-menu {
    position: absolute;
    top: 16px;
    right: 16px;
  }
  .sp-menu i {
    font-size: 30px;
    color: #0077b6;
  }
  .mm-listitem > a, .mm-listitem > span {
    font-weight: bold;
    padding: 20px 10px 20px 20px !important;
    color: #212121 !important;
  }
  .mm-listitem:nth-child(6) > a {
    background: #0077b6;
    color: #FFF !important;
    width: 80%;
    margin: 0 auto;
    border-radius: 8px;
  }
  .mm-listitem:nth-child(6), .mm-listitem:nth-child(7) {
    margin-top: 20px;
  }
  .mm-listitem:nth-child(6)::after, .mm-listitem:nth-child(6)::after {
    border: none;
  }
}
/* Print */
@media print {
  .u-hide-pc {
    display: none !important;
  }
}
/*
	* @Block: Header
	* @Description: 
*/
.global-header {
  height: 60px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 4%;
  margin: 0 auto;
  min-width: 1120px;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 2;
}
.global-header__logo {
  max-width: 297px;
  line-height: 0;
}
.global-header__logo #top_h1 {
  margin: 0;
  padding: 0;
  line-height: 0;
}
.global-header__logo a {
  display: block;
}
.global-header__logo img {
  display: block;
  vertical-align: -20%;
}
.global-header__nav {
  width: 70%;
}
.global-header__nav nav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 6%;
}
.global-header__nav nav a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: 0.2s;
  text-decoration: none;
}
.global-header__nav nav a:last-of-type {
  background: #0077b6;
  padding: 4px 20px;
  border: 1px solid #0077b6;
  border-radius: 18px;
}
.global-header__nav nav a:hover:last-of-type {
  background: #fff;
  color: #0077b6;
  transition: 0.2s;
}

.cover-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 60px;
  padding: 0 3%;
  margin: 0 auto;
  min-width: 1120px;
  position: fixed;
  top: -100px;
  left: 0;
  background: rgba(6, 24, 51, 0.5);
  z-index: 2;
}
.cover-header__logo {
  max-width: 200px;
  line-height: 0;
}
.cover-header__logo #top_h1 {
  margin: 0;
  padding: 0;
  line-height: 0;
}
.cover-header__logo a {
  display: block;
}
.cover-header__logo img {
  display: block;
  vertical-align: -20%;
}
.cover-header__nav {
  width: 70%;
}
.cover-header__nav nav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 6%;
}
.cover-header__nav nav a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: 0.2s;
  text-decoration: none;
}
.cover-header__nav nav a:last-of-type {
  background: #0077b6;
  padding: 4px 20px;
  border: 1px solid #0077b6;
  border-radius: 18px;
}
.cover-header__nav nav a:hover:last-of-type {
  background: #fff;
  color: #0077b6;
  transition: 0.2s;
}

/* mmenuオープン中は通常ヘッダーを隠す */
html.mm-wrapper_opened .global-header, html.mm-wrapper_opened .cover-header {
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .global-header {
    height: 60px;
    min-width: 100%;
  }
  .global-header__nav nav, .cover-header {
    display: none;
  }
}
@media (max-height: 480px) and (orientation: landscape) {
  .global-header {
    height: 60px;
    min-width: 100%;
  }
}
@media screen and (max-width: 767.98px) {
  .global-header {
    width: 100%;
    height: 60px;
    min-width: 100%;
    padding: 0 2%;
    position: fixed;
    top: 0;
    transition: 0.2s;
    z-index: 10;
    background: rgba(255, 255, 255, 0.5);
    left: 0;
  }
  .global-header .global-header__logo {
    width: 50%;
    max-width: 224px;
  }
  .global-header.hide {
    transform: translateY(-100%);
  }
  .global-header .global-header__logo img {
    vertical-align: -10%;
  }
}
/*
	* @Block: Footer
	* @Description: 
*/
.footer-contact {
  width: 100%;
  padding: 80px 2%;
  background: url("../images/common/footer_contact_bk.webp") center/cover no-repeat;
}
.footer-contact h2, .footer-contact h2 + p {
  text-align: center;
  color: #fff;
}
.footer-contact__item .content-2col {
  align-items: center;
}
.footer-contact__item .content-2col__item:first-of-type {
  text-align: right;
  padding-right: 6%;
}
.footer-contact__item .content-2col__item:first-of-type a {
  text-decoration: none;
  font-family: "Cabin", sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 36px;
  color: #fff;
  letter-spacing: 4px;
}
.footer-contact__item .content-2col__item:first-of-type a i {
  font-size: 32px;
  margin-right: 16px;
}
.footer-contact__item .content-2col__item:first-of-type span {
  display: block;
  text-align: right;
  color: #fff;
}
.footer-contact__item .c-btn--large {
  margin: 0 auto;
}

.global-footer {
  width: 100%;
  background: #061833;
  padding: 50px 2%;
}

.footer__wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.footer__wrap .content-2col {
  align-items: flex-end;
}
.footer__wrap .content-2col__item:first-of-type {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px 4%;
}
.footer__wrap .content-2col__item figure {
  max-width: 297px;
}
.footer__wrap .content-2col__item address {
  color: #fff;
}
.footer__wrap .content-2col__item address a {
  text-decoration: none;
  color: #fff;
}
.footer__wrap .content-2col__item p {
  text-align: right;
  font-size: 14px;
  color: #fff;
}

.page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
.page-top a {
  display: block;
  text-decoration: none;
  background: #0077b6;
  color: #FFF;
  text-align: center;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  opacity: 0.5;
  transition: all 0.5s ease;
  padding: 16px 0;
}
.page-top a:hover {
  opacity: 1;
  transition: all 0.5s ease;
}
.page-top a i {
  display: block;
  font-size: 28px;
}

.copyright_container {
  width: 100%;
  text-align: center;
  background: #000;
  font-size: 14px;
  color: #FFF;
  padding: 14px 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .footer-contact__item .content-2col__item:first-of-type {
    padding-right: 0;
  }
}
@media (max-height: 480px) and (orientation: landscape) {
  .footer-contact__item .content-2col__item:first-of-type {
    text-align: center;
    padding-right: 0;
  }
  .footer-contact__item .content-2col__item:first-of-type span {
    text-align: center;
  }
}
@media screen and (max-width: 767.98px) {
  .footer-contact {
    padding: 40px 2% 120px;
  }
  .footer-contact__item .content-2col__item:first-of-type {
    text-align: center;
    padding-right: 0;
  }
  .footer-contact__item .content-2col__item:first-of-type span {
    text-align: center;
  }
  .global-footer {
    padding: 40px 2% 20px;
  }
}
/*
	* @Block: Components
	* @Description: 共通パーツ
*/
/* ページャー */
.pager {
  padding: 0;
  width: 100%;
  position: relative;
  text-align: center;
}
.pager .page-numbers {
  display: inline-block;
  margin: 12px 0 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  padding: 0;
  font-size: 16px;
  border: 2px #0077b6 solid;
  color: #0077b6;
  background: #fff;
  transition: 0.3s;
}
.pager .page-numbers:hover {
  background: #FFF;
  border: 2px #0E6B9E solid;
  color: #FF7300;
  opacity: 1;
  transition: 0.3s;
}
.pager a {
  text-decoration: none;
}
.pager .current {
  background: #0077b6;
  border: 2px #0077b6 solid;
  color: #FFF;
}

/* table */
.content__table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #4d4d4d;
}
.content__table table thead {
  border-bottom: 1px solid #4d4d4d;
}
.content__table table thead th {
  border-right: 1px solid #fff;
  padding: 16px;
  color: #fff;
  background: #67ac84;
  text-align: center;
}
.content__table table thead th:last-of-type {
  border-right: none;
}
.content__table table tbody tr {
  border-bottom: 1px solid #4d4d4d;
}
.content__table table tbody th, .content__table table tbody td {
  padding: 16px 10px;
  text-align: center;
  border-right: 1px solid #4d4d4d;
}
.content__table table tbody th {
  width: 20%;
  font-size: 18px;
}
.content__table table tbody td a {
  text-decoration: none;
  color: #18933b;
}
.content__table--1col, .content__table--1col1low {
  width: 100% !important;
}
.content__table--1col1low p, .content__table--2col1low p {
  padding: 16px;
  border-bottom: 1px solid #4d4d4d;
}

/* parts */
.common-parts table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.common-parts table tr {
  border-bottom: 1px solid #ddd;
}
.common-parts table tr:last-of-type {
  border-bottom: none;
}
.common-parts table th, .common-parts table td {
  vertical-align: top;
}
.common-parts table th a, .common-parts table td a {
  text-decoration: none;
  color: inherit;
}
.common-parts table th {
  width: 30%;
  padding: 24px 0;
}
.common-parts table td {
  width: 70%;
  padding: 24px 0;
}
.common-parts ul {
  width: 100%;
  margin-top: 40px;
}
.common-parts ul li {
  list-style: disc;
  margin: 8px 0 8px 24px;
}

.c-btn--large {
  overflow: hidden;
  z-index: 1;
  display: block;
  position: relative;
  width: 378px;
  margin: 40px auto 0;
  background: #0077b6;
  padding: 20px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
}
.c-btn--large::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgb(0, 152.3461538462, 233);
  transition: all 0.2s;
  z-index: -1;
}
.c-btn--large:hover::before {
  width: 100%;
}
.c-btn--large i {
  margin-left: 24px;
}

.c-btn--small {
  overflow: hidden;
  z-index: 1;
  display: block;
  position: relative;
  width: 247px;
  margin: 20px auto 0;
  background: transparent;
  padding: 12px;
  color: #950000;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
  border: 1px solid #950000;
}
.c-btn--small::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #950000;
  transition: all 0.2s;
  z-index: -1;
}
.c-btn--small:hover {
  color: #fff;
}
.c-btn--small:hover::before {
  width: 100%;
}
.c-btn--small i {
  margin-left: 16px;
}

.content-2col {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px 2%;
}
.content-2col__item, .content-2col figure {
  width: 48.21%;
}

.content-3col {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px 2%;
}
.content-3col__item {
  width: 32%;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .c-btn--large, .c-btn--small {
    width: 100%;
  }
}
@media (max-height: 480px) and (orientation: landscape) {
  .c-btn--large, .c-btn--small {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .c-btn--large, .c-btn--small {
    width: 100%;
  }
  .content-2col .content-2col__item, .content-2col figure {
    width: 100%;
  }
  /*.content__table tbody th,.content__table tbody td {display:block;width:100%;}
  .content__table tbody th {padding:16px 0 8px;}
  .content__table tbody td {padding:8px 0 16px;}*/
  .content__table table {
    white-space: nowrap;
  }
  .content__table--1col1low p, .content__table--2col1low p {
    padding: 12px 8px;
  }
  .common-parts table th {
    width: 100%;
    display: block;
    padding: 16px 0 8px;
  }
  .common-parts table td {
    width: 100%;
    display: block;
    padding: 8px 0 16px;
  }
}
/*
	* @Block: News
	* @Description: お知らせ
*/
.info_container article {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 1%;
  position: relative;
  z-index: 0;
  transition: 0.2s;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e7e7e7;
}
.info_container article:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.info_container article a {
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.info_container article:hover i {
  background: #950000;
  color: #fff;
}
.info_container article time {
  width: 10%;
}
.info_container article p {
  width: 70%;
}
.info_container article i {
  border: 1px solid #950000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #950000;
  font-size: 18px;
  transition: 0.2s;
}

.info-single__container h2 {
  font-size: 24px;
  color: #0b3f7a;
  margin-bottom: 20px;
}
.info-single__container h2 + p {
  font-size: 14px;
  color: #950000;
  margin-bottom: 40px;
}

/* エディター */
.editor_area {
  width: 100%;
  margin: 20px 0;
}
.editor_area img {
  max-width: 100%;
  margin: 20px 0;
  border: none !important;
  width: auto;
  height: auto; /*min-width:50%;*/
}
.editor_area .size-thumbnail {
  width: 32% !important;
  margin-right: 16px !important;
}
.editor_area .size-thumbnail:nth-of-type(3n) {
  margin-right: 0 !important;
}
.editor_area .size-medium {
  width: 49% !important;
  margin-right: 15px !important;
}
.editor_area .size-medium:nth-of-type(2n) {
  margin-right: 0 !important;
}
.editor_area .size-large {
  width: 100% !important;
}
.editor_area p {
  margin-top: 16px;
  font-size: 16px;
  color: #444;
  word-break: break-all;
}
.editor_area strong {
  font-weight: 700;
}
.editor_area em {
  font-style: italic;
}
.editor_area ul {
  margin-top: 24px;
  list-style: disc;
  padding-left: 4.2rem;
}
.editor_area ul li {
  margin-top: 8px;
}
.editor_area ul li:first-child {
  margin-top: 0;
}
.editor_area ol {
  margin-top: 24px;
  list-style: decimal;
  padding-left: 4.2rem;
}
.editor_area ol li {
  margin-top: 8px;
}
.editor_area ol li:first-child {
  margin-top: 0;
}
.editor_area hr {
  border-top: 1px #cccccc dotted;
  margin-top: 32px;
  margin-bottom: 32px;
}
.editor_area > h4 {
  margin: 12px 0;
  color: #444;
  font-size: 16px;
}
.editor_area h3 + p, .editor_area h3 + ul, .editor_area h3 + ol {
  margin-top: 10px;
}
.editor_area h4 + p, .editor_area h4 + ul, .editor_area h4 + ol {
  margin-top: 10px;
}
.editor_area a { /*text-decoration: none;*/
  color: #DE0515;
  font-size: 16px;
  margin: 10px 0;
}
.editor_area blockquote {
  position: relative;
  padding: 30px 15px 8px 15px;
  box-sizing: border-box;
  font-style: italic;
  background: #efefef;
  color: #555;
  width: 80%;
  margin: 30px auto;
}
.editor_area blockquote:before {
  display: inline-block;
  position: absolute;
  top: 13px;
  left: 15px;
  content: "\f10d";
  font-family: FontAwesome;
  color: #cfcfcf;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}
.editor_area blockquote p {
  padding: 0;
  margin: 10px 0;
  line-height: 1.7;
}
.editor_area blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}
.editor_area table {
  border: 1px solid #333;
  max-width: 100%;
  padding: 4px;
  box-sizing: border-box;
  border-collapse: collapse;
}
.editor_area table tr {
  border-bottom: 1px solid #333;
}
.editor_area table td {
  border-right: 1px solid #333;
  padding: 6px;
  box-sizing: border-box; /*&:last-of-type {border:none;}*/
}

@media (max-height: 480px) and (orientation: landscape) {
  .info_container article time {
    width: 20%;
  }
}
@media screen and (max-width: 767.98px) {
  .info_container article time {
    width: 100%;
  }
  .info_container article p {
    width: 80%;
  }
  .editor_area .size-thumbnail {
    display: block;
    width: 80% !important;
    margin: 0 auto 10px !important;
  }
  .editor_area .size-thumbnail:nth-of-type(3n) {
    margin: 0 auto 10px !important;
  }
  .editor_area .size-medium {
    display: block;
    width: 100% !important;
    margin: 0 0 10px !important;
  }
  .editor_area {
    padding-bottom: 40px;
  }
}
/*
	* @Block: Contact
	* @Description: お問い合わせ
*/
.contact-phone {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  gap: 20px 2%;
}
.contact-phone p {
  width: 40%;
}
.contact-phone div {
  text-align: right;
}
.contact-phone div a {
  text-decoration: none;
  font-family: "Cabin", sans-serif;
  font-size: 48px;
  color: #0077b6;
  font-weight: 500;
}
.contact-phone div i {
  font-size: 41px;
  margin-right: 12px;
}
.contact-phone div span {
  display: block;
  text-align: right;
  font-size: 14px;
  color: #212121;
}

.contact-form ul {
  width: 80%;
  margin: 0 auto;
}
.contact-form li {
  list-style: disc;
  margin: 6px 0 6px 20px;
}

.contact-form__container {
  width: 100%;
  margin: 0 auto;
}
.contact-form__container table {
  width: 100%;
  margin-top: 50px;
  table-layout: fixed;
  border-collapse: collapse;
}
.contact-form__container table tr {
  border-bottom: 1px solid #ccc;
}
.contact-form__container table tr:last-child {
  border-bottom: none;
}
.contact-form__container table th {
  width: 30%;
  padding: 24px;
  vertical-align: top;
}
.contact-form__container table th span {
  font-size: 14px;
  color: #fff;
  background: #d63317;
  padding: 0 10px;
  float: right;
  border-radius: 2px;
}
.contact-form__container table td {
  padding: 24px;
}
.contact-form__container table .optionalicon {
  font-size: 14px;
  color: #2D4675;
  text-align: center;
  padding: 2px 15px;
  background: #ABD8FF;
  border-radius: 12px;
  margin-right: 30px;
}

.agreementicon {
  font-size: 14px;
  color: #fff;
  background: #d63317;
  padding: 0 10px;
  margin-right: 20px;
}

.privacypolicy {
  position: relative;
  width: 100%;
  height: 300px;
  margin: 24px auto;
  padding: 24px;
  border: 1px #ddd solid;
  background: #f5f7fc;
  overflow-y: scroll;
  text-align: left !important;
}
.privacypolicy p {
  text-align: left !important;
}
.privacypolicy p:first-of-type {
  font-size: 18px;
  font-weight: bold;
}
.privacypolicy h4 {
  margin: 20px 0 5px;
  font-weight: bold;
}

.privacypolicy::-webkit-scrollbar {
  width: 8px;
}

.privacypolicy::-webkit-scrollbar-track {
  background: #ccc;
}

.privacypolicy::-webkit-scrollbar-thumb {
  background: #999;
}

.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha_policy {
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 11px !important;
  color: #888 !important;
}

.recaptcha_policy a {
  font-size: 11px !important;
  color: #666 !important;
}

.thanks_container {
  text-align: center;
}
.thanks_container h3 {
  border-bottom: none;
}
.thanks_container .c-btn--large {
  margin: 40px auto 0;
}

/* フォーム */
input[type=text], input[type=tel], input[type=email], textarea, select {
  -webkit-appearance: none;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 15px;
  background: #FFF;
  border-radius: 3px;
  transition: all 0.3s;
  border: 1px solid #ccc;
}
input[type=text].w100, input[type=tel].w100, input[type=email].w100, textarea.w100, select.w100 {
  width: 98%;
}
input[type=text].w80, input[type=tel].w80, input[type=email].w80, textarea.w80, select.w80 {
  width: 80%;
}
input[type=text].w60, input[type=tel].w60, input[type=email].w60, textarea.w60, select.w60 {
  width: 60%;
}
input[type=text].w40, input[type=tel].w40, input[type=email].w40, textarea.w40, select.w40 {
  width: 40%;
}
input[type=text].w30, input[type=tel].w30, input[type=email].w30, textarea.w30, select.w30 {
  width: 30%;
}

/*input[type="text"]:focus , input[type="tel"]:focus , input[type="email"]:focus , textarea:focus {
  box-shadow: 0 0 4px #86BBCD;
  border: 1px solid #86BBCD;
}*/
input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  display: inline-block;
  position: relative;
  text-align: center;
  cursor: pointer;
  width: 18px;
  height: 18px;
  margin: 0 10px;
  vertical-align: middle;
}
input[type=checkbox]::before {
  display: block;
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  background: #fff;
  border: solid 1px rgb(29, 176.7692307692, 255);
  margin-top: -2px;
}
input[type=checkbox]:checked::before {
  background-color: #0077b6;
}
input[type=checkbox]::after {
  display: block;
  content: "";
  position: absolute;
  left: 8px;
  top: 2px;
  width: 4px;
  height: 12px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  opacity: 0;
}
input[type=checkbox]:checked::after {
  opacity: 1;
}

input[type=file] {
  padding: 10px 0;
  transition: all 0.3s;
}

input[type=radio] {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

textarea {
  height: 160px;
}

::-webkit-input-placeholder {
  color: #cccccc;
}

::-moz-placeholder {
  color: #cccccc;
}

:-ms-input-placeholder {
  color: #cccccc;
}

input[type=submit] {
  display: block;
  width: 320px;
  margin: 40px auto;
  border: 1px solid #0077b6;
  background: #0077b6;
  padding: 14px;
  box-sizing: border-box;
  font-size: 16px;
  color: #fff;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}
input[type=submit]:hover {
  background: #fff;
  color: #0077b6;
  transition: 0.3s;
}

input[type=button] {
  display: block;
  width: 320px;
  margin: 40px auto;
  border: 1px solid #a4a4a5;
  background: #a4a4a5;
  padding: 14px;
  box-sizing: border-box;
  font-size: 16px;
  color: #fff;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact-phone p {
    width: 48%;
  }
}
@media (max-height: 480px) and (orientation: landscape) {
  .contact-phone p, .contact-phone div {
    width: 100%;
    text-align: center;
  }
  .contact-phone div, .contact-phone div span {
    text-align: center;
  }
}
@media screen and (max-width: 767.98px) {
  .contact-phone p, .contact-phone div {
    width: 100%;
  }
  .contact-phone div a {
    font-size: 38px;
  }
  .contact-form ul {
    width: 100%;
  }
  .contact-form {
    padding: 40px 0;
  }
  .contact-form__container {
    width: 90%;
    margin: 40px auto 0;
  }
  .contact-form__container table tr:last-of-type th {
    padding-top: 16px;
  }
  .contact-form__container table th {
    width: 100%;
    display: block;
    padding: 10px 0 0;
  }
  .contact-form__container table td {
    width: 100%;
    display: block;
    padding: 20px 0;
    border-bottom: 0;
  }
  .privacypolicy {
    width: 100%;
  }
  input[type=button] {
    width: 80%;
    margin: -10px auto 0;
  }
  input[type=submit] {
    width: 80%;
  }
  input[type=text], input[type=tel], input[type=email], textarea, select {
    background: #fff;
  }
  input[type=text].w40, input[type=tel].w40, input[type=email].w40, textarea.w40, select.w40 {
    width: 100%;
    margin: 0;
  }
  input[type=text].w60, input[type=tel].w60, input[type=email].w60, textarea.w60, select.w60 {
    width: 100%;
    margin: 0;
  }
  input[type=text].w80, input[type=tel].w80, input[type=email].w80, textarea.w80, select.w80 {
    width: 100%;
    margin: 0;
  }
  input[type=text].w100, input[type=tel].w100, input[type=email].w100, textarea.w100, select.w100 {
    width: 100%;
    margin: 0;
  }
  textarea {
    margin-left: 0;
  }
}
/*
	* @Block: front/top
	* @Description: 
*/
.main__cover {
  width: 100vw;
  height: 100vh;
  z-index: 0;
  position: relative; /* padding:20px 34px 20px 20px; */
}
.main__cover video {
  width: 100%;
  height: 100%; /* border-radius:30px; */
  -o-object-fit: cover;
     object-fit: cover;
}
.main__cover .movie {
  width: 100%;
  height: 100%;
  font-size: 0;
  position: relative;
}
.main__cover .movie:before {
  width: 100%;
  height: 100%;
  content: "";
  background: url(../images/common/bg-overlay.png) transparent;
  opacity: 0.1;
  position: absolute;
}

.top-product {
  padding: 80px 0;
}
.top-product .content-2col__item p {
  line-height: 31px;
}
.top-product .content-2col__item figure {
  width: 100%;
}
.top-product .content-2col__item figure img {
  border-radius: 20px;
}
.top-product .content-2col__item .c-btn--small {
  margin: 24px 0 0 auto;
}

.top-advantages {
  width: 100%;
  padding: 80px 0;
  background: #f5f7fc;
}
.top-advantages__item {
  width: 100%;
  height: 320px;
  box-shadow: 0px 0px 10px rgba(109, 109, 109, 0.4);
  padding: 40px 50px;
  border-radius: 20px;
}
.top-advantages__item:nth-of-type(n+2) {
  margin-top: 40px;
}
.top-advantages__item:first-of-type {
  background: url("../images/home/top_adv_bk01.webp") left/cover no-repeat;
}
.top-advantages__item:nth-of-type(2) {
  background: url("../images/home/top_adv_bk02.webp") left/cover no-repeat;
}
.top-advantages__item:last-of-type {
  background: url("../images/home/top_adv_bk03.webp") left/cover no-repeat;
}
.top-advantages__item--title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}
.top-advantages__item--title span {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 41px;
  color: #67AC84;
  margin-right: 8px;
  vertical-align: -20%;
}
.top-advantages__item p {
  width: 60%;
  color: #212121;
  line-height: 31px;
}

.top-about {
  width: 100%;
  padding: 80px 0;
}
.top-about h2, .top-about h2 + p {
  text-align: center;
}
.top-about .content-2col__item {
  height: 154px;
  position: relative;
  z-index: 0;
  padding: 60px 0;
  border-radius: 16px;
}
.top-about .content-2col__item a {
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.top-about .content-2col__item:hover {
  opacity: 0.7;
  transition: 0.2s;
}
.top-about .content-2col__item:first-of-type {
  background: url("../images/home/top_about_bk01.webp") center/cover no-repeat;
}
.top-about .content-2col__item:last-of-type {
  background: url("../images/home/top_about_bk02.webp") center/cover no-repeat;
}
.top-about .content-2col__item p {
  text-align: center;
  color: #fff;
  font-size: 25px;
  font-weight: bold;
}
.top-about .content-2col__item p i {
  margin-left: 16px;
}

.top-news {
  width: 100%;
  padding: 80px 0;
  background: #f5f7fc;
}
.top-news .content-2col__item:first-of-type {
  width: 24%;
}
.top-news .content-2col__item:last-of-type {
  width: 70%;
}
.top-news .content-2col__item .c-btn--small {
  margin: 60px auto 0 0;
}
.top-news__item article {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #fff;
  position: relative;
  z-index: 0;
}
.top-news__item article a {
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.top-news__item article:hover i {
  background: #950000;
  color: #fff;
}
.top-news__item article span {
  width: 12%;
}
.top-news__item article p {
  width: 72%;
}
.top-news__item article i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #950000;
  color: #950000;
  text-align: center;
  line-height: 40px;
  transition: 0.2s;
}

.top-slide {
  width: 100%;
  padding: 0 0 80px;
  margin-top: -90px;
  z-index: 1;
  position: relative;
}
.top-slide .slider {
  width: 100%;
}
.top-slide .slider li {
  width: 360px;
  margin: 0 20px;
}
.top-slide .slider li p {
  border-left: 2px solid #950000;
  margin: 16px 4px 0;
  padding-left: 16px;
  font-size: 18px;
  font-weight: 500;
}
.top-slide .slider img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.top-slide p.slide-ttl {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 46px;
  color: #fff;
  padding-right: 2%;
  font-weight: 300;
  font-style: italic;
  text-align: right;
}
.top-slide p.slide-ttl span {
  color: #950000;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .main__cover {
    height: 500px;
  }
  .top-advantages__item {
    padding: 40px 30px;
  }
  .top-advantages__item:first-of-type, .top-advantages__item:nth-of-type(2), .top-advantages__item:last-of-type {
    background-position: 60%;
  }
  .top-news .content-2col__item:first-of-type, .top-news .content-2col__item:last-of-type {
    width: 100%;
  }
  .top-news .content-2col__item:first-of-type {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .top-news .content-2col__item:first-of-type h2 {
    margin: 0;
  }
  .top-news .content-2col__item:first-of-type .c-btn--large, .top-news .content-2col__item:first-of-type .c-btn--small {
    width: 247px;
    margin: 0;
  }
}
@media (max-height: 480px) and (orientation: landscape) {
  .main__cover {
    height: 400px;
  }
  .top-product, .top-advantages, .top-about, .top-news {
    padding: 40px 0;
  }
  .top-advantages .top-advantages__item .u-hide-pc {
    display: none !important;
  }
  .top-news .content-2col__item:first-of-type, .top-news .content-2col__item:last-of-type {
    width: 100%;
  }
  .top-news .content-2col__item:first-of-type {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .top-news .content-2col__item:first-of-type h2 {
    margin: 0;
  }
  .top-news .content-2col__item:first-of-type .c-btn--large, .top-news .content-2col__item:first-of-type .c-btn--small {
    width: 247px;
    margin: 0;
  }
  .top-news__item article {
    align-items: center;
  }
  .top-news__item article p {
    width: 82%;
  }
  .top-news__item article span {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .main__cover {
    height: 34vh;
    padding: 0;
  }
  .main__cover video {
    border-radius: 0;
  }
  .top-product, .top-advantages, .top-about, .top-news {
    padding: 40px 0;
  }
  .top-advantages__item {
    height: auto;
    padding: 36px 20px 36px 36px;
    border-radius: 16px;
  }
  .top-advantages__item:first-of-type, .top-advantages__item:nth-of-type(2), .top-advantages__item:last-of-type {
    background: linear-gradient(to right, #950000 12px, #fff 12px);
  }
  .top-product .content-2col__item figure img {
    border-radius: 14px;
  }
  .top-advantages__item p {
    width: 100%;
  }
  .top-advantages__item figure {
    margin-top: 16px;
  }
  .top-advantages__item figure img {
    border-radius: 12px;
  }
  .top-news .content-2col__item:first-of-type, .top-news .content-2col__item:last-of-type {
    width: 100%;
  }
  .top-news .content-2col__item .c-btn--small {
    margin: 40px auto 0 0;
  }
  .top-news__item article {
    align-items: center;
  }
  .top-news__item article p {
    width: 82%;
  }
  .top-news__item article span {
    width: 100%;
  }
  .top-slide {
    margin-top: 0;
    padding: 20px 0 80px;
  }
  .top-slide p.slide-ttl {
    margin-bottom: 6px;
    font-size: 28px;
    padding-right: 0;
    text-align: center;
    color: #12438c;
    font-weight: 300;
  }
}
/*
	* @Block: lv1-common
	* @Description: 下層共通
*/
.lv1-cover {
  width: 100%;
  padding: 20px;
  position: relative;
  z-index: 0;
  min-width: 1120px;
}
.lv1-cover__bk {
  width: 100%;
  height: 400px;
  max-width: 1800px;
  border-radius: 20px;
  margin: 0 auto;
  padding: 140px 0;
}
.lv1-cover__bk.about {
  background: url("../images/lv1/lv1-cover_about.webp") right/cover no-repeat;
}
.lv1-cover__bk.products {
  background: url("../images/lv1/lv1-cover_product.webp") center/cover no-repeat;
}
.lv1-cover__bk.contact {
  background: url("../images/lv1/lv1-cover_contact.webp") center/cover no-repeat;
}
.lv1-cover__bk.news {
  background: url("../images/lv1/lv1-cover_news.webp") center/cover no-repeat;
}
.lv1-cover__bk span {
  display: block;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 36px;
  color: #fff;
  position: relative;
}
.lv1-cover__bk span::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.content-lead .lead-text {
  text-align: center;
  font-size: 21px;
  color: #212121;
  font-weight: bold;
  margin-bottom: 40px;
}
.content-lead img {
  border-radius: 20px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .lv1-cover {
    min-width: 100%;
  }
  .lv1-cover__bk {
    height: 300px;
    padding: 110px 0;
  }
}
@media (max-height: 480px) and (orientation: landscape) {
  .lv1-cover {
    min-width: 100%;
  }
  .lv1-cover__bk {
    height: 240px;
    padding: 90px 0;
  }
  .lv1-cover__lead p {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 767.98px) {
  .lv1-cover {
    min-width: 100%;
    padding: 0;
  }
  .lv1-cover__bk {
    width: 100%;
    height: 240px;
    padding: 90px 0 0;
    border-radius: 0;
  }
  .lv1-cover__lead p {
    font-size: 16px;
    line-height: 28px;
  }
}
/*
	* @Block: about
	* @Description: 
*/
.about-content .content-3col__item {
  border-top: 5px solid #950000;
  box-shadow: 0px 0px 10px rgba(109, 109, 109, 0.4);
  padding: 16px;
  background: #fff;
  height: 472px;
}
.about-content .content-3col__item:last-of-type .about-content--lead {
  font-size: 19px;
}
.about-content .content-3col__item:last-of-type .about-content--lead span {
  margin-right: 0;
}
.about-content--lead {
  font-size: 20px;
  font-weight: bold;
  line-height: normal;
  margin-bottom: 16px;
}
.about-content--lead span {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 41px;
  color: #67AC84;
  margin-right: 8px;
  vertical-align: -10%;
}
.about-content figure {
  margin-top: 16px;
}

@media (max-width: 767.98px) {
  .about-content .content-3col__item {
    width: 100%;
  }
}
/*
	* @Block: products
	* @Description: 
*/
.service {
  width: 100%;
  background: #f5f7fc;
  border-top: 5px solid #950000;
  padding: 40px 30px;
  margin-top: 60px;
  box-shadow: 10px 20px 90px rgba(61, 113, 191, 0.25);
}
.service__item--text {
  width: 60%;
}
.service__item--title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}
.service__item--title span {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 41px;
  color: #67AC84;
  margin-right: 8px;
  vertical-align: -20%;
}
.service__item figure {
  width: 38%;
}
.service__item figure img {
  border-radius: 16px;
}
.service__item:nth-of-type(n+2) {
  margin-top: 60px;
}
.service__item:nth-of-type(even) {
  flex-direction: row-reverse;
}

.facility-slide {
  margin-bottom: 60px;
}

.simply-scroll {
  width: 100%;
}
.simply-scroll .simply-scroll-clip {
  width: 100%;
  height: 238px;
}
.simply-scroll .simply-scroll-clip li {
  float: left;
  width: 367px;
  height: 100%;
}

.simply-scroll-container {
  position: relative;
}

.simply-scroll-clip {
  position: relative;
  overflow: hidden;
}

.simply-scroll-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
}
.simply-scroll-list li {
  padding: 0;
  margin: 0 10px;
  list-style: none;
}
.simply-scroll-list li img {
  border: none;
  display: block;
}

@media (max-width: 767.98px) {
  .service {
    padding: 16px;
    margin-top: 40px;
  }
  .service__item--title span {
    font-size: 28px;
    vertical-align: -10%;
  }
  .simply-scroll .simply-scroll-clip {
    height: 120px;
  }
  .simply-scroll .simply-scroll-clip li {
    width: 195px;
  }
  .service__item figure {
    width: 100%;
  }
}
/*
	* @Block: 装飾
	* @Description: additional style
*/
.bk-logo-left, .bk-logo-right {
  position: relative;
}
.bk-logo-left::after, .bk-logo-right::after {
  content: "";
  background: url(../images/common/bglogo.png) center/cover no-repeat;
  position: absolute;
  width: 830px;
  height: 478px;
  z-index: -1;
}

.bk-logo-left::after {
  top: 150px;
  left: 15%;
}

.bk-logo-right::after {
  top: 40px;
  right: 15%;
}

.bg-color-animation {
  background: linear-gradient(45deg, #FFFFFF, #F5F7FC, #A0BBFF);
  background-size: 600% 600%;
  animation: GradientBackground 16s linear infinite;
}

@keyframes GradientBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.bg-text-slide {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.bg-text-slide::before {
  content: "";
  background: url(../images/common/toleft.svg) left center/auto 242px repeat-x;
  position: absolute;
  top: 0;
  left: 0;
  width: 5016px; /* SVG幅 2508px × 2 */
  height: 242px;
  z-index: -1;
  animation: txtslide-toleft 16s linear infinite;
}
.bg-text-slide::after {
  content: "";
  background: url(../images/common/toright.svg) left center/auto 238px repeat-x;
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 4960px; /* SVG幅 2480px × 2 */
  height: 238px;
  z-index: -1;
  animation: txtslide-toright 16s linear infinite;
}

.bg-text-slide__bottom {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.bg-text-slide__bottom::after {
  content: "";
  background: url(../images/common/toleft.svg) left center/auto 238px repeat-x;
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 4960px; /* SVG幅 2480px × 2 */
  height: 238px;
  z-index: -1;
  animation: txtslide-toright 16s linear infinite;
}

/* 左へ流れる */
@keyframes txtslide-toleft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2508px);
  } /* SVGの元の幅分だけ移動 */
}
/* 右へ流れる */
@keyframes txtslide-toright {
  0% {
    transform: translateX(-2480px);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-height: 480px) and (orientation: landscape) {
  .bk-logo-left::after, .bk-logo-right::after {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .bk-logo-left::after, .bk-logo-right::after {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */