@charset "UTF-8";
/* #Reset & Basics
================================================== */

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif, 'ヒラギノ角ゴシック', 'ヒラギノ角ゴ ProN W3', 'source-han-sans-japanese', 'Hiragino Kaku Gothic ProN W3', 'Hiragino Kaku Gothic Pro';
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

html,
body {
  min-width: 320px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

a {
  color: #00a08a;
  text-decoration: none;
}

a:hover {
  color: #00a08a;
}

ul li {
  list-style: none;
}

/* 全体
================================================== */
#container {
  padding-top: 80px;
}

/* センタリングコンテナ
================================================== */
.container {
  max-width: 960px;
  margin: 0 auto;
}

/* センタリングコンテナ
================================================== */
.url-txt {
  word-break: break-all;
  word-wrap: break-word;
}

/* section
================================================== */
section {
  padding: 150px 0 0;
}

@media screen and (max-width: 768px) {
  section {
    padding: 50px 0;
  }
}

/* opening
================================================== */
.opening svg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 250px;
}

@media screen and (max-width: 768px) {
  .opening svg {
    width: 160px;
  }
}

.opening .stroke {
  fill: none;
  stroke: #ffffff;
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: path 0.6s ease-in 0s forwards;
}

@keyframes path {
  0% {
    stroke-opacity: 1;
  }
  82% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 1;
    stroke-dashoffset: 0;
  }
}

.opening {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 99;
  animation: closing 0.2s ease-out 0.8s forwards;
}

@keyframes closing {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* header
================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 10;
}

.header_container {
  display: flex;
  align-items: center;
  max-width: 960px;
  height: 80px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .header_container {
    height: 66px;
    width: 100%;
    padding: 0 24px;
  }

  .header_container img {
    width: 90px;
  }
}

.header_container a {
  display: inline-block;
  position: relative;
  z-index: 10;
}

header nav.pc {
  position: absolute;
  top: 0;
  width: 100%;
}

@media screen and (max-width: 768px) {
  header nav.pc {
    display: block;
    padding-top: 66px;
    transform: translateX(100%);
  }
}

/* ナビゲーション */
.global {
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .global {
    flex-direction: column;
    justify-content: flex-start;
    height: 100vh;
    background-color: #fff;
    transform: translateX(0);
    transition: transform 0.3s;
  }

  .global.is-active {
    transform: translateX(-100%);
  }
}

.contents_security ul.num-list{
	list-style: none;
  padding: 0 0 0 30px;
}

@media screen and (max-width: 768px) {
  .contents_security ul.num-list{
    list-style: none;
    padding: 0 30px 0 30px;
  }
}


.contents_security ul.num-list li{
  list-style-type: decimal;
}

.global > li {
  display: inline-block;
  margin-right: 2vw;
}

.global > li:last-child {
  margin-right: 0;
}


@media screen and (max-width: 768px) {
  .global > li {
    width: 100%;
    margin-right: 50px;
  }
}

.global > li > a {
  position: relative;
  cursor: pointer;
  height: 80px;
  line-height: 80px;
  display: block;
  text-align: center;
  color: #333;
  transition: all 0.5s ease;
}

@media screen and (max-width: 768px) {
  .global > li > a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 18px;
    text-align: left;
    padding-left: 24px;
  }
}

.global > li > a.hl,
.global > li > a:hover {
  color: #00a08a;
}

.global > li > a::after {
  opacity: 0;
  position: absolute;
  bottom: 8px;
  right: 50%;
  transform: translate(0);
  background: url(../images/border.png) no-repeat center 0;
  width: 34px;
  height: 7px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  content: "";
}

@media screen and (max-width: 768px) {
  .global > li > a::after {
    display: none;
  }
}

.global > li > a.hl::after,
.global > li > a:hover::after {
  opacity: 1;
  transform: translate(50%);
}

@media screen and (max-width: 768px) {
  .global > li a::before {
    content: '●';
    font-size: 10px;
    color: #00a08a;
    padding-right: 24px;
  }

  .hambarger {
    position: fixed;
    top: 16px;
    right: 24px;
    width: 28px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    z-index: 20;
    transition: 0.3s;
  }

  .hambarger span {
    display: block;
    width: 100%;
    height: 6px;
    background-color: #3aab9c;
    transition: transform 0.3s, opacity 0.3s;
    border-radius: 15px;
  }

  .hambarger span:first-child {
    margin-bottom: 4px;
  }

  .hambarger span:nth-child(2) {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top right;
  }

  .hambarger span:last-child {
    margin-top: 4px;
  }

  .hambarger.is-active span:first-child {
    transform: translateY(10px) rotate(45deg);
  }

  .hambarger.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleY(0);
  }

  .hambarger.is-active span:last-child {
    transform: translateY(-10px) rotate(-45deg);
  }
}

/* ヒーローエリア
================================================== */
#mv {
  position: relative;
  background: url(../images/background_image.png) no-repeat;
  background-size: cover;
  width: 100%;
  height: 0;
  background-repeat: no-repeat;
  padding-top: 50%;
}

