@charset "UTF-8";
/***
    The new CSS reset - version 1.9 (last updated 19.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */

*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: #333;
  font-family: "Arial","Mulish", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, Arial, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  padding-top: 60px;
}
body * {
  -webkit-transition: all ease-out 0.2s;
  transition: all ease-out 0.2s;
}
/*
body *::before, body *::after {
  -webkit-transition: all ease-out 0.2s;
  transition: all ease-out 0.2s;
}
*/

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.w970 {
  padding: 0 15px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.w830 {
  padding: 0 15px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.floating_nav {
  display: none;
  /*
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  */
}
.floating_nav nav {
  width: 100%;
}
.floating_nav nav > ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.floating_nav nav > ul > li {
  width: 33.3333333333%;
  border-right: 1px #D9D9D9 solid;
}
.floating_nav nav > ul > li:last-child {
  border-right: none;
}
.floating_nav nav > ul > li a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 68px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(31.15%, #2A2A2A), to(#464545));
  background: linear-gradient(0deg, #2A2A2A 31.15%, #464545 100%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  gap: 5px;
}
.floating_nav nav > ul > li a span {
  display: block;
  color: #BBB;
  font-size: 1.4rem;
  font-style: normal;
}
@media (hover: hover) {
  .floating_nav nav > ul > li a:hover {
    opacity: 0.6;
  }
}
@media (max-width: 767px) {
  .floating_nav nav > ul > li {
    width: calc(33.3333333333% + 10px);
  }
  .floating_nav nav > ul > li:nth-child(2n-1) {
    width: calc(33.3333333333% - 5px);
  }
  .floating_nav nav > ul > li a {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    gap: 5px;
  }
  .floating_nav nav > ul > li a span {
    display: block;
    color: #BBB;
    font-size: 1rem;
  }
}

.link_arrow01 {
  font-size: 18px;
  display: inline-block;
  position: relative;
  padding-right: 43px;
}
.link_arrow01::after {
  content: "";
  width: 38px;
  height: 5px;
  background-image: url(/assets/img/arrow_more.11c560aa.svg);
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (hover: hover) {
  .link_arrow01:hover::after {
    right: -15px;
  }
}

.page_top01 {
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
  padding: 78px 0 23px;
}
.page_top01 h1 {
  font-size: 2.5rem;
  font-weight: 700;
}
.page_top01 h1 .cg {
  color: #00A4B0;
}
@media (max-width: 767px) {
  .page_top01 {
    padding: 58px 6px 17px;
  }
}

.note01 {
  font-size: 1.4rem;
  line-height: 1.5;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}
h2.top_title01 {
  color: #333;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.4;
}
h2.top_title01 .subtitle {
  font-size: 18px;
  font-weight: 400;
}
h2.top_title01 .maintitle {
  display: inline-block;
  position: relative;
}
h2.top_title01 .maintitle > .note01 {
  position: absolute;
  top: 100%;
  right: 0;
  font-weight: 400;
}
h2.top_title02 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 50px;
}
h2.top_title02 .subtitle {
  font-size: 16px;
  font-weight: 400;
  display: block;
}
h2.top_title02::after {
  content: "";
  background-color: #D9D9D9;
  height: 1px;
  width: 100vw;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 767px) {
  h2.top_title02 {
    line-height: 1;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  h2.top_title02 .subtitle {
    margin-bottom: 10px;
  }
}
h2.page_title01 {
  position: relative;
}
h2.page_title01 .subtitle {
  font-size: 16px;
  font-weight: 400;
  display: block;
}
@media (max-width: 767px) {
  h2.page_title01 {
    line-height: 1;
  }
  h2.page_title01 .subtitle {
    margin-bottom: 10px;
  }
}

h3 {
  font-size: 2.1rem;
  font-weight: 700;
}

h4 {
  font-size: 1.8rem;
  font-weight: 700;
}

#header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
}
#header .header_inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 15px;
  margin: 0 auto;
}
#header .header_logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 clamp(194px, 18.4480234261vw, 252px);
          flex: 0 0 clamp(194px, 18.4480234261vw, 252px);
}
#header .header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}
#header .header_nav > .header_list01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 71px;
  width: 100%;
  max-width: 750px;
  justify-content: flex-end;
}
#header .header_nav > .header_list01 > li {
  position: relative;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 18px;
  font-weight: 700;
}
#header .header_nav > .header_list01 > li > p {
  width: 100%;
  line-height: 1;
  display: block;
  font-size: clamp(13px, 1.1713030747vw, 16px);
  white-space: pre-wrap;
  word-break: keep-all;
}
#header .header_nav > .header_list01 > li > p > span.dli-chevron-down {
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 0.6em;
  height: 0.6em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}
