@charset "utf-8";

/*---------------------------------------------------------------------------------------------

ベース

---------------------------------------------------------------------------------------------*/

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: 'Zen Maru Gothic', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

html, body {
  overflow-x: hidden;
}

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

button[disabled] {
  color: #757171 !important;
  background-color: #bab8b8 !important;
  pointer-events: none;
}

button[disabled].link_btn::before {
  background-color: #bab8b8 !important;
}

.btn_box {
    position: relative;
    z-index: 1;
}

.link_btn {
  position: relative;
    width: 264px;
    height: 62px;
    background: #FFF;
    border: 4px solid #383838;
    border-radius: 31px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #000;
    margin: auto;
    transition: all 0.2s ease;
}

.link_btn p {
    width: 100%;
    text-align: center;
    position: relative;
}

.link_btn p::after {
  position: absolute;
  content: "";
  background: url('/assets/img/btn_arrow.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 1;
}

.link_btn.insta p::after {
  position: absolute;
  content: "";
  background: url('/assets/img/btn_arrow_blank.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 1;
}

.link_btn::before {
    position: absolute;
    content: "";
    width: 264px;
    height: 62px;
    background: #FFF;
    border: 4px solid #383838;
    border-radius: 31px;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: -1;
    transition: all 0.2s ease;
}

.link_btn:hover {
  background: #FBDB4C;
}

.link_btn:hover::before {
  top: 0;
}

.main {
  min-width: 1280px;
}

@media screen and (max-width: 768px) {

  body {
  }

  .main {
    min-width: auto;
  }

}

/*---------------------------------------------------------------------------------------------

FLEX

---------------------------------------------------------------------------------------------*/

.flex {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.al-start {
  -webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.al-center {
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.jt-center {
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.jt-around {
  -ms-flex-pack: distribute;
	justify-content: space-around;
}

.jt-between {
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.jt-start {
  -webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.jt-end {
  -webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.flex_wrap {
  -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}

@media screen and (max-width: 768px) {

  .sp_noflex {
    display: block;
  }

  .sp_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

}

/*---------------------------------------------------------------------------------------------

PC

---------------------------------------------------------------------------------------------*/

@media screen and (min-width: 769px) {

  .onlyPC {
    display: block;
  }

  .onlySP {
    display: none !important;
  }

  .custom-next,
  .custom-prev {
    display: none;
  }

}

/*---------------------------------------------------------------------------------------------

SP

---------------------------------------------------------------------------------------------*/


@media screen and (max-width: 768px) {

  .onlyPC {
    display: none !important;
  }

  .onlySP {
    display: block;
  }

}

/*---------------------------------------------------------------------------------------------

ハンバーガーメニュー

---------------------------------------------------------------------------------------------*/

.hamburger {
  margin: auto;
    display: block;
    position: relative;
    z-index: 3;
    left: 0;
    top: 0;
    width: 36px;
    height: 22px;
    cursor: pointer;
    text-align: center;
}
.hamburger span {
  display: block;
    position: absolute;
    width: 25px;
    height: 2px;
    left: 6px;
    background: #FFF;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 9px;
}
.hamburger span:nth-child(2) {
  top: 18px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 10px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  padding-top: 10%;
  position: fixed;
  z-index : 9;
  z-index : 99999;
  top  : 0;
  left : 0;
  background: #CFECF1;
  text-align: center;
  transform: translateY(100%);
  transition: all 0.6s;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

nav.globalMenuSp ul {
  margin: 25px auto 50px auto;
  padding: 0;
  display: block;
  width: 90%;
  border: 1px solid #707070;
  border-radius: 11px;
  background: #FFF;
}

nav.globalMenuSp ul li {
  position: relative;
  font-size: 1.3rem;
  position: relative;
  list-style-type: none;
/*  padding: 10px 20px;*/
  width: 100%;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #707070;
}

nav.globalMenuSp ul li::after {
  position: absolute;
  content: "";
  background: url('/assets/img/sp_list_arrow.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 12px;
  height: 15px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: .3s;
}

nav.globalMenuSp ul li:hover::after {
  right: 10px;
}

nav.globalMenuSp ul li:last-child {
  border-bottom: none;
}

nav.globalMenuSp ul li a {
    display: block;
    /* padding: 1em 0; */
    padding: 20px 20px;
    text-decoration: none;
    width: 100%;
    text-align: left;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}


/*---------------------------------------------------------------------------------------------

フェードインアニメーション

---------------------------------------------------------------------------------------------*/


.view.on {
    opacity: 1;
    transform: translate(0px,0px);
    visibility: visible;
}
.view {
    transition: 1.2s;
    opacity: 0;
    transform: translate(0px,60px);
}

/*---------------------------------------------------------------------------------------------

ヘッダー

---------------------------------------------------------------------------------------------*/

.head_cont {
  padding: 20px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
  z-index: 9999;
  background: #FFF;
}

.head_logo img {
  max-width: 160px;
}

.head_logo span {
  font-size: 1.4rem;
  font-weight: bold;
}

.head_logo p {
  font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: .1em;
    margin-top: 5px;
}

.head_menu_pc li {
  font-size: 1.6rem;
  padding: 0 20px;
  position: relative;
}

.head_menu_pc li:first-of-type::before {
  position: absolute;
  content: "";
  background: url('/assets/img/kumo_head01.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 54px;
  height: 38px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: -1;
}

.head_menu_pc li:nth-of-type(2)::before {
  position: absolute;
  content: "";
  background: url('/assets/img/kumo_head02.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 54px;
  height: 38px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: -1;
}

.head_menu_pc li:nth-of-type(3)::before {
  position: absolute;
  content: "";
  background: url('/assets/img/kumo_head03.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 54px;
  height: 38px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: -1;
}

.head_menu_pc li:nth-of-type(4)::before {
  position: absolute;
  content: "";
  background: url('/assets/img/kumo_head04.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 54px;
  height: 38px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: -1;
}

.head_menu_pc li:last-of-type::before {
  position: absolute;
  content: "";
  background: url('/assets/img/kumo_head05.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 54px;
  height: 38px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: -1;
}

@media screen and (max-width: 768px) {

  .head_cont {
    justify-content: center !important;
  }

  .head_logo img {
    max-width: 120px;
  }

  .head_logo span {
    font-size: 1.1rem;
  }

  .head_logo p {
    font-size: 1.8rem;
  }

  .head_cont_sp {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #4563A9;
    z-index: 10;
  }

  .head_cont_sp ul li {
    width: 25%;
    padding: 5px;
    border-right: 1px solid #293E6E;
    margin: 10px 0;
  }

  .head_cont_sp ul li:last-of-type {
    border-right: none;
  }

  .head_cont_sp ul li img {
    max-width: 24px;
    display: block;
    margin: auto;
  }

  .head_cont_sp ul li p {
    font-size: 1.1rem;
    font-weight: bold;
    color: #FFF;
    text-align: center;
    margin-top: 10px;
  }

  .sp_menu_insta {
    display: block;
    max-width: 50px;
    margin: 50px auto 0 auto;
  }

  .sp_menu_close {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: flex-end;
  }

  .sp_menu_close img {
    max-width: 36px;
  }

  .sp_menu_kumo01 {
    position: absolute;
    max-width: 200px;
    right: -10%;
    top: 50%;
    z-index: -1;
  }

  .sp_menu_kumo02 {
    position: absolute;
    max-width: 200px;
    left: -10%;
    bottom: 12%;
    z-index: -1;
  }

}


/*---------------------------------------------------------------------------------------------

フッター

---------------------------------------------------------------------------------------------*/

.foot_top {
  max-width: 1000px;
  width: 90%;
  margin: auto;
}

.foot_logo img {
  max-width: 160px;
}

.foot_logo span {
  font-size: 1.4rem;
  font-size: 11px;
  letter-spacing: .1em;
  font-weight: bold;
}

.foot_logo p {
  font-size: 2.5rem;
  letter-spacing: .15em;
  font-weight: bold;
}

.foot_middle {
  width: 100%;
    margin: auto;
    margin-top: 120px;
    padding-top: 120px;
    padding-bottom: 30px;
    background: #d0ecf1;
}

.foot_map img {
  max-width: 400px;
  border-radius: 20px 0 0 20px;
}

.foot_map iframe {
  border-radius: 0 20px 20px 0;
}

.foot_address {
  font-size: 1.8rem;
  font-weight: 500;
}

.foot_bottom {
  max-width: 1000px;
  margin: 45px auto;
}

.foot_menu {
  max-width: 333px;
  max-width: 444px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 35px;
}

.foot_menu li {
  margin-right: 25px;
  margin-bottom: 25px;
}

/*.foot_menu li:nth-of-type(4),*/
.foot_menu li:last-of-type {
  margin-bottom: 0;
}

.foot_contact p {
  font-size: 1.5rem;
  letter-spacing: .1em;
  font-weight: bold;
}

.foot_tel {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  font-size: 3.7rem;
  letter-spacing: .1em;
  display: block;
  margin: 15px auto;
  padding-left: 45px;
}

.foot_tel::before {
  position: absolute;
  content: "";
  background: url('/assets/img/tel_icon.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 38px;
  height: 38px;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.foot_contact {
  margin-right: 35px;
}

.foot_map {
  margin-top: -200px;
}

.foot_copy {
  width: 100%;
  background: #FFF;
  padding: 25px;
}

.foot_copy p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  text-align: center;
}

@media screen and (max-width: 768px) {

  .foot_top {
    padding-top: 30px;
  }

  .foot_logo {
    text-align: center;
  }

  .foot_logo img {
    display: block;
    margin: auto;
    margin-bottom: 35px;
  }

  .foot_logo p {
    margin-top: 5px;
  }

  .foot_address {
    font-size: 1.5rem;
    text-align: center;
    margin: 35px auto;
  }

  .foot_map img {
    width: 90%;
    margin: auto;
    margin-bottom: 24px;
  }

  .foot_map iframe {
    width: 90% !important;
    height: 150px !important;
    margin: auto;
    display: block;
  }

  .foot_contact {
    margin: auto;
  }

  .foot_menu {
    width: 100%;
    text-align: center;
    margin: auto;
    margin-top: 30px;
  }

  .foot_menu li {
    margin-right: 0;
    margin-bottom: 25px;
  }

  .foot_menu li:nth-of-type(4) {
    margin-bottom: 25px;
  }

  .foot_middle {
    background: #FFF;
    padding-bottom: 0;
  }

  .foot_bottom {
    flex-flow: column-reverse;
    background: #d0ecf1;
    margin: 30px auto 0 auto;
    padding: 30px 0;
  }

}


/*---------------------------------------------------------------------------------------------

トップページ

---------------------------------------------------------------------------------------------*/

.mv_cont {
  width: 100%;
  background: #d0ecf1;
  background: #f2fafb;
  padding-top: 10%;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
}

.mv_box {
  position: relative;
  max-width: 1100px;
  margin: auto;
  margin-bottom: 20px;
  z-index: 1;
}

.mv_right {
  margin-right: 80px;
}

.mv_right img {
  max-width: 385px;
}

.mv_kumo {
  position: relative;
}

.mv_kumo img {
  width: 550px;
}

.mv_kumo h1 {
  margin-left: 20px;
  line-height: 1.5;
  width: 82%;
  position: absolute;
  font-size: 4.5rem;
  font-weight: bold;
  letter-spacing: .1em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.mv_txt_color01 {
  color: #FEB392
}

.mv_txt_color02 {
  color: #5bbbcc;
}

.mv_txt_sub {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-top: 15px;
}

.mv_slide_area {
  width: 100%;
  overflow: hidden;
}

.mv_slide {
  display: flex; /* 横並びにスライドを並べる */
  width: 200%;   /* スライド全体を広くする（スライドを2倍にしたため） */
  animation: slide 30s linear infinite; /* 30秒で無限ループするアニメーション */
}

.mv_slide li {
  flex: 0 0 310px; /* 各スライドの幅を20%に設定（5枚表示されるため） */
  margin: 0 5px;
}

.mv_slide li.half {
  flex: 0 0 200px;
}

.mv_slide img {
  width: 100%;
  height: auto;
}

/* アニメーションの定義 */
@keyframes slide {
  0% {
    transform: translateX(0); /* 開始位置 */
  }
  100% {
    transform: translateX(-100%); /* 終了位置 */
  }
}

.mv_obj01 {
  position: absolute;
  top: 20%;
  left: 3%;
}

.mv_obj02 {
  position: absolute;
  top: 16%;
  right: -3%;
}

.mv_obj03 {
  position: absolute;
  top: 48%;
  right: 6%;
}

.mv_obj04 {
  position: absolute;
  top: 55%;
  left: 15%;
}

.mv_obj05 {
  position: absolute;
  bottom: 4%;
  right: 5%;
}

.about_cont {
  width: 100%;
  background: #d0ecf1;
  background: #f2fafb;
  padding: 80px 0 200px 0;
  position: relative;
}

.about_cont::after {
  position: absolute;
  content: "";
  background: url('/assets/img/bg_about_pc.png') no-repeat;
  background-size: 100%;
  background-position: center top;
  width: 100%;
  height: 327px;
  bottom: -150px;
  left: 0;
}

.about_tit {
  max-width: 345px;
  display: block;
  margin: auto;
}

.about_main {
  margin: 40px auto 60px auto;
}

.about_main h2 {
  width: 55%;
  margin: auto;
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding: 0 40px;
}

.about_main h2::before {
  position: absolute;
  content: "";
  background: url('/assets/img/about_line_left.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 34px;
  height: 35px;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.about_main h2::after {
  position: absolute;
  content: "";
  background: url('/assets/img/about_line_right.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 34px;
  height: 35px;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.about_box {
  max-width: 867px;
  width: 90%;
  margin: auto;
}
.about_box > * {
  position: relative;
  margin-bottom: 45px;
}
.about_box img.motto {
    width: 100px;
    position: absolute;
    top: -44px;
    left: -44px;
}
.about_box > :nth-of-type(2n) img.motto {
  left: auto;
  right: -44px;
}
.about_box img {
/*  width: 46%;*/
  display: block;
}
@media screen and (max-width: 768px) {
.about_box img.motto {
    width: 70px;
    top: -18px;
    left: -18px;
}
.about_box > :nth-of-type(2n) img.motto {
  left: auto;
  right: -18px;
}
}

.news_cont {
  width: 100%;
  background: #FFF;
  padding: 150px 0;
  position: relative;
}

.news_obj01 {
  position: absolute;
  bottom: 15%;
  right: 8%;
}

.news_area {
  max-width: 1000px;
  margin: auto;
}

.news_tit_area {
  position: relative;
  z-index: 1;
}

.news_kumo {
  position: absolute;
  top: -30px;
  left: -30px;
  z-index: -1;
}

.news_sub {
  font-size: 2.1rem;
  letter-spacing: .1em;
  font-weight: bold;
  display: block;
  text-align: left;
}

.news_tit {
  font-size: 4.1rem;
  letter-spacing: .15em;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 50px;
  text-align: left;
}

.news_cap {
  font-size: 2rem;
  line-height: 1.5;
}

.news_topics {
  width: 670px;
  border-top: 1px solid #DDDDDD;
  padding: 30px 0;
  position: relative;
}

li.news_topics:last-of-type {
  border-bottom: 1px solid #DDDDDD;
}

.news_head {
  font-size: 2.2rem;
  font-weight: bold;
}

.news_date {
  font-size: 2.1rem;
    color: #989898;
    display: block;
    margin: 10px auto;
}

.news_read {
  width: 65%;
    font-size: 2rem;
    line-height: 1.5;
}

.news_topics a {
  opacity: 1;
  transition: .3s;
}

.news_topics a:hover {
  opacity: .6;
}

.news_topics a img {
  position: absolute;
  top: 50%;
  top: 60px;
  right: 12%;
  right: 10px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: .3s;
}

.news_topics a:hover img {
  right: 6%;
  right: 0;
}

.insta_cont {
  width: 100%;
  background: #d0ecf1;
  background: #EDF8FA;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.insta_block01 {
  position: absolute;
  width: 320px;
  top: 10%;
  left: 0;
}

.insta_cont::before {
  position: absolute;
  content: "";
  background: url('/assets/img/bg_insta.png') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 100%;
  height: 600px;
  top: -10px;
  left: 0;
  z-index: 0;
}

.insta_icon {
  display: block;
  margin: auto;
  position: relative;
  z-index: 2;
}

.insta_tit {
  font-size: 4.1rem;
    font-weight: bold;
    letter-spacing: .2em;
    text-align: center;
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

.insta_read {
  font-size: 2rem;
    letter-spacing: .1em;
    text-align: center;
    line-height: 1.5;
    margin-top: 30px;
  position: relative;
  z-index: 2;
}

.wigets_wrap {
  width: 100%;
  padding-bottom: 80px;
  margin-top: 50px;
  position: relative;
}

.insta_wigets {
  max-width: 980px;
  margin: 50px auto;
  position: relative;
  z-index: 1;
}

.insta_wigets img {
  width: calc(25% - 15px);
    display: block;
    margin-bottom: 20px;
}

.about_cont2 {
  width: 100%;
  background: #d0ecf1;
  background: #EDF8FA;
  padding-bottom: 5px;
  position: relative;
}

.about_block01 {
  position: absolute;
  width: 115px;
  top: -15%;
  right: 10%;
  z-index: 1;
}

.about_block02 {
  position: absolute;
  width: 85px;
  top: -10%;
  left: 8%;
  z-index: 1;
}

.about_area {
  max-width: 1000px;
  margin: auto;
}

.about_slide_area {
  max-width: 526px;
  width: 90%
}

.about_sub {
  font-size: 2.1rem;
  letter-spacing: .1em;
  font-weight: bold;
  display: block;
  text-align: left;
}

.about_tit2 {
  font-size: 4.1rem;
  line-height: 1.5;
  letter-spacing: .15em;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 30px;
  text-align: left;
}

.about_cap {
  font-size: 2rem;
  line-height: 2;
}

.about_list_area {
  max-width: 1000px;
  margin: 70px auto;
  margin: 170px auto 70px;
}

.about_info_area {
  position: relative;
  z-index: 1;
}

.about_kumo {
    position: absolute;
    top: -15px;
    left: 55px;
    z-index: -1;
}

.about_list {
  width: 30%;
  height: 477px;
  background: #FFF;
  border-radius: 28px;
  padding: 30px;
  position: relative;
}

.about_list.green {
  border: 3px solid #A2DE90;
}

.about_list.pink {
  border: 3px solid #FEB392;
}

.about_list.yellow {
  border: 3px solid #FBDB4C;
}

.about_list_head {
  font-size: 2rem;
    letter-spacing: .2em;
    font-weight: bold;
    margin-top: 25px;
    text-align: center;
}

.about_list_read {
  font-size: 1.8rem;
    line-height: 2;
    margin-top: 20px;
}

.about_main_img {
  max-width: 178px;
    display: block;
    margin: auto;
}

.about_list_circle {
  width: 68px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.think_cont {
  width: 100%;
  background: #FFF;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.think_block01 {
  position: absolute;
  right: 8%;
  top: 25%;
}

.think_block02 {
  width: 70px;
  position: absolute;
  left: 6%;
  top: 57%;
}

.think_block03 {
  width: 250px;
    position: absolute;
    left: 5%;
    top: 58%;
}

.think_cont::after {
  position: absolute;
  content: "";
  background: url(/assets/img/bg_about.png) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 100%;
  height: 360px;
  top: -60px;
  left: 0;
  z-index: -1;
}

.think_wrap {
  max-width: 1000px;
  width: 90%;
    margin: auto;
}

.think_tit {
  font-size: 4.1rem;
    letter-spacing: .1em;
    font-weight: bold;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.think_read {
  font-size: 2rem;
    line-height: 2;
    text-align: center;
}

.think_list_area {
  margin: 50px auto 120px auto;
}

.think_box {
  width: 45%;
  position: relative;
}

.think_box:last-of-type {
  margin-top: 80px;
}

.think_box_txt {
  font-size: 2rem;
  line-height: 2;
  margin-top: 20px;
}

.think_cap01 {
  -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    background: #FFF;
    padding: 10px 0;
    width: 72px;
    height: 240px;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 36px;
    position: absolute;
    top: -40px;
    left: -40px;
    letter-spacing: .1em;
}

.think_cap02 {
  -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    background: #FFF;
    padding: 10px 0;
    width: 72px;
    height: 300px;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 36px;
    position: absolute;
    top: -40px;
    left: -40px;
    letter-spacing: .1em;
}

.think_link {
  opacity: 1;
  position: relative;
  text-align: right;
    display: block;
    font-size: 2rem;
    letter-spacing: .05em;
    font-weight: bold;
    padding-right: 55px;
  transition: .3s;
}

.think_link:hover {
  opacity: .6;
}

.think_link::after {
  position: absolute;
  content: "";
  background: url('/assets/img/btn_news_arrow.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 42px;
  height: 42px;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: .3s;
}

.think_link:hover::after {
  right: -3%;
}

.support_box {
  max-width: 1000px;
  margin: auto;
  width: 100%;
  height: 346px;
  background: url('/assets/img/bg_support.jpg') repeat;
  background-size: 100%;
  background-position: center;
  position: relative;
}

.support_info {
  width: 270px;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.support_sub {
  font-size: 2.1rem;
    letter-spacing: .1em;
    font-weight: bold;
    display: block;
  text-align: left;
}

.support_tit {
  font-size: 4.1rem;
    letter-spacing: .15em;
    font-weight: bold;
    text-align: left;
    margin-top: 15px;
  margin-bottom: 30px;
}

.think_img01 {
  position: absolute;
    max-width: 194px;
    right: 5%;
    top: -25%;
}

.think_img02 {
  position: absolute;
    max-width: 252px;
    right: 32%;
    top: -10%;
}

.think_img03 {
  position: absolute;
    max-width: 252px;
    right: 5%;
    bottom: -10%;
}

.faq_cont {
  width: 100%;
  background: #FFF;
  padding: 85px 0 150px 0;
  position: relative;
}

.faq_block01 {
  position: absolute;
  top: 0;
  right: 8%;
}

.faq_block02 {
  position: absolute;
  bottom: 2%;
  left: 5%;
}

.faq_kumo {
  display: block;
    margin: auto;
    margin-bottom: 10px;
}

.faq_sub {
  font-size: 2.1rem;
  letter-spacing: .1em;
    font-weight: bold;
    display: block;
    text-align: center;
}

.faq_tit {
  font-size: 4.1rem;
  letter-spacing: .1em;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
  margin-bottom: 70px;
}

.faq_wrap {
  max-width: 853px;
  width: 90%;
  margin: auto;
}

.acd-check {
  display: none;
}

.acd-label {
  width: 100%;
  background: #d0ecf1;
  border-radius: 20px;
  margin-top: 40px;
  padding: 12px 30px;
  position: relative;
}

.acd-label::after {
  position: absolute;
  content: "";
  background: url('/assets/img/faq_arrow.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 36px;
  height: 36px;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: .3s;
}

.acd-label span {
  display: block;
  width: 5%;
  text-align: center;
  font-size: 4.3rem;
  font-weight: bold;
}

.q-txt {
  font-size: 2rem;
    line-height: 1.8;
    margin-left: 25px;
    padding-left: 25px;
    border-left: 1px solid #99BFC6;
    width: 90%;
}

.acd-content {
  width: 100%;
  margin: auto;
  display: block;
  height: 0;
  opacity: 0;
  padding: 0;
  transition: .3s;
  visibility: hidden;
}

.answer_cont {
  display: none;
}

.acd-check:checked + .acd-label {
  border-radius: 20px 20px 0 0;
}

.acd-check:checked + .acd-label::after {
  transform: translateY(-50%) rotate(180deg);
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
}

.acd-check:checked + .acd-label + .acd-content .answer_cont {
  display: block;
}

.acd-check:checked + .acd-label + .acd-content {
    background: #F8F8F8;
    opacity: 1;
    width: 100%;
    height: auto;
    padding: 12px 30px;
    border-radius: 0px 0px 20px 20px;
    margin: auto;
    visibility: visible;
}

.acd-content span {
  display: block;
  width: 5%;
  text-align: center;
  font-size: 4.3rem;
  font-weight: bold;
}

.a-txt {
  letter-spacing: .1em;
  font-size: 1.6rem;
  line-height: 2.2;
  margin-left: 25px;
  padding-left: 25px;
  border-left: 1px solid #99BFC6;
  width: 90%;
}

.a-txt a {
  color: #4563A9;
  text-decoration: underline;
}


.voice_cont {
  width: 100%;
  background: #FFFCE6;
  padding: 110px 0 200px 0;
}

.voice_wrap {
  max-width: 960px;
  margin: auto;
}

.voice_tit {
  font-size: 6.5rem;
  font-weight: bold;
  letter-spacing: .2em;
  margin-bottom: 5px;
}

.voice_sub {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: .1em;
}

.voice_slide {
  margin-top: 65px;
}

.voice_box {
  width: 100%;
  background: #FFF;
  padding: 35px;
  margin-bottom: 30px;
}

.voice_face {
  width: 20%;
  text-align: center;
}

.voice_face img {
  max-width: 75px;
}

.voice_face p {
  color: #FFF;
  font-size: 1.4rem;
  line-height: 1.5;
  border-radius: 8px;
  margin-top: 10px;
}

li.voice_box:nth-of-type(odd) .voice_face p {
  background: #4563A9;
  padding: 5px 15px;
}

li.voice_box:nth-of-type(even) .voice_face p {
  background: #B180AD;
  padding: 5px 15px;
}

.voice_txt {
  width: 75%;
}

.voice_txt p {
  font-size: 1.6rem;
  line-height: 2.2;
  letter-spacing: .1em;
}

.contact_cont {
  width: 100%;
  background: #EAF6F8;
  padding: 120px 0 90px 0;
}

.contact_wrap {
  max-width: 853px;
  margin: auto;
}

.contact_txt {
  font-size: 2rem;
  line-height: 2;
  text-align: center;
}

.contact_form {
  width: 100%;
  margin-top: 70px;
}

.contact_box {
  margin-bottom: 15px;
}

.contact_head {
  width: 23%;
  margin-right: 2%;
}

.contact_head p {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: .1em;
}

.contact_head span {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: .1em;
  display: block;
  background: #FEB392;
  border-radius: 5px;
  padding: 5px 10px;
  color: #FFF;
  text-align: center;
  margin-left: 10px;
}

.contact_input {
  width: 75%;
}

.form_input {
  width: 100%;
  background: #FFF;
  border-radius: 15px;
  padding: 20px;
  font-size: 1.6rem;
  letter-spacing: .1em;
}

.radio_box01 input,
.radio_box02 input {
  display: none;
}

.radio_button {
  background: #FFFFFF;
    border: 1px solid #d0ecf1;
    border-radius: 15px;
    position: relative;
    padding: 20px;
    padding-left: 35px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
}

.radio_box01 .radio_button {
  width: 32.5%;
}

.radio_box02 .radio_button {
  width: 25%;
  margin-right: 15px;
}

.radio_button::before {
  position: absolute;
  content: "";
  width: 28px;
  height: 28px;
  background: #EFEFEF;
  border-radius: 16px;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: .3s;
}

input[type="radio"]:checked + .radio_button::before {
  background: #FFF;
  border: 4px solid #d0ecf1;
}

.contact_input textarea {
  width: 100%;
  background: #FFF;
  border-radius: 15px;
  min-height: 200px;
  font-size: 1.6rem;
  padding: 20px;
  line-height: 1.5;
}

.submit_area {
  margin: auto;
  margin-top: 80px;
  margin-top: 40px;
}

/* モーダル全体のスタイル */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}


/* モーダルコンテンツのスタイル */
.modal-content {
  position: absolute;
  background-color: white;
  padding: 20px;
  border: 3px solid #4563A9;
  max-width: 828px;
  width: 80%;
  height: 90vh;
  max-height: 828px;
  border-radius: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.modal-content h3 {
  font-size: 2rem;
  text-align: center;
  margin: 20px auto;
}

.modal-content img {
  display: block;
  margin: auto;
}

.confirmation_list ul li {
  border-top: 1px solid #707070;
  padding: 15px 0;
  font-size: 1.6rem;
}

.confirmation_list ul li:last-of-type {
  border-bottom: 1px solid #707070;
}

.confirmation_list ul li p:first-of-type {
  width: 25%;
  text-align: right;
}

.confirmation_list ul li p:last-of-type {
  width: 70%;
  margin-left: 5%;
}

.back_btn {
  width: 263px;
    height: 60px;
    border: 4px solid #383838;
    border-radius: 30px;
    text-align: center;
    font-size: 1.4rem;
    background: #EBEBEB;
    position: relative;
    margin: 0 15px;
}

.back_btn::after {
  position: absolute;
  content: "";
  background: url('/assets/img/btn_arrow.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 1;
}

.form_btn {
  width: 263px;
    height: 60px;
    border: 4px solid #383838;
    border-radius: 30px;
    text-align: center;
    font-size: 1.4rem;
    background: #FBDB4C;
    position: relative;
    margin: 0 15px;
}

.form_btn::after {
  position: absolute;
  content: "";
  background: url('/assets/img/btn_arrow.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 1;
}

.modal_btn_area {
  margin-top: 50px;
}


@media screen and (max-width: 768px) {

  .mv_cont {
    padding-top: 25%;
  }

  .mv_kumo h1 {
    font-size: 2.6rem;
    width: 70%;
  }

  .mv_kumo img {
    width: 90%;
    margin: auto;
    display: block;
  }

  .mv_txt_sub {
    font-size: 1.4rem;
    letter-spacing: .1em;
  }

  .mv_right {
    width: 50%;
    margin: auto;
  }

  .mv_right img {
    width: 100%;
  }

  .mv_obj01 {
    top: 36%;
    left: 8%;
  }
  .mv_obj01 {
      top: 44%;
      left: 4%;
  }

  .mv_obj02 {
    width: 35%;
    position: absolute;
    top: 35%;
    right: -10%;
  }

  .mv_obj03 {
    width: 8%;
    position: absolute;
    top: 26%;
    right: 5%;
    z-index: 2;
  }

  .mv_obj04 {
    width: 25%;
    position: absolute;
    top: 50%;
    left: -5%;
  }

  .mv_obj05 {
    display: none;
  }

  .mv_slide li {
    flex: 0 0 200px;
    margin: 0 5px;
  }

  .mv_slide li.half {
    flex: 0 0 132px;
  }

  .about_main h2 {
    width: 80%;
    font-size: 3.5rem;
    line-height: 1.3;
  }

  .about_main h2::before {
    top: 5%;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
  }

  .about_main h2::after {
    top: 5%;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
  }

  .about_tit {
    width: 60%;
  }

  .about_main {
    margin: 20px auto 50px auto;
  }

  .about_box img {
    width: 90%;
    margin: auto;
    margin-bottom: 30px;
  }

  .about_cont::after {
    position: absolute;
    content: "";
    background: url('/assets/img/bg_about_sp.png') no-repeat;
    background-size: 100%;
    background-position: center;
    width: 100%;
    height: 230px;
    bottom: -70px;
    left: 0;
  }

  .news_kumo {
    position: static;
    display: block;
    margin: auto;
    width: 50px;
  }

  .news_sub {
    text-align: center;
    font-size: 1.3rem;
    margin-top: 10px;
  }

  .news_tit {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .news_cap {
    font-size: 1.4rem;
    text-align: center;
    line-height: 2;
    margin-bottom: 30px;
  }

  .news_list_area {
    width: 90%;
    margin: auto;
  }

  .news_topics {
    width: 100%;
  }

  .news_head {
    width: 65%;
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .news_head,
  .news_read {
    width: 100%;
  }

  .news_date {
    font-size: 1.3rem;
  }

  .news_read {
    font-size: 1.4rem;
  }

  .news_topics a img {
    width: 50px;
    right: 5%;
  }

  .insta_cont {
    padding: 30px 0 50px 0;
  }

  .insta_block01 {
    position: absolute;
    width: 160px;
    top: -3%;
    left: 5%;
  }

  .insta_icon {
    max-width: 100px;
  }

  .insta_tit {
    font-size: 2.5rem;
  }

  .insta_read {
    font-size: 1.4rem;
    line-height: 2;
  }

  .wigets_wrap {
    width: 85%;
    margin: 30px auto;
  }

  .insta_cont::before {
    height: 200px;
  }

  .about_area {
    flex-flow: column-reverse;
  }

  .about_info_area {
    width: 100%;
    margin-bottom: 30px;
  }

  .about_kumo {
    position: static;
    display: block;
    margin: auto;
    max-width: 50px;
  }

  .about_sub {
    font-size: 1.3rem;
    margin-top: 10px;
    text-align: center;
  }

  .about_tit2 {
    font-size: 2.5rem;
    text-align: center;
  }

  .about_cap {
    font-size: 1.4rem;
    letter-spacing: .1em;
    text-align: center;
  }

  .about_slide_area {
    margin: auto;
  }

  .about_list {
    width: 90%;
    height: 200px;
    margin: 20px auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .about_main_img {
    max-width: 110px;
  }

  .about_sp_right {
    width: 55%;
  }

  .about_list_head {
    font-size: 1.5rem;
    text-align: left;
    margin-top: 0;
  }

  .about_list_read {
    font-size: 1.4rem;
    margin-top: 10px;
  }

  .about_list_circle {
    width: 40px;
  }

  .about_cont2 {
    padding-bottom: 40px;
  }

  .about_block01 {
    width: 70px;
    top: -5%;
    right: 10%;
  }

  .about_block02 {
    width: 55px;
    top: -10%;
    left: 8%;
  }

  .think_cont::after {
    height: 160px;
    top: -25px;
    top: -30px;
  }

  .think_block01 {
    top: 5%;
    width: 50px;
  }

  .think_block02 {
    width: 50px;
    top: 62%;
  }

  .think_block03 {
    width: 120px;
    top: 64%;
  }

  .think_tit {
    font-size: 2.5rem;
    letter-spacing: .2em;
    margin-top: 20px;
  }

  .think_read {
    font-size: 1.4rem;
  }

  .think_box {
    width: 90%;
    margin: auto;
  }

  .think_cap01 {
    font-size: 1.4rem;
    width: 50px;
    height: 170px;
    left: -15px;
  }

  .think_cap02 {
    font-size: 1.4rem;
    width: 50px;
    height: 250px;
    left: -15px;
    top: -70px;
  }

  .think_box_txt {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }

  .think_link {
    font-size: 1.4rem;
    padding-right: 35px;
  }

  .think_link::after {
    width: 28px;
    height: 28px;
  }

  .think_img01 {
    max-width: 150px;
    right: 5%;
    top: 35%;
  }

  .think_img02 {
    max-width: 150px;
    left: 8%;
    top: 35%;
  }

  .think_img03 {
    max-width: 150px;
    right: 8%;
    top: 8%;
  }

  .support_info {
    width: 90%;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }

  .support_tit {
    text-align: left;
    line-height: 1.5;
    margin-top: 10px;
    font-size: 2.5rem;
    margin-bottom: 50px;
  }

  .support_sub {
    font-size: 1.3rem;
    text-align: left;
    margin-top: 0px;
  }

  .support_area {
    margin-top: 240px;
  }

  .support_box {
    height: 470px;
  }

  .faq_cont {
    padding: 50px 0 150px 0;
  }

  .faq_block01 {
    width: 50px;
  }

  .faq_block02 {
    width: 50px;
    bottom: 3%;
  }

  .faq_kumo {
    width: 50px;
  }

  .faq_sub {
    font-size: 1.3rem;
    margin-top: 10px;
  }

  .acd-label {
    padding: 12px;
  }

  .acd-label span {
    width: 8%;
    font-size: 3.5rem;
  }

  .q-txt {
    font-size: 1.4rem;
    margin-left: 15px;
    padding-left: 15px;
    width: 75%;
  }

  .acd-label::after {
    width: 25px;
    height: 25px;
    right: 15px;
  }

  .acd-content span {
    width: 8%;
    font-size: 3.5rem;
  }

  .a-txt {
    font-size: 1.4rem;
    margin-left: 15px;
    padding-left: 15px;
    width: 75%;
  }

  .acd-check:checked + .acd-label + .acd-content {
    padding: 12px;
  }

  .voice_slide {
    padding: 0 10%;
    margin-top: 0px;
  }

  .voice_slide_wrap {
    position: relative;
  }

  .voice_face img {
    max-width: 60px;
    display: block;
    margin: auto;
  }

  .custom-prev {
    position: absolute;
    width: 40px;
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 1
  }

  .custom-next {
    position: absolute;
    width: 40px;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 1
  }

  .voice_cont {
    padding: 60px 0;
  }

  .voice_tit {
    font-size: 4.5rem;
    text-align: center;
  }

  .voice_sub {
    font-size: 1.4rem;
    text-align: center;
    display: block;
  }

  .voice_box {
    width: 80%;
    padding: 15px;
    margin: auto;
    margin-top: 90px;
    margin-bottom: 0;
  }

  .voice_face {
    width: 100%;
    text-align: center;
    margin-top: -70px;
  }

  .voice_face p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border-radius: 26px;
    height: 52px;
  }

  .voice_txt {
    width: 95%;
    margin: 20px auto;
    height: 450px;
    overflow-y: scroll;
  }

  .voice_txt p {
    font-size: 1.2rem;
  }

  .contact_cont {
    padding: 80px 0;
  }

  .contact_box {
    margin-bottom: 30px;
  }

  .contact_form {
    width: 90%;
    margin: auto;
    margin-top: 70px;
  }

  .contact_head {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .contact_input {
    width: 100%;
  }

  .radio_box01 .radio_button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

  .radio_box02 .radio_button {
    width: 40%;
    margin-right: 15px;
  }

  .faq_tit {
    font-size: 2.5rem;
    margin-top: 20px;
    margin-bottom: 50px;
  }

  .contact_txt {
    font-size: 1.5rem;
    width: 90%;
    margin: auto;
  }

  .modal-content h3 {
    font-size: 1.6rem;
  }

  .confirmation_list ul li {
    font-size: 1.1rem;
  }

  .confirmation_list ul li p:first-of-type {
    width: 35%;
    text-align: left;
  }

  .confirmation_list ul li p:last-of-type {
    width: 60%;
    margin-left: 5%;
  }

  .modal_btn_area {
    margin-top: 30px;
  }

  .back_btn {
    margin-bottom: 20px;
  }

  .btn_box a {
    width: 56%;
  }

  .link_btn {
    width: 100%;
    height: 56px;
  }

  .link_btn::before {
    width: 104%;
    height: 56px;
  }

  .link_btn p::after {
    width: 15px;
    height: 15px;
  }

.about_list {
    height: auto;
}

}


.error_cont {
  width: 100%;
  height: 100vh;
  background: url('/assets/img/error_bg.jpg') no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 20%;
}

.error_message {
  position: absolute;
  top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.error_message_main {
  font-size: 8.5rem;
  font-weight: bold;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}

.error_message_sub {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  margin-top: 30px;
}

header#header,
.head_cont {
    max-width: 100vw;
/*    overflow-x: hidden;*/
}