@charset "UTF-8";

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

	全ページ共通

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

html {
  visibility: hidden;
}
html.wf-active,
html.loading-delay {
  visibility: visible;
}
/* ↓ 色とテキストの定義 ------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 15px;
  overflow-x: hidden;
}

@media screen and (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 1400px) {
  html {
    font-size: 17px;
  }
}

@media screen and (max-width: 540px) {
  html {
    font-size: 3.3vw;
    /*文字量L-3.3vw/文字量M-3.5vw  */
  }
}

body {
  color: #333333;
  letter-spacing: 0.05rem;
  line-height: 1.7;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  /*bold700 Medium 500 regular400 light 300*/
  position: relative;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.poppins {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.robot {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
}

footer {
  margin-top: auto;
}

/* ↓ 共通アニメーション------------------------*/
main {
  position: relative;
}

.noise::after {
  opacity: 0.25;
  mix-blend-mode: color-burn; /* オーバーレイを指定 */
  animation: noise 8s steps(10) infinite;
  background: url("../img/back_noise.png");
  background-size: contain;
  content: "";
  display: block;
  height: 200%;
  left: -100%;
  position: absolute;
  top: -100%;
  width: 200%;
  z-index: 1;
  pointer-events: none;
}

@keyframes noise {
  to {
    background-position: 0 0;
  }
  10% {
    background-position: -5% -10%;
  }
  20% {
    background-position: -15% 5%;
  }
  30% {
    background-position: 7% -25%;
  }
  40% {
    background-position: 20% 25%;
  }
  50% {
    background-position: -25% 10%;
  }
  60% {
    background-position: 15% 5%;
  }
  70% {
    background-position: 0 15%;
  }
  80% {
    background-position: 25% 35%;
  }
  90% {
    background-position: -10% 10%;
  }
}

/* ↓ 共通コンテンツ横幅とマージン ------------------------*/
/*pcの横幅*/
.pcWidth-xl {
  max-width: 1400px;
  width: 85%;
  margin: 0 auto;
}

.pcWidth-l {
  max-width: 1200px;
  width: 85%;
  margin: 0 auto;
}

.pcWidth-m {
  max-width: 960px;
  width: 85%;
  margin: 0 auto;
}

.pcWidth-s {
  max-width: 800px;
  width: 85%;
  margin: 0 auto;
}
.pcWidth-ss {
  max-width: 620px;
  width: 85%;
  margin: 0 auto;
}

@media screen and (min-width: 1450px) {
  .pcWidth-xl {
    max-width: 1600px;
  }

  .pcWidth-l {
    max-width: 1400px;
  }

  .pcWidth-m {
    max-width: 1100px;
  }

  .pcWidth-s {
    max-width: 960px;
  }
}

/* ↓ リンクと共通パーツ ------------------------*/
.textalign-center {
  text-align: center;
}

.textalign-left {
  text-align: left;
}

.textalign-right {
  text-align: right;
}

a {
  color: #333333;
  text-decoration: none;
  transition: 0.3s ease;
}

a:hover {
  opacity: 0.7;
  transition: 0.3s ease;
}

img {
  width: 100%;
}

.sec_head {
  font-size: 4.5rem;
  margin-bottom: 5rem;
  font-weight: bold;
  display: inline-block;
  position: relative;
  color: #fff;
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  display: flex;
  align-items: baseline;
}

.sec_head_eng {
  position: relative;
}

.sec_head .head_back {
  position: absolute;
  z-index: -1;
  width: 13rem;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sec_head_sub {
  font-size: 1rem;
  color: #7a7a7a;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  margin-left: 1.5rem;
  text-shadow: initial;
}

.sec_head_sub_w {
  color: #fff;
}

.sec_head .head_back_purple {
  position: absolute;
  z-index: -1;
  width: 14rem;
  top: 40%;
  left: 45%;
  transform: translate(-50%, -50%);
}

.sec_head_s {
  font-size: 4rem;
  text-align: center;
  line-height: 1.2;
  font-family: "Roboto Condensed", sans-serif;
}

.sec_head_s_sub {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

/* ↓ ナビゲーションバー ------------------------*/
.globalmenu {
  padding: 0rem 2rem 0 0;
  height: 4rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: #fff;
  box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.5s ease;
}

@media screen and (max-width: 540px) {
  .globalmenu {
    padding: 0rem 0.5rem 0 0;
  }
}

.bgTopmost {
  background: none;
  box-shadow: none;
  transition: all 0.5s ease;
}

.globalmenu-left {
  width: 15rem;
  padding: 0 2rem;
  min-width: 12rem;
  background-color: #fff;
  border-radius: 0 0 2rem 0;
  height: 4rem;
  display: flex;
  align-items: center;
  text-align: center;
}

.globalmenu-right {
  position: relative;
  z-index: 100;
}

.globalmenu-right ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.globalmenu-right ul li {
  margin-left: 1.5rem;
}

.globalmenu-right ul .language-switcher {
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.globalmenu-right ul .language-switcher select {
  padding: 0.25rem;
  color: #333;
  font-weight: 400;
}

.globalmenu-right ul li a:hover {
  opacity: 1;
  color: #ea850f;
}

@media screen and (max-width: 960px) {
  .globalmenu-right ul li {
    font-size: 0.9rem;
    margin-left: 1.5rem;
  }
}

@media screen and (max-width: 540px) {
  .globalmenu-right ul {
    display: none;
  }
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: none;
}

@media screen and (max-width: 540px) {
  .hamburger {
    display: block;
    position: relative;
    z-index: 1000;
    right: 0;
    top: 0;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
    transform: scale(0.8, 0.8);
    transform: scale(0.6, 0.6);
  }
}

.hamburger span {
  display: block;
  position: absolute;
  z-index: 1000;
  width: 30px;
  height: 2px;
  background: #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin: 0.5rem;
}

.hamburger span:nth-child(1) {
  top: 5px;
}

.hamburger span:nth-child(2) {
  top: 15px;
}

.hamburger span:nth-child(3) {
  top: 25px;
}

.hamburger.active span:nth-child(1) {
  top: 16px;
  /*    left: 6px;*/
  background: #333;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

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

/* ↓ スマホメニュー ------------------------*/
nav.globalmenu-sp {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  width: 100%;
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  height: 100vh;
}

.globalmenuSp-inner {
  height: 100%;
  color: #333;
  text-align: left;
  margin-left: 5rem;
  margin-top: 5rem;
}

.globalmenuSp-inner ul li {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.globalmenuSp-inner ul li select {
  font-size: 1.2rem;
  padding: 0.4rem 1rem;
}

@media screen and (max-width: 540px) {
  .globalmenuSp-inner {
    margin-left: 5rem;
    margin-top: 8rem;
  }
}

nav.globalmenu-sp.active {
  display: block;
  opacity: 10;
}

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

	テストコード

---------------------------------------------*/
/* ↓ セクション ｜ ファーストビュー ------------------------*/

.fv {
  height: 95vh;
  max-height: 900px;
  position: relative;
}

@media screen and (max-width: 540px) {
  .fv {
    height: 630px;
    position: relative;
  }
}

.fvimg {
  position: absolute;
}

.fvimg.left {
  left: 0;
  top: 10vh;
  width: 27vw;
  max-width: 420px;
}

.fvimg.right {
  right: 0;
  width: 50vw;
  bottom: 0;
  max-width: 800px;
}

.fvimg.right img {
  position: absolute;
  bottom: 0;
}

@media screen and (max-width: 540px) {
  .fvimg.left {
    left: 0;
    top: 9vh;
    width: 45vw;
    max-width: 420px;
  }

  .fvimg.right {
    right: 0;
    width: 80vw;
    bottom: 0;
    max-width: 800px;
  }
}

.fvimg.bottom {
  left: 0;
  width: 100%;
  bottom: -1px;
}

.fvimg.bottom img {
  position: absolute;
  bottom: 0px;
  left: 0;
}

.fv h1 {
  position: absolute;
  top: 40%;
  left: 10vw;
}

.fv h1 .fv_logo {
  width: 22vw;
  margin-bottom: 1.75rem;
  max-width: 360px;
}

.fv h1 .fv_catch {
  width: 45vw;
  max-width: 720px;
  margin-bottom: 0.25rem;
}

@media screen and (max-width: 540px) {
  .fv h1 {
    position: absolute;
    top: 37%;
    left: 10vw;
  }

  .fv h1 .fv_logo {
    width: 55vw;
    margin-bottom: 1rem;
    max-width: 360px;
  }

  .fv h1 .fv_catch {
    width: 80vw;
    max-width: 720px;
  }
}

.fv_topics {
  position: absolute;
  bottom: 4rem;
  right: 2rem;
  width: 36rem;
  background-color: #fff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  height: 3rem;
  font-size: 0.9rem;
}
.fv_topics a {
  width: 78%;
}
@media screen and (max-width: 540px) {
  .fv_topics a {
    width: 80%;
  }
  .fv_topics {
    bottom: 2.75rem;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
  }
}

.fv_topics .head {
  background-color: #23b9a7;
  color: #fff;
  font-weight: 500;
  border-radius: 0.5rem 0rem 0 0.5rem;
  width: 20%;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv_topics .title {
  display: flex;
}

.fv_topics .title p {
  padding-left: 1rem;
  width: 89%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 540px) {
  .fv_topics .title {
    justify-content: space-between;
  }
  .fv_topics .title p {
    padding-left: 0.5rem;
    width: 85%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.fv_topics .title span {
  width: 10%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*矢印と下線の形状*/
.fv_topics .title span::before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom: 18px;
  right: 18px;
  /*下線の形状*/
  width: 26px;
  height: 1px;
  background: #333;
  /*アニメーションの指定*/
  transition: all 0.3s;
}

.fv_topics .title span::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom: 21px;
  right: 17px;
  /*矢印の形状*/
  width: 8px;
  height: 1px;
  background: #333;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}
@media screen and (max-width: 540px) {
  /*矢印と下線の形状*/
  .fv_topics .title span::before {
    right: 10px;
    width: 22px;
  }

  .fv_topics .title span::after {
    right: 9px;
  }
}

.fv_topics .title:hover span::before {
  right: 8px;
  transition: all 0.3s;
}
.fv_topics .title:hover span::after {
  right: 7px;
  transition: all 0.3s;
}

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

	トップメッセージ

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

.top_message {
  padding: 7rem 0 13rem;
  background-image: url(../img/back_orage_g.png);
  background-size: cover;
}

@media screen and (max-width: 540px) {
  .top_message {
    padding: 4rem 0 16rem;
  }
}

.box_outside {
  width: 80%;
  border: 1px solid #fff;
  position: relative;
  padding: 0.75rem;
  font-size: 0.8rem;
  line-height: 2;
}
@media screen and (max-width: 540px) {
  .box_outside {
    width: 85%;
  }
}

.box_outside .object {
  position: absolute;
}

.box_outside .leftobject {
  top: 0;
  left: 0;
  width: 50%;
}

.box_outside .rightobject {
  bottom: 0;
  right: 0;
  width: 50%;
}

.img_smartphone {
  position: absolute;
  width: 50%;
  right: -35%;
  bottom: -10rem;
  z-index: 10;
}

@media screen and (max-width: 540px) {
  .img_smartphone {
    position: absolute;
    width: 57%;
    right: -25%;
    bottom: -10rem;
    z-index: 10;
  }
}

.img_smartphone .shadow {
  position: absolute;
  bottom: -6rem;
  width: 100%;
  left: 40%;
  transform: translateX(-50%);
}

@media screen and (max-width: 540px) {
  .img_smartphone .shadow {
    bottom: -3.5rem;
  }
}

.box_outside .inner {
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: 3rem 5rem 5rem;
}

@media screen and (max-width: 540px) {
  .box_outside .inner {
    padding: 1.5rem 1.5rem 1.5rem;
  }
}

.box_outside .inner .read {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

@media screen and (max-width: 540px) {
  .box_outside .inner .read {
    font-size: 1.5rem;
  }
}

.box_outside .inner .read::first-letter {
  font-size: 2rem;
  color: #ff912b;
}

@media screen and (max-width: 540px) {
  .box_outside .inner .read::first-letter {
    font-size: 1.5rem;
    color: #ff912b;
  }
}

.box_outside .inner .read_sub {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 540px) {
  .box_outside .inner .read_sub {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 540px) {
  .box_outside .inner .read_sub {
    font-size: 0.8rem;
  }
}
.box_outside .inner .sentence {
  font-size: 0.9rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 540px) {
  .box_outside .inner .sentence {
    font-size: 0.85rem;
    margin-bottom: 2rem;
  }
}
/*---------------------------------------------

	トップページニュース

---------------------------------------------*/
.topnews {
  margin-bottom: 8rem;
}

.page_news {
  position: relative;
  z-index: 10;
}

.news_list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.readmore {
  position: absolute;
  display: block;
  width: 36px;
  height: 36px;
  border: 1px solid #23b9a7;
  border-radius: 50%;
  transition: 0.3s ease;
}
.readmorearea:hover {
  opacity: 1;
}

.readmore_text {
  position: absolute;
  right: 2rem;
  padding-right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: 0.9rem;
}

.readmore:hover {
  background-color: #23b9a7;
  transition: 0.3s ease;
  opacity: 1;
}

/*矢印と下線の形状*/
.readmore span::before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom: 14px;
  right: 18px;
  /*下線の形状*/
  width: 26px;
  height: 1px;
  background: #333;
  /*アニメーションの指定*/
  transition: all 0.3s;
}

.readmore span::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom: 17px;
  right: 17px;
  /*矢印の形状*/
  width: 8px;
  height: 1px;
  background: #333;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}
.readmore:hover span::before {
  right: 8px;
  transition: all 0.3s;
  background: #fff;
}
.readmore:hover span::after {
  right: 7px;
  transition: all 0.3s;
  background: #fff;
}

.readmore {
  position: absolute;
  top: -5rem;
  right: 0;
}

@media screen and (max-width: 540px) {
  .news_list {
    display: block;
  }
}

.news_list .news_item {
  width: 47.5%;
  margin-bottom: 4rem;
  display: flex;
}

@media screen and (max-width: 540px) {
  .news_list .news_item {
    width: 100%;
    margin-bottom: 3rem;
  }

  .news_list .news_sp {
    display: none;
  }
}

.news_list .news_item:nth-child(even) {
  margin-right: 5%;
}

.news_list .news_item .left {
  width: 40%;
  height: 9vw;
}

@media screen and (max-width: 540px) {
  .news_list .news_item .left {
    height: 18vw;
    width: 35%;
  }
}

.news_list .news_item .left img {
  height: 100%;
  border-radius: 0.5rem;
  object-fit: cover;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
}

.news_list .news_item .right {
  width: 60%;
  padding-left: 1.5rem;
}
@media screen and (max-width: 540px) {
  .news_list .news_item .right {
    width: 65%;
  }
}

.news_list .news_item .right .info {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 540px) {
  .news_list .news_item .right .info {
    margin-bottom: 0.4rem;
  }
}

.news_list .news_item .right .day {
  font-size: 0.8rem;
  margin-right: 0.5rem;
}

.news_list .news_item .right .category li {
  font-size: 0.8rem;
  background-color: #ffb800;
  padding: 0.35rem 1rem;
  border-radius: 1rem;
  line-height: 1;
}

.news_list .news_item .right .category .cat_news {
  background-color: #ffb800;
}
.news_list .news_item .right .category .cat_press {
  background-color: #57941a;
  color: #fff;
}
.news_list .news_item .right .category .cat_service {
  background-color: #3834f7;
  color: #fff;
}

.article_list .category .cat_news {
  background-color: #ffb800;
}
.article_list .category .cat_press {
  background-color: #57941a;
  color: #fff;
}
.article_list .category .cat_service {
  background-color: #3834f7;
  color: #fff;
}

.news_list .news_item .right .title {
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* ブラウザがサポートしていない場合のフェールセーフ */
}

.top_service {
  /* padding-bottom: 17vw; */
  padding-bottom: 8rem;
}

.service_list {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 17vw;
}

@media screen and (max-width: 540px) {
  .top_service {
    padding-bottom: 6rem;
  }

  .service_list {
    display: block;
    margin-bottom: 10rem;
  }
}

.service_list_last {
  margin-bottom: 13vw;
}

@media screen and (max-width: 540px) {
  .service_list_last {
    margin-bottom: 8.5rem;
  }
}

.service_list.reverse {
  flex-direction: row-reverse;
}

.service_list .back_box {
  width: 150%;
  height: 145%;
  border-radius: 15rem 0 0 15rem;
  background-color: #fff;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
  position: absolute;
  right: -80%;
  z-index: -1;
}

.service_list.reverse .back_box {
  width: 150%;
  height: 145%;
  border-radius: 0rem 15rem 15rem 0rem;
  background-color: #fff;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
  position: absolute;
  left: -80%;
  z-index: -1;
}

.service_list .left {
  width: 50%;
}

.service_list .left .thamnail {
  width: 100%;
  height: 25vw;
  max-height: 728px;
  width: 100%;
  z-index: 5;
  position: relative;
}

@media screen and (max-width: 540px) {
  .service_list .left .thamnail {
    width: 100%;
    height: 15rem;
  }
}

.service_list .left .thamnail img {
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
  object-fit: cover;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
}

.service_list .right {
  height: 120%;
  width: 50%;
  padding-left: 3rem;
}

.service_list.reverse .right {
  height: 120%;
  width: 50%;
  padding-left: initial;
  padding-right: 3rem;
}

@media screen and (max-width: 540px) {
  .service_list .back_box {
    width: 109%;
    height: 95%;
    border-radius: 1rem;
    background-color: #fff;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.09);
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: -15%;
    z-index: -1;
  }

  .service_list.reverse .back_box {
    width: 109%;
    height: 95%;
    border-radius: 1rem;
    background-color: #fff;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.09);
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: -15%;
    z-index: -1;
  }

  .service_list .left {
    width: 95%;
    margin: auto;
    margin-bottom: 2rem;
  }

  .service_list .right {
    height: 100%;
    width: 100%;
    padding-left: 0rem;
  }

  .service_list.reverse .right {
    height: 100%;
    width: 100%;
    padding-left: initial;
    padding-right: 0rem;
  }
}

.service_name {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.service_name .icon {
  width: 1rem;
  margin-right: 1rem;
  width: 4%;
}
.service_name .namearea {
  width: 96%;
}
.service_name .sub {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
}

.service_name .name {
  font-size: 1.6rem;
  font-weight: bold;
}

.btn_app {
  display: flex;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 540px) {
  .btn_app {
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
}

.btn_app a {
  height: 2.75rem;
}

@media screen and (max-width: 540px) {
  .btn_app a {
    height: 3.5rem;
  }
}

.btn_app a:first-child {
  margin-right: 1rem;
}

.btn_app a img {
  height: 100%;
  width: auto;
}

.btn_o {
  position: relative;
  background-color: #ea850f;
  padding: 1rem 5rem;
  color: #fff;
  font-weight: 500;
  border-radius: 2rem;
  font-size: 0.8rem;
}

@media screen and (max-width: 540px) {
  .btn_o_center {
    text-align: center;
  }

  .btn_o {
    width: 100%;
    padding: 1rem 5rem;
    font-size: 0.9rem;
    text-align: center;
  }
}

.btn_o img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25rem;
  width: 0.5rem;
}

.btn_blue_area {
  text-align: center;
}

.btn_blue {
  position: relative;
  padding: 1.5rem 0;
  width: 17rem;
  background-color: #23b9a7;
  display: inline-block;
  color: #fff;
  font-weight: 500;
  font-size: 1.05rem;
  z-index: 0;
}
@media screen and (max-width: 540px) {
  .btn_blue {
    position: relative;
    padding: 1rem 0;
    width: 13rem;
    font-size: 0.9rem;
    z-index: 0;
  }
}
.btn_blue:hover {
  opacity: 1;
}

.btn_blue::after {
  position: absolute;
  content: "";
  background-image: url(../img/arrow_btn.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  height: 100%;
  right: 1rem;
  top: 0;
  width: 2rem;
}

.btn_blue:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background-color: #fff;
  z-index: 1;
  border: #23b9a7 1px solid;
  transition: 0.2s;
  color: #23b9a7;
}
.btn_blue span {
  width: 100%;
  height: 100%;
  z-index: 10;
  position: relative;
}

.btn_blue:hover span {
  color: #23b9a7;
  z-index: 10;
}

.btn_blue:hover:before {
  width: 100%;
}

.top_article {
  padding: 5rem 0 6rem;
  background-color: #27acb4;
  position: relative;
}

@media screen and (max-width: 540px) {
  .top_article {
    padding: 5rem 0 6rem;
    background-color: #27acb4;
    position: relative;
  }
}

.top_article .article_list {
  position: relative;
}
.top_article .article_list .readmore {
  position: absolute;
  top: 5.5vw;
  right: 0;
}
@media screen and (max-width: 540px) {
  .top_article .article_list .readmore {
    top: -3.5rem;
  }
}
.top_article .article_list .readmore_text {
  color: #fff;
}

.top_article .article_list .readmore {
  border: 1px solid #fff;
}
.top_article .article_list .readmore {
  border: 1px solid #fff;
}

.top_article .article_list .readmore span::before {
  background-color: #fff;
}
.top_article .article_list .readmore span::after {
  background-color: #fff;
}

.top_article .article_list {
  position: relative;
}

.top_article .article_list .item {
  width: 22vw;
}
.article_list .item {
  transition: 0.3s ease;
  display: block;
}

.article_list .item:hover {
  transform: scale(1.025);
  transition: 0.3s ease;
  opacity: 1;
}

.top_article .article_list .item_l {
  width: 35vw;
}

@media screen and (max-width: 540px) {
  .top_article .article_list .item {
    width: 100%;
    margin-bottom: 2.5rem;
  }

  .top_article .article_list .item_l {
    width: 100%;
  }

  .top_article .article_list .item:last-child {
    margin-bottom: 0;
  }
}

.top_article .article_list {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: -8rem;
}

@media screen and (max-width: 540px) {
  .top_article .article_list {
    display: block;
    justify-content: space-between;
    align-items: end;
  }
}

.top_article .article_list .item .thamnal {
  height: 15vw;
}

.top_article .article_list .item_l .thamnal {
  height: 23vw;
}

@media screen and (max-width: 540px) {
  .top_article .article_list .item .thamnal {
    height: 25vh;
  }

  .top_article .article_list .item_l .thamnal {
    height: 25vh;
  }
}

.top_article .article_list .item .thamnal img {
  height: 100%;
  object-fit: cover;
  border-radius: 0.25rem 0.25rem 0 0;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
}

.top_article .article_list .item_l .thamnal img {
  border-radius: 0.5rem 0.5rem 0 0;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
}

.top_article .article_list .item .info {
  padding: 0.75rem 1rem 1rem;
  background-color: #fff;
  border-radius: 0 0 0.25rem 0.25rem;
  height: 7rem;
}

.top_article .article_list .item_l .info {
  padding: 1.3rem 2rem 2rem;
  background-color: #fff;
  border-radius: 0 0 0.5rem 0.5rem;
  height: 9rem;
}

@media screen and (max-width: 540px) {
  .top_article .article_list .item .info {
    padding: 1.5rem 2rem 2rem;
    background-color: #fff;
    border-radius: 0 0 0.5rem 0.5rem;
    height: auto;
  }
}

.article_list .category_area {
  margin-bottom: 0.5rem;
}

.article_list .category li {
  font-size: 0.7rem;
  background-color: #ffb800;
  padding: 0.35rem 1rem;
  margin-right: 0.5rem;
  border-radius: 1rem;
  line-height: 1;
  letter-spacing: 0;
  display: inline-block;
}

.article_list .item .title {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: 500;
  font-size: 0.9rem;
}

.article_list .item_l .title {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width: 540px) {
  .article_list .item .title {
    font-size: 1.4rem;
    font-weight: 500;
  }
}

.top_article .sec_head {
  display: flex;
  position: absolute;
  top: -4rem;
  left: 47%;
  z-index: 10;
}

@media screen and (max-width: 540px) {
  .top_article .sec_head {
    position: relative;
    left: 0%;
    top: -7rem;
  }
}

.wave_b {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100vw;
}

.wave_b img {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
}

.wave {
  width: 100vw;
  left: 0;
  position: relative;
  left: 0;
}
.wave img {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
}
.contact {
  padding: 5rem 0 10rem;
  background-color: #efefef;
}

.contactbanner {
  display: flex;
  margin-top: 4rem;
}

.contactbanner a {
  position: relative;
}
.contactbanner a .text {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1.5rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 540px) {
  .contact {
    padding: 5rem 0 6rem;
  }
  .contactbanner {
    display: block;
    margin-top: 3rem;
  }
}

.contactbanner a {
  width: 47.5%;
}

@media screen and (max-width: 540px) {
  .contactbanner {
    display: block;
    margin-top: 3rem;
  }

  .contactbanner a {
    width: 100%;
    margin-bottom: 2rem;
    display: block;
  }
}

.contactbanner a:first-child {
  margin-right: 5%;
}

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

	フッター

---------------------------------------------*/
.wave_n {
  margin-bottom: -1px;
  width: 100vw;
  position: relative;
  left: 0;
}
.wave_n img {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

footer {
  background: #374761;
  padding: 2rem 0 1rem;
  position: relative;
  z-index: 0;
}

.topslider .item {
  padding: 0.75rem;
  height: 24.2vw;
}

.topslider .item img {
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 540px) {
  .topslider .item {
    padding: 1rem;
    height: 13rem;
  }
}

.topslider .item img {
  border-radius: 0.5rem;
}

.footer-menu {
  text-align: center;
}

.footerMenu-logo img {
  width: 21rem;
  margin-bottom: 1.25rem;
}

.footerMenu-menus {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.footerMenu-menus a {
  color: white;
}

.footerMenu-copy {
  font-size: 0.8rem;
  letter-spacing: normal;
  color: white;
}

.sns_link {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.sns_link a {
  margin: 0 0.5rem;
  width: 1.75rem;
}

/* ↓ PCとSP表示切り替え（末尾に設置） ------------------------*/
.pcArea {
  display: block;
}

.spArea {
  display: none;
}

@media screen and (max-width: 540px) {
  .pcArea {
    display: none;
  }

  .spArea {
    display: block;
  }
}