@media (hover: hover) {
  #header .header_nav > .header_list01 > li:hover p {
    color: #00A4B0;

  }
  #header .header_nav > .header_list01 > li:hover p > span.dli-chevron-down {
    color: #00A4B0;
    transform: translateY(25%) rotate(-45deg);
  }
  #header .header_nav > .header_list01 > li > p > a:hover {
    color: #00A4B0;
  }
}
#header .header_nav > .header_list01 > li > div {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  height: 0;
}
#header .header_nav > .header_list01 > li > div > ul {
  width: 100%;
}
#header .header_nav > .header_list01 > li > div > ul > li {
  font-size: 1.4rem;
  line-height: 2.3571428571;
}
#header .header_nav > .header_list01 > li > div > ul > li > a {
  display: block;
}
@media (hover: hover) {
  #header .header_nav > .header_list01 > li > div > ul > li > a:hover {
    color: #00A4B0;
  }
}
#header .header_nav > .header_list01 > li > div > ul > li > ul {
  font-weight: 400;
  line-height: 1.8571428571;
}
@media (hover: hover) {
  #header .header_nav > .header_list01 > li > div > ul > li > ul > li:hover {
    color: #00A4B0;
  }
}
@media (hover: hover) {
  #header .header_nav > .header_list01 > li.link_about:hover, #header .header_nav > .header_list01 > li.link_reading:hover {
    /*background: rgba(238, 238, 238, 0.95);*/
    /*color: #00A4B0;*/
  }
  #header .header_nav > .header_list01 > li:hover span.link_border {
    width: 80%;
    display: block;
    height: 3px;
    background: #27ABB6;
    position: absolute;
    bottom: 2px;
    left: 0px;
    z-index: 20;
  }
  #header .header_nav > .header_list01 > li.link_about:hover > div, #header .header_nav > .header_list01 > li.link_reading:hover > div {
    opacity: 1;
    visibility: inherit;
    pointer-events: all;
    height: auto;
    width: 250px;
  }
  #header .header_nav > .header_list01 > li.link_about:hover > div > ul, #header .header_nav > .header_list01 > li.link_reading:hover > div > ul {
    /*background: rgba(238, 238, 238, 0.95);*/
    background: #fff;
    border-top: #DEDDDD solid 1px;
  }
  #header .header_nav > .header_list01 > li > div > ul > li, #header .header_nav > .header_list01 > li > div > ul > li {
    padding: 9px 5px 5px;
    border: #DEDDDD solid 1px;
    border-top: none;
  }
}
@media (hover: hover) {
  #header .header_nav > .header_list01 > li.link_service:hover {
    /*background: rgba(238, 238, 238, 0.95);*/
  }
  #header .header_nav > .header_list01 > li.link_service:hover > div {
    opacity: 1;
    visibility: inherit;
    pointer-events: all;
    height: auto;
    width: 200%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  #header .header_nav > .header_list01 > li.link_service:hover > div > ul {
    background: rgba(238, 238, 238, 0.95);
    padding: 9px 18px 18px;
  }
  #header .header_nav > .header_list01 > li.link_service:hover > div > ul:nth-child(2) {
    background: rgba(51, 51, 51, 0.95);
    color: #fff;
  }
}
#header .header_nav > .header_btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#header .header_nav > .header_btn_area > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#header .header_nav > .header_btn_area .header_btn01 {
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (hover: hover) {
  #header .header_nav > .header_btn_area .header_btn01:hover {
    opacity: 0.6;
  }
}
#header .header_nav > .header_btn_area .header_btn02 {
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (hover: hover) {
  #header .header_nav > .header_btn_area .header_btn02:hover {
    opacity: 0.6;
  }
}
#header .header_nav > .header_btn_area .header_btn02 img,#header .header_nav > .header_btn_area .header_btn01 img {
  width: 120px;
}
@media (max-width: 767px) {
  #header .header_inner {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    height: 63px;
    padding-right: 60px;
    box-sizing: border-box;
  }
  #header .header_logo {
    -webkit-box-flex: none;
        -ms-flex: none;
            flex: none;
    width: 50%;
  }
  #header .header_logo img {
    max-width: 194px;
    width: 100%;
  }
  #header .header_nav {
    display: none;
  }
  #header .header_menu_sp {
    display: flex;
  }
  #header .header_menu_sp img {
    width: 60px;
    height: 60px;
  }
  #header .header_btn_sp {
    width: 61px;
    height: 63px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 164, 176, 0.61)), to(#00A4B0));
    background: linear-gradient(180deg, rgba(0, 164, 176, 0.61) 0%, #00A4B0 100%);
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
  }
  #header .header_btn_sp span {
    width: 29px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #header .header_btn_sp span:nth-child(1) {
    top: calc(50% - 8px);
  }
  #header .header_btn_sp span:nth-child(3) {
    top: calc(50% + 8px);
  }
  #header .header_nav_sp {
    background: rgba(51, 51, 51, 0.95);
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: calc(100% - 0px);
    opacity: 0;
    visibility: hidden;
    padding: 90px 20px 20px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    z-index: 101;
    overflow-y: auto;
  }
  #header .header_nav_sp.active {
    opacity: 1;
    visibility: inherit;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  #header .header_nav_sp .header_close {
    width: 61px;
    height: 63px;
    background-image: url(/assets/img/icon_close.fefbf8fa.svg);
    background-size: contain;
    background-position: 0 0;
    background-repeat: no-repeat;
    display: inline-block;
    position: absolute;
    top: 0px;
    right: 0px;
  }
  #header .header_area02 {
    background-color: #111;
    padding: 80px 0 52px;
  }
  #header .header_block01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1170px;
    margin: 0 auto 68px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    color: #fff;
    gap: 36px 22px;
    width: 100%;
  }
  #header .header_block01 .header_item01 {
    width: 100%;
  }
  #header .header_block01 .header_item02 {
    width: calc((100% - 22px) / 2);
  }
  #header .header_block02 {
    color: #fff;
    font-size: 1.3rem;
    line-height: 2;
    text-align: left;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #header .header_text04 {
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 1px solid #fff;
    margin-bottom: 12px;
    font-size: 1.4rem;
  }
  #header .header_list02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.3rem;
    gap: 3px;
  }
}

