@charset "utf-8";

:root {
  --colorGreen: #00B4BE;
  --colorGrey: #544A47;
}

/* == reset == */
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,a,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  vertical-align: baseline;
  font-size: 100%;
}
html {
  font-size: 62.5%;
}
body {
  position: relative;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
}
@media screen and (mix-width: 767.5px) {
  body {
    min-width: 1000px;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
ul {
	list-style: none;
}
*::before,
*::after {
  box-sizing: border-box;
}
@media screen and (max-width: 767.5px) {
  body {
    overflow-x: hidden;
  }
}

/* == header == */
.header {
  position: relative;
  background-color: #fff;
  z-index: 11;
}
.header .headerTop {
  position: relative;
  padding: 14px 0 12px;
  text-align: center;
  color: var(--colorGreen);
}
.header .headerTop a {
  color: var(--colorGreen);
}
.header .headerTop .text01 {
  line-height: 1.4;
  letter-spacing: 1px;
}
.header .headerTop .text02 {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 2px;
}
.header .headerTop .logoBlock {
  color: var(--colorGrey);
  font-size: .9rem;
}
.header .headerNavi {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.headerNaviList {
  display: flex;
  justify-content: center;
}
.headerNaviList > .item {
  padding: 0 10px;
  color: var(--colorGrey);
  font-size: 1.5rem;
  line-height: 1.4667;
}
.headerNaviList > .item > a {
  display: block;
  padding: 14px 6px;
  color: var(--colorGrey);
  text-decoration: none;
}
.headerNaviList > .item > .inner {
  position: relative;
  display: block;
  padding: 14px 6px;
  cursor: pointer;
}
.headerNaviList > .item.-category > .inner {
  padding-right: 17px;
}
.headerNaviList > .item.-category > .inner::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  width: 9px;
  height: 9px;
  margin-top: -2px;
  border-right: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
}
.headerNaviList > .item.-category > .inner.-close::after {
  margin-top: 2px;
  transform: translateY(-50%) rotate(-135deg);
}
.header .logoBlock > img {
  vertical-align: middle;
}
.headerCategoryBlock {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #f6f6f6;
  box-shadow: 0px 4px 4px 0px #00000040, inset 0px 4px 4px 0px #0000000D;
  z-index: 11;
  color: var(--colorGrey);
}
.headerCategoryBlock a {
  color: var(--colorGrey);
}
.headerOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 10;
}

@media screen and (max-width: 767.5px) {
  .header .headerNavi {
    display: none;
  }
  .header .headerTop .logoBlock {
    margin-top: 3px;
  }
  .header .logoBlock > img {
    width: 52px;
    margin-left: 4px;
  }
  .header .naviBtn {
    position: absolute;
    bottom: 14px;
    right: 18px;
    width: 20px;
    height: 16px;
  }
  .header .naviBtn::before,
  .header .naviBtn::after {
    content: '';
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: var(--colorGreen);
  }
  .header .naviBtn::before {
    top: 0;
  }
  .header .naviBtn::after {
    bottom: 0;
  }
  .header .naviBtn > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: var(--colorGreen);
    transform: translateY(-50%);
  }
  .headerCategoryBlock > .inner {
    padding: 29px 22px 38px;
  }
  .headerNaviListSp {
    font-size: 1.5rem;
  }
  .headerNaviListSp > .item + .item,
  .headerCategoryList + .headerNaviListSp {
    margin-top: 25px;
  }
  .headerCategoryList {
    margin-top: 17px;
  }
  .headerCategoryList .logo {
    height: 13px;
  }
  .headerCategoryList .logo.ai {
    height: 17px;
  }
  .headerCategoryList > .item + .item {
    margin-top: 14px;
  }
}