@media screen and (max-width: 768px) {
  #mv {
    background: url(../images/background_image_sp.png) no-repeat;
    background-size: cover;
    padding-top: 150vw;
  }
}

.mv_content {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  display: block;
  position: absolute;
  text-align: center;
  overflow: hidden;
}

.left_content {
  text-align: left;
  position: absolute;
  left: 20vw;
  top: 10vw;
}

@media screen and (max-width: 768px) {
  .left_content {
    left: 10vw;
    top: 30vw;
  }
}

.left_content img {
  width: 20vw;
}

@media screen and (max-width: 768px) {
  .left_content img {
    width: 55vw;
  }
}

h1.fv_title {
  font-size: 3.8vw;
  line-height: 6.8vw;
  letter-spacing: 18px;
  margin-top: 30px;
  color: #333;
}


@media screen and (max-width: 768px) {
  h1.fv_title {
    font-size: 6.5vw;
    letter-spacing: 2.5vw;
    margin-top: 20px;
    line-height: 2;
  }
}

.mv_image {
  width: 30vw;
  top: 6vw;
  position: absolute;
  right: 20vw;
}

@media screen and (max-width: 768px) {
  .mv_image {
    width: 68vw;
    right: -14vw;
    top: 50vw;
  }
}

/* 1st block
================================================== */
.green {
  background-image: url(../images/background_image_02.png);
  background-size: cover;
  width: 100%;
  height: 0;
  color: #fff;
  display: inline-table;
  background-repeat: no-repeat;
  padding: 150px 0;
}

.contents.first .container p {
  font-size: 17px;
}

@media screen and (max-width: 768px) {
  .contents.first .container p {
    text-align: left;
    font-size: 4vw;
    padding: 24px;
    margin: 0;
  }
}

/* 2nd block
================================================== */
.bus_content {
  display: flex;
  margin: 70px auto 0;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .bus_content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin: 30px auto 0;
  }
}

.bus_content h3 {
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .bus_content h3 {
    font-size: 27px;
  }
}

.bus_content h3 span {
  font-size: 12px;
  letter-spacing: 1px;
}

.container .bus_content p {
  text-align: left;
  line-height: 2;
  font-size: 13px;
  width: 380px;
}

@media screen and (max-width: 768px) {
  .container .bus_content p {
    font-size: 14px;
    padding: 30px;
    width: auto;
  }
}

.container .bus_content a {
  font-weight: bold;
  margin-top: 20px;
  font-size: 13px;
}

@media screen and (max-width: 768px) {
  .container .bus_content a {
    background-color: #00a08a;
    padding: 20px 0;
    border-radius: 8px;
    color: #fff;
    width: auto;
    display: block;
    font-size: 17px;
    margin: 0 30px;
  }

  .container .bus_content a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}

a.arrow:before,
span.arrow:before,
dl.news dd a:before {
  display: inline-block;
  font-size: 12px;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 600;
  margin-right: 8px;
  color: #00a08a;
}

.comic_content_text {
  margin-left: 40px;
}

@media screen and (max-width: 768px) {
  .comic_content_text {
    margin-left: 0;
  }
}

.left_image {
  height: 100%;
  margin-top: 30px;
}

/* 3rd block
================================================== */
.contents.third {
  background-color: #f4f4f4;
  width: 960px;
  border-radius: 30px;
  padding: 100px 0;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .contents.third {
    width: 90vw;
  }

  .contents.third .container h2 {
    font-size: 7vw;
    letter-spacing: 4px;
  }
}

dl.news {
  display: flex;
  flex-wrap: wrap;
  overflow: scroll;
  max-height: 264px;
  margin: 40px 20px 0;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  dl.news {
    margin: 40px 160px 0;
    max-height: 184px;
  }
}

dl.news dt,
dl.news dd {
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 768px) {
  dl.news dt,
  dl.news dd {
    padding: 16px 0 0 0;
  }
}

dl.news dt {
  flex-grow: 1;
}

@media screen and (max-width: 768px) {
  dl.news dt {
    width: 100%;
    border-bottom: none;
  }
}

dl.news dd {
  width: calc(100% - 110px);
}

@media screen and (max-width: 768px) {
  dl.news dd {
    flex-grow: 1;
  }

  dl.news dd:last-of-type {
    flex-grow: 1;
    border: none;
  }
}

dl.news dd a {
  display: inline-block;
  padding-left: 12px;
  position: relative;
}

@media screen and (max-width: 768px) {
  dl.news dd a {
    padding: 0 0 20px 0;
  }
}

dl.news dd a:hover {
  text-decoration: underline;
}

.contents.third a.arrow:before,
.contents.third span.arrow:before,
.contents.third dl.news dd a:before {
  display: none;
}

/* 4th block
================================================== */
.contents.forth {
  width: 630px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .contents.forth {
    width: 100%;
  }
}