#footer .footer_text01 {
  font-weight: 700;
  margin-bottom: 14px;
}
#footer .footer_text02 {
  font-size: 1.8rem;
  font-weight: 400;
}
#footer .footer_text03 {
  text-align: left;
}
#footer .footer_text04 {
  font-weight: 700;
  padding-bottom: 17px;
  border-bottom: 1px solid #fff;
  margin-bottom: 17px;
}
#footer .footer_area01 {
  max-width: 1170px;
  margin: 0 auto 34px;
}
#footer .footer_area02 {
  background-color: #111;
  padding: 80px 0 52px;
}
#footer .footer_block01 {
  display: -ms-grid;
  display: grid;
  max-width: 1170px;
  margin: 0 auto 90px;
  color: #fff;
  -ms-grid-columns: 1fr clamp(20px, 6.9444444444vw, 100px) 1fr clamp(20px, 6.9444444444vw, 100px) 1fr clamp(20px, 6.9444444444vw, 100px) 1fr;
/*  grid-template-columns: repeat(4, 1fr);*/
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#footer .footer_block01 .footer_item01 {
  width: 22%;
}
#footer .footer_block01 .footer_item02 {
  width: 22%;
  margin-bottom: 76px;
}
#footer .footer_block01 .footer_item03 {
  width: 17.5%;
}