@media screen and (min-width: 767.5px) {
  .header > .inner {
    width: 1000px;
    margin: 0 auto;
  }
  .header .headerTop {
    position: relative;
    padding: 29px 0 20px;
  }
  .header .headerTop .text01 {
    font-size: 1.5rem;
    line-height: 1.4667;
  }
  .header .headerTop .text02 {
    margin-top: 3px;
    font-size: 2.8rem;
    line-height: 1.4286;
  }
  .header .headerTop .logoBlock {
    position: absolute;
    bottom: 15px;
    right: 0;
  }
  .header .logoBlock > img {
    width: 74px;
    margin-left: 4px;
  }
  .headerCategoryBlock > .inner {
    width: 1000px;
    margin: 0 auto;
    padding: 40px 0 54px;
  }
  .headerNaviListSp {
    display: none;
  }
  .headerCategoryList {
    display: flex;
    flex-wrap: wrap;
    width: 746px;
    margin: 0 auto;
  }
  .headerCategoryList > .item {
    width: 240px;
    text-align: center;
  }
  .headerCategoryList > .item:nth-child(3n+2),
  .headerCategoryList > .item:nth-child(3n+3) {
    margin-left: 13px;
  }
  .headerCategoryList > .item:nth-child(n+4) {
    margin-top: 28px;
  }
  .headerCategoryList .logo {
    height: 17px;
  }
  .headerCategoryList .logo.ai {
    height: 22px;
  }
}