dl.outline {
  padding: 0 12px;
  margin-top: 70px;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  dl.outline {
    flex-direction: column;
    padding: 0 24px;
  }
}

dl.outline dt,
dl.outline dd {
  padding: 12px 0;
}

dl.outline dt {
  width: 140px;
  font-weight: bold;
  border-bottom: 1px solid #eee;
}

@media screen and (max-width: 768px) {
  dl.outline dt {
    width: 100px;
    padding: 16px 0 8px;
    border-bottom: 0;
    font-size: 15px;
  }
}

dl.outline dd {
  width: calc(100% - 160px);
  border-bottom: 1px solid #eee;
}

@media screen and (max-width: 768px) {
  dl.outline dd {
    padding: 0 0 16px;
    font-size: 13px;
    line-height: 1.6;
    width: 100%;
  }
}

dl.outline dd ol {
  margin-left: 24px;
}

/* 5th block
==================================================*/
.contents.fifth {
  text-align: center;
  margin: 150px 0 100px;
}

@media screen and (max-width: 768px) {
  .contents.fifth {
    margin: 50px 0;
  }
}

.contents.fifth img {
  width: 300px;
}

@media screen and (max-width: 768px) {
  .contents.fifth img {
    width: 200px;
  }
}


/* FONT
================================================== */
.container h2 {
  font-size: 3vh;
  font-family: 'Montserrat', sans-serif;
  color: #00a08a;
  line-height: 2;
  text-align: center;
  letter-spacing: 13px;
}

@media screen and (max-width: 768px) {
  .container h2 {
    font-size: 8vw;
    letter-spacing: 7px;
  }
}

.green .container h2,
.green .container span {
  color: #fff;
}

.container h2 span {
  display: block;
  font-size: 0.5em;
  letter-spacing: 3px;
}

.container p {
  line-height: 3;
  font-size: 15px;
  margin: 20px 0;
  letter-spacing: 1px;
}

small {
  font-size: 12px;
}

em {
  font-style: normal;
  font-weight: bold;
}

/* フェードインアニメーション
================================================== */
.fadeIN-anime {
  animation: fadeIn 1s ease;
  visibility: visible !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* totop
==================================================*/
#totop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  opacity: 0.9;
  width: 50px;
  height: 50px;
  background-color: #00a08a;
  z-index: 99999;
  border-radius: 60px;
  display: none;
}

#totop::before {
  position: absolute;
  display: block;
  top: 50%;
  right: 50%;
  margin-top: -3px;
  margin-right: -6px;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(315deg);
  z-index: 999;
}

/* footer
==================================================*/
footer {
  text-align: center;
  line-height: 1.4;
  padding: 20px;
  color: #ccc;
  background-color: #000;
  margin-top: 150px;
}

.footer_menu {
  margin-bottom: 10px;
}

.footer_menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer_menu ul li {
  padding: 5px 8px;
}

.footer_menu ul li a {
  font-size: 12px;
  color: #eee;
  transition: all 0.5s ease;
}

.footer_menu ul li a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  footer {
    margin-top: 50px;
  }

  .footer_menu ul li {
    width: 100%;
    padding: 2px 8px;
  }
}

/* #security
================================================== */
.contents_security {
  padding-top: 5%;
}

@media screen and (max-width: 768px) {
  .contents_security {
    padding-top: 35%;
  }
}

.contents_security > section {
  margin: 80px 0 80px;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .contents_security > section {
    margin: 0;
  }
}

.contents_security img {
  width: 190px;
  margin: 0 auto;
  display: block;
}

.contents_security h2.page {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 20px;
  letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
  .contents_security .container h2.page {
    font-size: 18px;
    letter-spacing: 2px;
  }
}

.contents_security h2 span {
  font-size: 0.8em;
}

.contents_security p {
  font-size: 14px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .contents_security .container p {
    font-size: 12px;
    line-height: 1.6;
    padding: 0 20px;
  }
}

.contents_security h4 {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .contents_security h4 {
    margin-left: 20px;
  }
}

.contents_security ul {
  padding: 30px 0 30px 20px;
}

@media screen and (max-width: 768px) {
  .contents_security ul {
    padding: 20px;
  }
}

.contents_security ul li {
  list-style-type: disc;
  font-size: 14px;
  margin-bottom: 4px;
}

@media screen and (max-width: 768px) {
  .contents_security ul li {
    font-size: 12px;
    margin-left: 20px;
  }
}

#security section {
  position: static;
  padding: 0;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Media Queries
================================================== */
.pc { display: block; }
.sp { display: none; }

@media screen and (max-width: 768px) {
  .pc { display: none; }
  .sp { display: block; }
}

/* utility
================================================== */
/* ----- text ----- */
.center { text-align: center; }
.right  { text-align: right; }
.left   { text-align: left; }

/* media print
==================================================*/
@media print {
  html,
  body,
  .container,
  #contents {
    width: 960px !important;
    opacity: 1 !important;
  }

  .fadeIN {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0);
  }

  #totop {
    display: none;
  }
}