@media (hover: hover) {
  #footer .footer_block01 a:hover {
    color: #00A4B0;
  }
}
#footer .footer_block02 {
  color: #fff;
  font-size: 14px;
  line-height: 2;
  text-align: center;
}
@media (hover: hover) {
  #footer .footer_block02 a:hover {
    color: #00A4B0;
  }
}
#footer .footer_area03 {
  background-color: #EEE;
  padding: 50px 0 128px;
  color: #111;
}
#footer .footer_area03 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
  max-width: 1170px;
  margin: 0 auto;
  font-size: 1.3rem;
}
#footer .footer_list01 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.5641025641% 1fr 2.5641025641% 1fr 2.5641025641% 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5641025641%;
}
#footer .footer_logo {
  margin-bottom: 31px;
  display: block;
}
#footer .footer_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
}
#footer .footer_sns .link_x {
  width: 36px;
  height: 36px;
  display: inline-block;
  background: url(/assets/img/icon_tw.351a4a81.svg) 0 0/contain no-repeat;
}
@media (hover: hover) {
  #footer .footer_sns .link_x:hover {
    opacity: 0.6;
  }
}
#footer .footer_sns .link_fb {
  width: 36px;
  height: 36px;
  display: inline-block;
  background: url(/assets/img/icon_fb.831579f5.svg) 0 0/contain no-repeat;
}
@media (hover: hover) {
  #footer .footer_sns .link_fb:hover {
    opacity: 0.6;
  }
}
#footer .footer_sns .link_yt {
  width: 36px;
  height: 36px;
  display: inline-block;
  background: url(/assets/img/icon_yt.a1f53e2a.svg) 0 0/contain no-repeat;
}
@media (hover: hover) {
  #footer .footer_sns .link_yt:hover {
    opacity: 0.6;
  }
}
#footer .footer_sns .link_tt {
  width: 36px;
  height: 36px;
  display: inline-block;
  background: url(/assets/img/icon_tt.17c88578.svg) 0 0/contain no-repeat;
}
@media (hover: hover) {
  #footer .footer_sns .link_tt:hover {
    opacity: 0.6;
  }
}
#footer .footer_sns .link_it {
  width: 36px;
  height: 36px;
  display: inline-block;
  background: url(/assets/img/icon_it.37577fb2.svg) 0 0/contain no-repeat;
}
@media (hover: hover) {
  #footer .footer_sns .link_it:hover {
    opacity: 0.6;
  }
}
#footer .copyright {
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  #footer .footer_text01 {
    margin-bottom: 8px;
  }
  #footer .footer_text02 {
    font-size: 1.8rem;
    font-weight: 400;
  }
  #footer .footer_text03 {
    text-align: left;
  }
  #footer .footer_text04 {
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 1px solid #fff;
    margin-bottom: 12px;
    font-size: 1.4rem;
  }
  #footer .footer_area01 {
    padding: 0 15px;
    margin: 0 auto 15px;
  }
  #footer .footer_area02 {
    background-color: #111;
    padding: 50px 15px 38px;
  }
  #footer .footer_area03 {
    background-color: #EEE;
    padding: 36px 15px 108px;
    font-size: 1.2rem;
    color: #111;
  }
  #footer .footer_area03 .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 28px;
    max-width: 1170px;
    margin: 0 auto;
    font-size: 1.3rem;
  }
  #footer .footer_block01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto 68px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 36px 22px;
    width: 100%;
  }
  #footer .footer_block01 .footer_item01 {
    width: 100%;
    margin-bottom: 15px;
  }
  #footer .footer_block01 .footer_item02 {
    width: calc((100% - 22px) / 2);
  }
  #footer .footer_block01 .footer_item03 {
    width: calc((100% - 22px) / 2);
  }
  #footer .footer_block02 {
    color: #fff;
    font-size: 1.3rem;
    line-height: 2;
    text-align: left;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #footer .footer_list02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.3rem;
    gap: 3px;
  }
  #footer .footer_list01 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 14px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 14px;
  }
  #footer .footer_logo {
    margin: 0 auto 24px;
    display: block;
    max-width: 206px;
  }
  #footer .footer_sns {
    gap: 21px;
  }
  #footer .copyright {
    font-size: 1.2rem;
  }
}