/* == app == */
.appWrap {
  background-color: rgba(0, 180, 190, 0.898);
  color: #fff;
}
.appWrap.-hide {
  padding-top: 65px;
  background-color: #fff;
}
.appWrap.-hide > .inner {
  display: none;
}
.appBlock01 {
  border-radius: 12px;
  background-color: #fff;
  color: var(--colorGrey);
  text-align: center;
}
.appWrap .dec01 {
  position: relative;
  display: inline-block;
  padding: 0 18px;
  color: var(--colorGreen);
  font-size: 1.4rem;
}
.appWrap .dec01::before,
.appWrap .dec01::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: 1px;
  height: 1.6em;
  background-color: var(--colorGreen);
}
.appWrap .dec01::before {
  left: 0;
  transform: rotate(-30deg);
}
.appWrap .dec01::after {
  right: 0;
  transform: rotate(30deg);
}
@media screen and (max-width: 767.5px) {
  .appWrap > .inner {
    padding: 25px 20px 38px;
  }
  .appWrap .appLeft {
    padding: 0 20px 20px;
    text-align: center;
  }
  .appWrap .appLeft .txt1 {
    font-size: 2.4rem;
    font-weight: bold;
  }
  .appWrap .appLeft .txt2 {
    font-size: 1.8rem;
    font-weight: bold;
  }
  .appWrap .appLeft .img {
    margin-top: 25px;
    padding-left: 30px;
  }
  .appWrap .appRight .block01,
  .appWrap .appRight .leadText,
  .appBlock01 .qrBlock {
    display: none;
  }
  .appBlock01 .dlBlock {
    padding: 20px 0 22px;
  }
  .appBlock01 .dlBlock > .inner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
  }
  .appBlock01 .dlBlock .bnrBlock {
    width: 140px;
    margin-right: 25px;
  }
  .appBlock01 .bnrList > li + li {
    margin-top: 15px;
  }
  .appBlock01 .dlBlock .logo {
    width: 71px;
  }
}
@media (min-width: 767.5px) {
  .appWrap > .inner {
    display: flex;
    width: 1000px;
    margin: 0 auto;
  }
  .appWrap .appLeft {
    width: 413px;
    padding: 40px 27px 40px 62px;
  }
  .appWrap .appLeft .leadText {
    display: none;
  }
  .appWrap .appRight {
    width: calc(100% - 413px);
    padding: 61px 0 64px;
  }
  .appWrap .appRight .block01 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  .appWrap .appRight .logo {
    width: 82px;
    margin-right: 23px;
  }
  .appWrap .appRight .txt1 {
    font-size: 2.4rem;
    font-weight: bold;
  }
  .appWrap .appRight .leadText {
    font-size: 1.4rem;
  }
  .appBlock01 {
    display: flex;
    width: 472px;
    margin-top: 25px;
    padding-right: 26px;
  }
  .appBlock01 .qrBlock {
    width: 149px;
    padding: 24px 0 15px;
    font-size: 1.2rem;
  }
  .appBlock01 .qrBlock img {
    width: 100px;
  }
  .appBlock01 .dlBlock {
    width: calc(100% - 149px);
    padding: 26px 0;
  }
  .appBlock01 .dlBlock .logo {
    display: none;
  }
  .appBlock01 .dlBlock .bnrBlock {
    margin-top: 18px;
  }
  .appBlock01 .bnrList {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .appBlock01 .bnrList img {
    height: 46px;
  }
}

/*==.topBtn ==*/
.topBtn {
  display: flex;
  opacity: 1;
  position: fixed;
  right: 5%;
  bottom: 5%;
  transition: opacity .5s cubic-bezier(.39, .575, .565, 1);
}
.topBtn.nofixed {
  opacity: 0;
}
.topBtn a {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  width: 63px;
  height: 63px;
  padding-bottom: 13px;
  border-radius: 1000px;
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none;
  text-align: center;
}
.topBtn a::before {
  content: "";
  display: block;
  position: absolute;
  top: 14.7px;
  width: 21px;
  height: 11px;
}
.topBtn a {
  border: solid #2bbbc3 2px;
  background-color: #fff;
  color: #2bbbc3;
}
.topBtn a:before {
  background: url(/article/category/news/images/news_ico_toparrow_01.svg) center/cover no-repeat;
}
@media screen and (max-width: 767.5px) {
  .topBtn {
    display: none;
  }
}

/* == footer == */
.copyrightBlock01 {
  padding-top: 25px;
  padding-bottom: 30px;
  background-color: rgba(0, 180, 190, 0.898);
  text-align: center;
  color: var(--colorGrey);
}
.copyrightBlock01 .logoBlock {
  margin-bottom: 6px;
}
.copyrightBlock01 .logoBlock > img {
  width: 77px;
  margin-left: 4px;
}
.appBtnBlock01 {
  position: fixed;
  width: 64px;
  height: 64px;
  opacity: 1;
  transition: opacity .5s cubic-bezier(.39, .575, .565, 1);
  z-index: 3;
}
.appBtnBlock01.-hide,
.appBtnBlock01.-close {
  display: none;
}
.topBtn.nofixed,
.appBtnBlock01.nofixed {
  bottom: -70px;
  opacity: 0;
}
.appBtnBlock01 .close {
  position: absolute;
  top: -9px;
  right: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #666;
  transform: rotate(45deg);
  cursor: pointer;
}
.appBtnBlock01 .close::before,
.appBtnBlock01 .close::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 2px;
  height: 11px;
  background-color: #fff;
}
.appBtnBlock01 .close::after {
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
}
.appBtnBlock01 .logo {
  display: block;
  width: 64px;
  cursor: pointer;
}
.topBtn {
  display: flex;
  opacity: 1;
  transition: opacity .5s cubic-bezier(.39, .575, .565, 1);
}
.topBtn a {
  border: solid #fff 2px;
  background-color: #2bbbc3;
  color: #fff;
}
.topBtn a::before {
  background: url(/article/images/top_ico_toparrow_01.svg) center / cover no-repeat;
}

@media screen and (max-width: 767.5px) {
  #top .appWrap > .inner {
    padding: 25px 20px 26px;
  }
  .topBtn {
    bottom: 20px;
    right: 20px;
  }
  .appBtnBlock01 {
    right: 20px;
  }
  .topBtn.is-release {
    bottom: 20px;
  }
  .appBtnBlock01.is-release {
    bottom: 108px;
  }
}

@media screen and (min-width: 767.5px) {
  #top .appWrap .appRight {
    padding: 61px 0 21px;
  }
  .appBtnBlock01 {
    right: 5%;
  }
  .topBtn.is-release {
    bottom: 5%;
  }
  .appBtnBlock01.is-release {
    bottom: 116px;
  }
}