.btn_arrow01 {
  width: 100%;
  height: 91px;
  border-radius: 1000px;
  background: #00A4B0;
  padding: 0 74px 0 69px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
.btn_arrow01::after {
  content: "";
  width: 38px;
  height: 5px;
  background-image: url(/assets/img/arrow_btn01.0788ea57.svg);
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 36px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (hover: hover) {
  .btn_arrow01:hover::after {
    right: 21px;
  }
}
@media (max-width: 767px) {
  .btn_arrow01 {
    height: 72px;
    padding: 0 64px 0 59px;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
  }
  .btn_arrow01::after {
    content: "";
    width: 30px;
    height: 5px;
    background-image: url(/assets/img/arrow_btn01.0788ea57.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.btn_arrow02 {
  width: 100%;
  height: 83px;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #EEE), to(#F3F3F3));
  background: linear-gradient(90deg, #EEE 50%, #F3F3F3 100%);
  padding: 0 63px 0 52px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 19px;
  position: relative;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}
.btn_arrow02::after {
  content: "";
  width: 23px;
  height: 23px;
  background-image: url(/assets/img/arrow_btn02.c19f8001.svg);
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 33px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (hover: hover) {
  .btn_arrow02:hover {
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #069CA7), color-stop(244.26%, rgba(58, 173, 181, 0.33)));
    background: linear-gradient(90deg, #069CA7 50%, rgba(58, 173, 181, 0.33) 244.26%);
  }
}
@media (max-width: 767px) {
  .btn_arrow02 {
    width: 100%;
    height: 83px;
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #069CA7), color-stop(244.26%, rgba(58, 173, 181, 0.33)));
    background: linear-gradient(90deg, #069CA7 50%, rgba(58, 173, 181, 0.33) 244.26%);
    padding: 0 50px 0 18px;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0;
    position: relative;
    font-size: 1.4rem;
    line-height: 1.5714285714;
    font-weight: 700;
  }
  .btn_arrow02::after {
    content: "";
    width: 23px;
    height: 23px;
    background-image: url(/assets/img/arrow_btn02.c19f8001.svg);
    background-size: contain;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 16px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.btn_arrow03 {
  width: 100%;
  height: 82px;
  border-radius: 1000px;
  background: #00A4B0;
  padding: 0 35px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  gap: 11px;
  margin: 0 auto;
}
.btn_arrow03::after {
  content: "";
  width: 38px;
  height: 5px;
  background-image: url(/assets/img/arrow_btn01.0788ea57.svg);
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  display: inline-block;
}
@media (hover: hover) {
  .btn_arrow03:hover {
    opacity: 0.6;
  }
}

.btn_ex01 {
  width: 100%;
  height: 82px;
  border-radius: 1000px;
  background: #5ABAD7;
  padding: 0 18px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  gap: 18;
}
.btn_ex01::after {
  content: "";
  width: 20px;
  height: 21px;
  background-image: url(/assets/img/ex.72bb6388.svg);
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  display: inline-block;
}
@media (hover: hover) {
  .btn_ex01:hover {
    opacity: 0.6;
  }
}




/* フローティングバナー */

#float {
  display: none;
}

#float .link_floating {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0% 3%;
}

#float img {
  width: 100%;
  padding: 10px;
}

#float .link img:hover {
  width: 540px;
  height: auto;
}



/*==================================================
アコーディオンのためのcss
===================================*/

/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 100%;
  margin: 0 auto;
  color: #fff;
}
.accordion-area section {
  border-bottom: 1px solid #fff;
  margin-bottom: 12px;
}

/*アコーディオンタイトル*/
.menu_ac_title {
  font-weight: 700;
  padding-bottom: 12px;
  font-size: 1.4rem;
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
}

/*アイコン用*/
.menu_ac_title span{
  position: absolute;
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 0.6em;
  height: 0.6em;
  border: 0.2em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}
.menu_ac_title span {
  top: 6px;
  right: 3%;
}

/*　closeというクラスがついたら形状変化　*/

.menu_ac_title.close {
  color: #27ABB6;
}
.menu_ac_title.close span {
  color: #27ABB6;
  transform: translateY(25%) rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.menu_ac_box {
  display: none;
  /*はじめは非表示*/
}

.menu_ac_box ul {
  margin-bottom: 10px;
}

.menu_ac_box ul li {
  padding: 2% 0 2% 3%;
}

div.accordion_contents {
  color: #fff;
  width: 90%;
  margin: 10px auto 0 auto;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
}


div.accordion_contents p.txt {
  width: 70%;
}
