@charset "UTF-8";
/* - フォント読み込み */
@import url("https://fonts.googleapis.com/css2?family=Kosugi&family=Kosugi+Maru&family=M+PLUS+1:wght@300;400;500&family=M+PLUS+Rounded+1c:wght@300;400;500;700&display=swap");
/* - reset  */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, 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, main, menu, nav, section, summary, time, mark, audio, video, a, picture, figure {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  text-decoration: none;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, picture, figure {
  display: block;
}

ul, ol {
  list-style: none;
  list-style-position: inside;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  background-color: #D7DBE4;
}

img, input, select {
  vertical-align: middle;
}

/* //////////////////////////////////////
- common
////////////////////////////////////// */
body {
  color: #000;
  font-weight: 400;
  font-size: 16px;
  font-family: "Kosugi", sans-serif;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
}
.pc_none {
  display: none;
}

.sp_none {
  display: inline-block;
}

.fade {
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: transform 1s, opacity 1s;
  transition: transform 1s, opacity 1s, -webkit-transform 1s;
}
.fade.fade_in {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

sup {
  position: relative;
  top: -3px;
  font-size: 100%;
}

/* //////////////////////////////////////
- header
////////////////////////////////////// */
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 85px;
  padding: 0 73px;
  background-color: #fff;
}
header h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 85px;
  cursor: pointer;
}
header .ttl_description {
  position: absolute;
  top: 85px;
  left: 0;
  width: 100%;
  padding: 20px 0 20px 20px;
  background-color: rgba(255, 255, 255, 0.89);
  -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 6px rgba(0, 0, 0, 0.15);
  font-size: 13px;
  line-height: 1.6;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
header .ttl_description.on {
  opacity: 1;
  pointer-events: all;
}
header .ttl_description div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1173px;
  margin: auto;
}
header .ttl_description .ttl_description_logo {
  display: none;
}
header .ttl_description p {
  width: calc(100% - 102px);
}
header .ttl_description .close {
  width: 102px;
  font-size: 18px;
  cursor: pointer;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
nav li {
  display: inline-block;
  z-index: 1;
  position: relative;
}
nav li:before {
  display: block;
  z-index: -1;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  content: "";
  -webkit-transition: 0.3s ease 0s;
  transition: 0.3s ease 0s;
}
nav li:hover a {
  color: #fff;
}
nav li:hover:before {
  width: 100%;
}
nav li:nth-child(1):before {
  background-color: #009FBE;
}
nav li:nth-child(2):before {
  background-color: #8CB808;
}
nav li:nth-child(3):before {
  background-color: #EDB300;
}
nav li:nth-child(4):before {
  background-color: #BFBFBF;
}
nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 85px;
  padding: 0 24px;
  color: #000;
  font-weight: bold;
  font-size: 15px;
  font-family: "Kosugi Maru", sans-serif;
}
nav li a::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-bottom: 1px solid;
  border-left: 1px solid;
  content: "";
}
nav li a[target=_blank]::after {
  display: none;
}

/* //////////////////////////////////////
- nav
////////////////////////////////////// */
.nav_btn_on,
.nav_btn_off {
  display: none;
}

.nav_wrap {
  position: static;
  width: auto;
  min-height: auto;
}
/* //////////////////////////////////////
- pagetop
////////////////////////////////////// */
.pagetop {
  z-index: 10;
  position: fixed;
  right: 0;
  bottom: -60px;
  width: 60px;
  height: 60px;
  background-color: #222222;
  -webkit-transition: bottom 0.5s;
  transition: bottom 0.5s;
}
.pagetop a {
  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;
  width: 100%;
  height: 100%;
  padding-top: 8px;
}
.pagetop a::after {
  display: block;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
}
.pagetop.pagetop_in {
  bottom: 0;
}

/* //////////////////////////////////////
- footer
////////////////////////////////////// */
footer {
  padding: 60px 0 40px;
  border-top: 1px solid #CCCCCC;
  text-align: center;
}
footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px auto;
  font-size: 13px;
}
footer li {
  margin: 0 13px 10px;
}
footer .copyright {
  font-size: 12px;
}
footer a {
  color: #333;
}

/* //////////////////////////////////////
- main
////////////////////////////////////// */
main {
  margin-top: 85px;
  margin-bottom: 60px;
}
main > section {
  width: 100%;
}
main .kv_area {
  height: calc(100vh - 85px);
  padding: 5vh 0;
}
main .kv_area div {
  width: auto;
  height: 100%;
}
main .kv_area video {
  display: block;
  position: relative;
  width: auto;
  max-width: 100%;
  height: 100%;
  margin: auto;
  border-radius: 16px;
}
main .kv_area .video_pc {
  display: block;
  position: relative;
}
main .kv_area .video_pc span {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  width: 24px;
  height: 46px;
  margin: auto;
}
main .kv_area .video_sp {
  display: none;
}
main .kv_area .music_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 135vh;
  width: auto;
  max-width: 100%;
  max-width: 100%;
  height: 57vw;
  max-height: 100%;
  margin: auto;
  pointer-events: none;
}
main .kv_area .music_btn span {
  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;
  width: 110px;
  height: auto;
  margin: 0 0 0 auto;
  padding: 4px 0;
  border: 2px solid #666;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.5);
  color: #666;
  font-size: 14px;
  cursor: pointer;
  pointer-events: all;
}
main .kv_area .music_btn span::after {
  display: inline-block;
  width: 24px;
  height: 16px;
  margin-left: 4px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  content: "";
}
main .kv_area .music_btn span.on::before {
  content: "音声ON";
}
main .kv_area .music_btn span.off::before {
  content: "音声OFF";
}
main .kv_area .music_btn span.on::after {
  background-image: url(../img/ico_music_on.png);
}
main .kv_area .music_btn span.off::after {
  background-image: url(../img/ico_music_off.png);
}
main .key_btn_area {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 16px auto 36px;
}
main .key_btn_area .long_btn {
  width: 100%;
  max-width: 460px;
  margin: auto;
}
main .key_btn_area .long_btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 460px;
  height: 76px;
  border: 2px solid #009FBE;
  border-radius: 6px;
  color: #009FBE;
  line-height: 1.6;
}
main .key_btn_area .long_btn a::after {
  display: block;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23109FBE' stroke='%23109FBE' d='M0 0h16v16H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg fill='%23109FBE' clip-path='url(%23a)'%3E%3Cpath d='M15.306 7.566a.686.686 0 0 0-.685.685v5.425a.954.954 0 0 1-.953.953H2.323a.954.954 0 0 1-.953-.953V2.332a.954.954 0 0 1 .953-.953h5.426a.685.685 0 0 0 0-1.37H2.323A2.326 2.326 0 0 0 0 2.332v11.344a2.326 2.326 0 0 0 2.323 2.323h11.344a2.326 2.326 0 0 0 2.323-2.323V8.251a.686.686 0 0 0-.685-.685'/%3E%3Cpath d='M13.667 16.5H2.323A2.827 2.827 0 0 1-.5 13.676V2.332A2.827 2.827 0 0 1 2.323-.491h5.426a1.185 1.185 0 0 1 0 2.37H2.323a.454.454 0 0 0-.453.453v11.344a.454.454 0 0 0 .453.453h11.344a.454.454 0 0 0 .453-.453V8.251a1.185 1.185 0 0 1 2.37 0v5.425a2.827 2.827 0 0 1-2.823 2.824ZM2.323.509A1.826 1.826 0 0 0 .5 2.332v11.344a1.826 1.826 0 0 0 1.823 1.823h11.344a1.826 1.826 0 0 0 1.823-1.823V8.251a.185.185 0 0 0-.37 0v5.425a1.455 1.455 0 0 1-1.453 1.456H2.323A1.455 1.455 0 0 1 .87 13.676V2.332A1.455 1.455 0 0 1 2.323.879h5.426a.185.185 0 0 0 0-.37Z'/%3E%3Cpath d='M15.22-.001h-3.853a.685.685 0 0 0-.685.672.673.673 0 0 0 .2.488.706.706 0 0 0 .5.211h2.285L7.52 7.53a.685.685 0 1 0 .97.968l6.14-6.155v2.51a.685.685 0 0 0 .672.685.674.674 0 0 0 .488-.2.706.706 0 0 0 .211-.5V.78a.781.781 0 0 0-.78-.78'/%3E%3Cpath d='M8.005 9.199a1.185 1.185 0 0 1-.839-2.022l5.293-5.306H11.38a1.208 1.208 0 0 1-.857-.361 1.179 1.179 0 0 1 .016-1.67 1.178 1.178 0 0 1 .83-.34h3.853a1.282 1.282 0 0 1 1.28 1.28v4.061a1.209 1.209 0 0 1-.361.857 1.172 1.172 0 0 1-.824.339h-.023a1.185 1.185 0 0 1-1.162-1.185v-1.3l-5.286 5.3a1.176 1.176 0 0 1-.841.347Zm3.362-8.7a.185.185 0 0 0-.185.181.173.173 0 0 0 .053.128.206.206 0 0 0 .144.061h3.49L7.874 7.881a.186.186 0 0 0 0 .262.185.185 0 0 0 .261 0l6.994-7.012v3.721a.185.185 0 0 0 .181.185.177.177 0 0 0 .128-.053.205.205 0 0 0 .061-.144V.78a.28.28 0 0 0-.28-.28Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%;
  content: "";
}
main .maintop_area {
  margin-bottom: 90px;
}
main .maintop_area .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1106px;
  margin: auto auto auto auto;
}
main .maintop_area .wrap div {
  width: 50%;
  max-width: 553px;
}
main .maintop_area .wrap div strong {
  font-weight: bold;
}
main .maintop_area .wrap div a {
  color: #000;
}
main .maintop_area .wrap div a:hover {
  text-decoration: underline;
}
main .maintop_area .wrap figure {
  width: 45%;
  max-width: 415px;
}
main .maintop_area .wrap figure img {
  width: 100%;
  height: auto;
}
main .maintop_area dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1106px;
  margin: auto auto auto auto;
  margin-top: 50px;
  padding: 50px 0 0;
  border-top: 1px solid #CCCCCC;
}
main .maintop_area dt {
  width: 150px;
  font-weight: bold;
  font-size: 24px;
  font-family: "Kosugi Maru", sans-serif;
}
main .maintop_area dd {
  width: calc(100% - 150px);
  font-size: 15px;
}
main .maintop_area dd li {
  margin-bottom: 30px;
}
main .maintop_area dd li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
main .maintop_area dd li a[href]:hover .ttl {
  text-decoration: underline;
}
main .maintop_area dd .date {
  width: 120px;
  color: #666666;
  line-height: 1.8;
}
main .maintop_area dd .ttl {
  width: calc(100% - 120px);
  color: #000000;
  line-height: 1.8;
}
main .maintop_area h2 {
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 40px;
  line-height: 1.5;
  font-family: "Kosugi Maru", sans-serif;
}
main .maintop_area p {
  font-size: 16px;
  line-height: 1.8;
}
main .content_area h2 {
  padding: 22px 0;
  font-size: 30px;
  font-family: "Kosugi Maru", sans-serif;
}
main .content_area h2 span {
  display: block;
  width: 100%;
  max-width: 1106px;
  margin: auto auto auto auto;
  color: #fff;
  font-weight: bold;
}
main .content_area .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1106px;
  margin: auto auto auto auto;
  padding-bottom: 80px;
}
main .content_area .description > figure {
  width: 50%;
  max-width: 553px;
}
main .content_area .description > figure img {
  width: 100%;
  height: auto;
}
main .content_area .description > div {
  width: 48%;
  max-width: 513px;
}
main .content_area .description > div figure {
  width: 100%;
}
main .content_area .description > div figure img {
  width: 100%;
  height: auto;
}
main .content_area .description > div figure.modal_open {
  position: relative;
  height: 308px;
  overflow: hidden;
  cursor: pointer;
}
main .content_area .description > div figure.modal_open img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
main .content_area .description > div figure.modal_open::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 56px;
  margin: auto;
  background-image: url(../img/modal_play.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  content: "";
}
main .content_area .description > div figure.modal_open:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
main .content_area .description h3 {
  width: 100%;
  margin: 50px 0 40px;
  padding-left: 16px;
  border-left: 6px solid;
  color: #333;
  font-weight: bold;
  font-size: 32px;
  font-family: "Kosugi Maru", sans-serif;
}
main .content_area .description h4 {
  width: 100%;
  margin-bottom: 30px;
  color: #333;
  font-family: "Kosugi Maru", sans-serif;
}
main .content_area .description h4 small {
  display: block;
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 18px;
}
main .content_area .description h4 span {
  display: block;
  font-weight: bold;
  font-size: 32px;
  line-height: 1.4;
}
main .content_area .description p {
  color: #333;
  line-height: 1.8;
}
main .content_area .description .notes {
  margin-top: 20px;
  font-size: 13px;
  font-weight: bold;
}
main .content_area .description dl {
  margin-top: 8px;
  padding: 28px;
  border: 1px solid #000000;
}
main .content_area .description dt {
  font-weight: bold;
  font-size: 15px;
}
main .content_area .description dd {
  margin-top: 16px;
  color: #333;
  font-size: 13px;
  line-height: 1.8;
}
main .content_area .description .more_btn {
  margin-top: 40px;
  cursor: pointer;
}
main .content_area .description .more_btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 76px;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  font-family: "Kosugi Maru", sans-serif;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
main .content_area .description .more_btn a::after {
  display: block;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' stroke='%23fff' d='M0 0h16v16H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg fill='%23fff' clip-path='url(%23a)'%3E%3Cpath d='M15.306 7.566a.686.686 0 0 0-.685.685v5.425a.954.954 0 0 1-.953.953H2.323a.954.954 0 0 1-.953-.953V2.332a.954.954 0 0 1 .953-.953h5.426a.685.685 0 0 0 0-1.37H2.323A2.326 2.326 0 0 0 0 2.332v11.344a2.326 2.326 0 0 0 2.323 2.323h11.344a2.326 2.326 0 0 0 2.323-2.323V8.251a.686.686 0 0 0-.685-.685'/%3E%3Cpath d='M13.667 16.5H2.323A2.827 2.827 0 0 1-.5 13.676V2.332A2.827 2.827 0 0 1 2.323-.491h5.426a1.185 1.185 0 0 1 0 2.37H2.323a.454.454 0 0 0-.453.453v11.344a.454.454 0 0 0 .453.453h11.344a.454.454 0 0 0 .453-.453V8.251a1.185 1.185 0 0 1 2.37 0v5.425a2.827 2.827 0 0 1-2.823 2.824ZM2.323.509A1.826 1.826 0 0 0 .5 2.332v11.344a1.826 1.826 0 0 0 1.823 1.823h11.344a1.826 1.826 0 0 0 1.823-1.823V8.251a.185.185 0 0 0-.37 0v5.425a1.455 1.455 0 0 1-1.453 1.456H2.323A1.455 1.455 0 0 1 .87 13.676V2.332A1.455 1.455 0 0 1 2.323.879h5.426a.185.185 0 0 0 0-.37Z'/%3E%3Cpath d='M15.22-.001h-3.853a.685.685 0 0 0-.685.672.673.673 0 0 0 .2.488.706.706 0 0 0 .5.211h2.285L7.52 7.53a.685.685 0 1 0 .97.968l6.14-6.155v2.51a.685.685 0 0 0 .672.685.674.674 0 0 0 .488-.2.706.706 0 0 0 .211-.5V.78a.781.781 0 0 0-.78-.78'/%3E%3Cpath d='M8.005 9.199a1.185 1.185 0 0 1-.839-2.022l5.293-5.306H11.38a1.208 1.208 0 0 1-.857-.361 1.179 1.179 0 0 1 .016-1.67 1.178 1.178 0 0 1 .83-.34h3.853a1.282 1.282 0 0 1 1.28 1.28v4.061a1.209 1.209 0 0 1-.361.857 1.172 1.172 0 0 1-.824.339h-.023a1.185 1.185 0 0 1-1.162-1.185v-1.3l-5.286 5.3a1.176 1.176 0 0 1-.841.347Zm3.362-8.7a.185.185 0 0 0-.185.181.173.173 0 0 0 .053.128.206.206 0 0 0 .144.061h3.49L7.874 7.881a.186.186 0 0 0 0 .262.185.185 0 0 0 .261 0l6.994-7.012v3.721a.185.185 0 0 0 .181.185.177.177 0 0 0 .128-.053.205.205 0 0 0 .061-.144V.78a.28.28 0 0 0-.28-.28Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%;
  content: "";
}
main .content_area .description .more_btn a:hover {
  opacity: 0.8;
}
main .content_area .description .modal_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 76px;
  margin-top: 40px;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  font-family: "Kosugi Maru", sans-serif;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
main .content_area .description .modal_btn:hover {
  opacity: 0.8;
}
main .content_area .point {
  position: relative;
  padding: 80px 0 140px;
}
main .content_area .point::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  content: "";
}
main .content_area .point h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1106px;
  height: 38px;
  margin: auto auto auto auto;
  margin-bottom: 30px;
  padding-left: 60px;
  font-weight: bold;
  font-size: 30px;
  line-height: 1;
  font-family: "Kosugi Maru", sans-serif;
}
main .content_area .point h3::before {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 38px;
  margin: auto;
  background-image: url(../img/ico_point.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  content: "";
}
main .content_area .point ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1106px;
  margin: auto auto auto auto;
}
main .content_area .point ul::after {
  width: 32%;
  max-width: 340px;
  content: "";
}
main .content_area .point li {
  position: relative;
  width: 32%;
  max-width: 340px;
  margin-bottom: 52px;
  overflow: hidden;
  border-radius: 6px;
  background-color: #fff;
  -webkit-box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
}
main .content_area .point li div {
  padding: 18px 16px 10px;
}
main .content_area .point li h4 {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #CCCCCC;
  font-family: "Kosugi Maru", sans-serif;
  text-align: center;
}
main .content_area .point li h4 small {
  display: block;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.6;
}
main .content_area .point li h4 span {
  display: block;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.6;
}
main .content_area .point li p {
  color: #333333;
  font-size: 15px;
  line-height: 1.8;
}
main .content_area .point li::after {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 4px solid transparent;
  border-radius: 6px;
  content: "";
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
main .content_area .point a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding-bottom: 70px;
  border-radius: 6px;
  color: #000000;
}
main .content_area .point a::after {
  display: block;
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%230' stroke='%230' d='M0 0h16v16H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg fill='%230' clip-path='url(%23a)'%3E%3Cpath d='M15.306 7.566a.686.686 0 0 0-.685.685v5.425a.954.954 0 0 1-.953.953H2.323a.954.954 0 0 1-.953-.953V2.332a.954.954 0 0 1 .953-.953h5.426a.685.685 0 0 0 0-1.37H2.323A2.326 2.326 0 0 0 0 2.332v11.344a2.326 2.326 0 0 0 2.323 2.323h11.344a2.326 2.326 0 0 0 2.323-2.323V8.251a.686.686 0 0 0-.685-.685'/%3E%3Cpath d='M13.667 16.5H2.323A2.827 2.827 0 0 1-.5 13.676V2.332A2.827 2.827 0 0 1 2.323-.491h5.426a1.185 1.185 0 0 1 0 2.37H2.323a.454.454 0 0 0-.453.453v11.344a.454.454 0 0 0 .453.453h11.344a.454.454 0 0 0 .453-.453V8.251a1.185 1.185 0 0 1 2.37 0v5.425a2.827 2.827 0 0 1-2.823 2.824ZM2.323.509A1.826 1.826 0 0 0 .5 2.332v11.344a1.826 1.826 0 0 0 1.823 1.823h11.344a1.826 1.826 0 0 0 1.823-1.823V8.251a.185.185 0 0 0-.37 0v5.425a1.455 1.455 0 0 1-1.453 1.456H2.323A1.455 1.455 0 0 1 .87 13.676V2.332A1.455 1.455 0 0 1 2.323.879h5.426a.185.185 0 0 0 0-.37Z'/%3E%3Cpath d='M15.22-.001h-3.853a.685.685 0 0 0-.685.672.673.673 0 0 0 .2.488.706.706 0 0 0 .5.211h2.285L7.52 7.53a.685.685 0 1 0 .97.968l6.14-6.155v2.51a.685.685 0 0 0 .672.685.674.674 0 0 0 .488-.2.706.706 0 0 0 .211-.5V.78a.781.781 0 0 0-.78-.78'/%3E%3Cpath d='M8.005 9.199a1.185 1.185 0 0 1-.839-2.022l5.293-5.306H11.38a1.208 1.208 0 0 1-.857-.361 1.179 1.179 0 0 1 .016-1.67 1.178 1.178 0 0 1 .83-.34h3.853a1.282 1.282 0 0 1 1.28 1.28v4.061a1.209 1.209 0 0 1-.361.857 1.172 1.172 0 0 1-.824.339h-.023a1.185 1.185 0 0 1-1.162-1.185v-1.3l-5.286 5.3a1.176 1.176 0 0 1-.841.347Zm3.362-8.7a.185.185 0 0 0-.185.181.173.173 0 0 0 .053.128.206.206 0 0 0 .144.061h3.49L7.874 7.881a.186.186 0 0 0 0 .262.185.185 0 0 0 .261 0l6.994-7.012v3.721a.185.185 0 0 0 .181.185.177.177 0 0 0 .128-.053.205.205 0 0 0 .061-.144V.78a.28.28 0 0 0-.28-.28Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%;
  content: "";
}
main .content_area .point a:hover .thumbnail img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
main .content_area .point .thumbnail {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
main .content_area .point .thumbnail img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
main .content_area .point .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
  padding: 0 16px;
}
main .content_area .point .list_more {
  width: 100%;
  max-width: 1106px;
  margin: auto auto auto auto;
  padding: 24px 0;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
main .content_area .point .list_more span {
  font-weight: bold;
  font-size: 15px;
  font-family: "Kosugi Maru", sans-serif;
}
main .content_area .point .list_more span::after {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 12px;
  background-image: url(../img/ico_plus.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  content: "";
}
main .content_area .point .list_more span.close::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
main .content_area .point .list_more:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
main #driver .description h4 {
  position: relative;
  padding-left: 126px;
}
main #driver .description h4::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 92px;
  height: 74px;
  background-image: url(../img/cont01_img_hx.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  content: "";
}
main #driver .description .more_btn a {
  background-color: #009FBE;
}
main #driver h2 {
  background-color: #009FBE;
}
main #driver h3 {
  border-left-color: #009FBE;
}
main #driver .point {
  background-color: #E5FBFF;
}
main #driver .point li:hover::after {
  border: 4px solid #009FBE;
}
main #elderly .description .modal_btn {
  background-color: #8CB808;
}
main #elderly .description h4 {
  margin-top: 70px;
}
main #elderly .description .caption {
  font-size: 14px;
  text-align: center;
}
main #elderly .description .caption a{
  color: black;
}
main #elderly .description .imglink a:hover{
	opacity:0.8;
	transition:0.3s;
}

main #elderly .description .photo_uno {
  width: 100%;
  margin: 0 auto 54px;
}
main #elderly .description .c2d4 {
  margin-top: 54px;
}
main #elderly h2 {
  background-color: #8CB808;
}
main #elderly h3 {
  border-left-color: #8CB808;
}
main #elderly .point {
  background-color: #F5FCE2;
}
main #elderly .point li:hover::after {
  border: 4px solid #8CB808;
}
main #child .description {
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
}
main #child .description div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 100px;
}
main #child .description h4 {
  margin-top: 30px;
}
main #child .description .more_btn {
  position: absolute;
  bottom: 0;
  width: 100%;
}
main #child .description .more_btn a {
  background-color: #EDB300;
}
main #child h2 {
  background-color: #EDB300;
}
main #child h3 {
  border-left-color: #EDB300;
}
main #child .point {
  background-color: #FFFBEB;
}
main #child .point li:hover::after {
  border: 4px solid #EDB300;
}
main .topics_area > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1106px;
  margin: auto auto auto auto;
}
main .topics_area h2 {
  width: 100%;
  max-width: 1106px;
  margin: auto auto auto auto;
  margin-bottom: 55px;
  font-weight: bold;
  font-size: 30px;
  font-family: "Kosugi Maru", sans-serif;
}
main .topics_area .sns_area {
  width: 317px;
  max-width: 500px;
}
main .topics_area .sns_area > div {
  max-height: 474px;
}
main .topics_area .sns_area h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 34px;
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 25px;
  font-family: "Kosugi Maru", sans-serif;
}
main .topics_area .slider_area {
  width: 716px;
  margin-top: 64px;
  padding: 58px 0 44px;
  border-radius: 6px;
  background-color: #F5F5F5;
}
main .topics_area .slider_area .splide {
  width: 540px;
  margin: auto;
}
main .topics_area .slider_area li {
  width: 100%;
  max-width: 250px;
  margin-right: 40px;
}
main .topics_area .slider_area li a {
  display: block;
  position: relative;
  padding-bottom: 50px;
  background-color: transparent;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
main .topics_area .slider_area li a::after {
  display: block;
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%230' stroke='%230' d='M0 0h16v16H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg fill='%230' clip-path='url(%23a)'%3E%3Cpath d='M15.306 7.566a.686.686 0 0 0-.685.685v5.425a.954.954 0 0 1-.953.953H2.323a.954.954 0 0 1-.953-.953V2.332a.954.954 0 0 1 .953-.953h5.426a.685.685 0 0 0 0-1.37H2.323A2.326 2.326 0 0 0 0 2.332v11.344a2.326 2.326 0 0 0 2.323 2.323h11.344a2.326 2.326 0 0 0 2.323-2.323V8.251a.686.686 0 0 0-.685-.685'/%3E%3Cpath d='M13.667 16.5H2.323A2.827 2.827 0 0 1-.5 13.676V2.332A2.827 2.827 0 0 1 2.323-.491h5.426a1.185 1.185 0 0 1 0 2.37H2.323a.454.454 0 0 0-.453.453v11.344a.454.454 0 0 0 .453.453h11.344a.454.454 0 0 0 .453-.453V8.251a1.185 1.185 0 0 1 2.37 0v5.425a2.827 2.827 0 0 1-2.823 2.824ZM2.323.509A1.826 1.826 0 0 0 .5 2.332v11.344a1.826 1.826 0 0 0 1.823 1.823h11.344a1.826 1.826 0 0 0 1.823-1.823V8.251a.185.185 0 0 0-.37 0v5.425a1.455 1.455 0 0 1-1.453 1.456H2.323A1.455 1.455 0 0 1 .87 13.676V2.332A1.455 1.455 0 0 1 2.323.879h5.426a.185.185 0 0 0 0-.37Z'/%3E%3Cpath d='M15.22-.001h-3.853a.685.685 0 0 0-.685.672.673.673 0 0 0 .2.488.706.706 0 0 0 .5.211h2.285L7.52 7.53a.685.685 0 1 0 .97.968l6.14-6.155v2.51a.685.685 0 0 0 .672.685.674.674 0 0 0 .488-.2.706.706 0 0 0 .211-.5V.78a.781.781 0 0 0-.78-.78'/%3E%3Cpath d='M8.005 9.199a1.185 1.185 0 0 1-.839-2.022l5.293-5.306H11.38a1.208 1.208 0 0 1-.857-.361 1.179 1.179 0 0 1 .016-1.67 1.178 1.178 0 0 1 .83-.34h3.853a1.282 1.282 0 0 1 1.28 1.28v4.061a1.209 1.209 0 0 1-.361.857 1.172 1.172 0 0 1-.824.339h-.023a1.185 1.185 0 0 1-1.162-1.185v-1.3l-5.286 5.3a1.176 1.176 0 0 1-.841.347Zm3.362-8.7a.185.185 0 0 0-.185.181.173.173 0 0 0 .053.128.206.206 0 0 0 .144.061h3.49L7.874 7.881a.186.186 0 0 0 0 .262.185.185 0 0 0 .261 0l6.994-7.012v3.721a.185.185 0 0 0 .181.185.177.177 0 0 0 .128-.053.205.205 0 0 0 .061-.144V.78a.28.28 0 0 0-.28-.28Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%;
  content: "";
}
main .topics_area .slider_area li a:hover {
  background-color: #FFFFFF;
}
main .topics_area .slider_area li figure img {
  width: 100%;
  height: auto;
}
main .topics_area .slider_area li h3 {
  margin-top: 20px;
  padding: 0 16px;
  color: #000;
  font-weight: bold;
  font-size: 15px;
  font-family: "Kosugi Maru", sans-serif;
  text-decoration: underline;
}
main .topics_area .slider_area li p {
  margin-top: 10px;
  padding: 0 16px;
  color: #333333;
  font-size: 14px;
  line-height: 1.8;
}
main .topics_area .slider_area .list_more {
  display: none;
  width: 100%;
  max-width: 1106px;
  margin: auto auto auto auto;
  padding: 24px 0;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
main .topics_area .slider_area .list_more span {
  font-weight: bold;
  font-size: 15px;
  font-family: "Kosugi Maru", sans-serif;
}
main .topics_area .slider_area .list_more span::after {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 12px;
  background-image: url(../img/ico_plus.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  content: "";
}
main .topics_area .slider_area .list_more span.close::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
main .topics_area .slider_area .list_more:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
main .topics_area .splide__arrow {
  background-color: transparent;
}
main .topics_area .splide__arrow--prev {
  left: -70px;
}
main .topics_area .splide__arrow--next {
  right: -70px;
}
main .mainfoot_area {
  margin-top: 105px;
  text-align: center;
}
main .mainfoot_area .foot_logo {
  margin-bottom: 38px;
}
main .mainfoot_area .foot_logo img {
  width: 100%;
  max-width: 332px;
  height: auto;
}
main .mainfoot_area p {
  color: #333333;
  line-height: 1.8;
}

.point_bar {
  position: fixed;
  left: 0;
  width: 100%;
  padding: 26px 20px 20px;
  background-image: url(../img/bg_pointbar.png);
  background-position: 50% 0;
  background-size: 100% 6px;
  background-repeat: no-repeat;
  background-color: #fff;
  -webkit-transition: bottom 0.3s;
  transition: bottom 0.3s;
}
.point_bar.on {
  bottom: 0;
}
.point_bar dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1106px;
  margin: auto auto auto auto;
}
.point_bar dt {
  width: 220px;
  font-weight: bold;
  font-size: 14px;
  font-family: "Kosugi Maru", sans-serif;
}
.point_bar dd {
  width: calc(100% - 220px);
  font-size: 12px;
  line-height: 1.8;
}

.modal_area,
.modal_area_mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 9;
  position: fixed;
  top: 85px;
  left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: calc(100vh - 85px);
  padding: 0;
  background-color: rgba(0, 0, 0, 0.76);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.modal_area .modal_close,
.modal_area_mv .modal_close {
  display: block;
  position: sticky;
  top: 0;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  color: #fff;
  line-height: 1;
  text-align: right;
  cursor: pointer;
}
.modal_area .modal_close::before,
.modal_area_mv .modal_close::before {
  content: "× 閉じる";
}
.modal_area .modal_cont,
.modal_area_mv .modal_cont {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 35px 0 40px;
  overflow-y: auto;
}
.modal_area .modal_cont ul,
.modal_area_mv .modal_cont ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 902px;
  margin: auto;
  margin-top: 30px;
}
.modal_area .modal_cont ul::before, .modal_area .modal_cont ul::after,
.modal_area_mv .modal_cont ul::before,
.modal_area_mv .modal_cont ul::after {
  width: 24%;
  max-width: 205px;
  content: "";
}
.modal_area .modal_cont ul::before,
.modal_area_mv .modal_cont ul::before {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.modal_area .modal_cont li,
.modal_area_mv .modal_cont li {
  width: 24%;
  max-width: 205px;
  margin-bottom: 24px;
  text-align: center;
  cursor: pointer;
}
.modal_area .modal_cont li:hover img,
.modal_area_mv .modal_cont li:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.modal_area .modal_cont figure,
.modal_area_mv .modal_cont figure {
  position: relative;
  width: 100%;
  height: 115px;
  margin-bottom: 12px;
  overflow: hidden;
}
.modal_area .modal_cont figure::after,
.modal_area_mv .modal_cont figure::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 47px;
  height: 47px;
  margin: auto;
  background-image: url(../img/modal_play.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  content: "";
}
.modal_area .modal_cont figure img,
.modal_area_mv .modal_cont figure img {
  width: 100%;
  height: 115px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.modal_area .modal_cont p,
.modal_area_mv .modal_cont p {
  display: inline;
  color: #fff;
  font-size: 13px;
  text-decoration: underline;
}

.modal_area_mv {
  opacity: 0;
  pointer-events: none;
}
.modal_area_mv .modal_cont {
  width: auto;
  height: auto;
  padding: 0 0 20px;
}
.modal_area_mv .youtube {
  margin-top: 20px;
}
.modal_area_mv .youtube iframe {
  width: 107vh;
  height: 60vh;
  background-color: #000;
}
@media screen and (max-width: 1138px) {
  body {
    /* 1040px 以下 */
  }
  header {
    padding: 0 16px;
  }
  .pagetop {
    display: none !important;
  }
  main .maintop_area .wrap {
    padding: 0 16px;
  }
  main .content_area h2 {
    padding: 22px 16px;
  }
  main .content_area .description {
    max-width: 100%;
    padding: 0 16px 80px;
  }
  main .content_area .point {
    padding: 80px 16px 140px;
  }
  main .topics_area {
    padding: 0 16px;
  }
  main .topics_area .sns_area {
    width: 100%;
    max-width: 716px;
    margin: 0 auto;
  }
  main .topics_area .slider_area {
    margin: 63px auto 0;
  }
  .modal_area .modal_cont,
  .modal_area_mv .modal_cont {
    padding: 35px 16px 40px;
  }
}
@media screen and (max-width: 990px) {
  body {
    /* 970px 以下 */
  }
  nav li a {
    padding: 0 14px;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .pc_none {
    display: inline-block;
  }
  .sp_none {
    display: none;
  }
  header {
    height: 60px;
  }
  header .ttl_description {
    position: static;
    padding: 32px 16px 30px;
    background-color: #E3E3E3;
    -webkit-box-shadow: none;
            box-shadow: none;
    opacity: 1;
  }
  header .ttl_description div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .ttl_description p {
    width: 100%;
  }
  header .ttl_description .ttl_description_logo {
    display: block;
    width: 80%;
    max-width: 274px;
    margin: 0 auto 20px;
  }
  header .ttl_description .ttl_description_logo img {
    width: 100%;
    height: auto;
  }
  header .ttl_description .close {
    display: none;
  }
  nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    max-width: 180px;
    margin: 70px auto 0;
  }
  nav li {
    display: inline-block;
    position: relative;
    width: 100%;
    margin-bottom: 36px;
  }
  nav li:before {
    position: absolute;
    top: auto;
    bottom: -5px;
    width: 100%;
    height: 4px;
    -webkit-transition: none;
    transition: none;
  }
  nav li:hover a {
    color: #000000;
  }
  nav li:hover:before {
    width: auto;
  }
  nav li a {
    height: auto;
    padding: 0;
    color: #000;
    font-size: 15px;
  }
  .nav_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 30px;
    overflow-x: auto;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .nav_wrap.on {
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    pointer-events: all;
  }
  .nav_btn_on,
  .nav_btn_off {
    display: inline-block;
  }
  .nav_btn_on {
    margin: 0 0 0 auto;
  }
  .nav_btn_off {
    position: fixed;
    top: 18px;
    right: 19px;
  }
  footer {
    padding: 50px 0 40px;
  }
  footer ul {
    max-width: 330px;
  }
  main {
    margin-top: 60px;
  }
  main .kv_area {
    width: 100%;
    height: auto;
    padding: 0;
    overflow: hidden;
  }
  main .kv_area video {
    width: 100%;
    max-width: none;
    margin-left: 0;
    border-radius: 0;
  }
  main .kv_area .video_pc {
    display: none;
  }
  main .kv_area .video_sp {
    display: block;
    position: relative;
  }
  main .kv_area .music_btn {
    top: 2vw;
    right: 2vw;
    bottom: auto;
    left: auto;
    width: 100px !important;
    height: auto;
  }
  main .kv_area .music_btn span {
    width: 90px;
    font-size: 12px;
  }
  main .kv_area .music_btn span::after {
    width: 20px;
    height: 12px;
  }
  main .key_btn_area {
    margin: 16px auto 56px;
  }
  main .key_btn_area .long_btn {
    max-width: 320px;
  }
  main .key_btn_area .long_btn a {
    height: 60px;
    font-size: 14px;
  }
  main .maintop_area {
    margin-top: 30px;
    margin-bottom: 40px;
  }
  main .maintop_area .wrap div {
    width: 100%;
    max-width: none;
  }
  main .maintop_area .wrap figure {
    width: 80%;
    margin: auto;
  }
  main .maintop_area dl {
    margin-top: 35px;
    padding: 35px 0 0;
  }
  main .maintop_area dt {
    margin-bottom: 20px;
    font-size: 20px;
  }
  main .maintop_area dd {
    width: 100%;
  }
  main .maintop_area dd .date {
    width: 100%;
    margin-bottom: 10px;
    font-size: 12px;
  }
  main .maintop_area dd .ttl {
    width: 100%;
    font-size: 13px;
  }
  main .maintop_area h2 {
    font-size: 26px;
  }
  main .maintop_area p {
    font-size: 14px;
  }
  main .content_area h2 {
    padding: 10px 0;
    font-size: 20px;
    text-align: center;
  }
  main .content_area .description {
    padding: 0 16px 0;
  }
  main .content_area .description > figure {
    width: calc(100% + 32px);
    max-width: none;
    margin: 0 -16px 28px;
  }
  main .content_area .description > div {
    width: 100%;
    max-width: none;
    margin-bottom: 60px;
  }
  main .content_area .description > div figure {
    width: calc(100% + 32px);
    margin: 0 -16px 28px;
  }
  main .content_area .description > div figure.modal_open {
    height: auto;
  }
  main .content_area .description > div figure.modal_open img {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  main .content_area .description > div figure.modal_open:hover img {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  main .content_area .description h3 {
    margin: 30px 0;
    padding-left: 10px;
    font-size: 20px;
  }
  main .content_area .description h4 {
    margin-bottom: 20px;
  }
  main .content_area .description h4 small {
    margin-bottom: 10px;
    font-size: 14px;
  }
  main .content_area .description h4 span {
    font-size: 22px;
  }
  main .content_area .description p {
    font-size: 14px;
  }
  main .content_area .description dl {
    padding: 20px 16px;
  }
  main .content_area .description dd {
    margin-top: 10px;
  }
  main .content_area .description .more_btn {
    margin-top: 30px;
  }
  main .content_area .description .more_btn a {
    height: 50px;
    font-size: 14px;
  }
  main .content_area .description .more_btn a::after {
    width: 14px;
    height: 14px;
  }
  main .content_area .description .modal_btn {
    height: 50px;
    margin-top: 30px;
    font-size: 14px;
  }
  main .content_area .point {
    padding: 40px 16px 140px;
  }
  main .content_area .point h3 {
    padding-left: 50px;
    font-size: 20px;
  }
  main .content_area .point h3::before {
    top: 1px;
    width: 34px;
    height: 28px;
  }
  main .content_area .point ul::after {
    display: none;
  }
  main .content_area .point li {
    margin-bottom: 30px;
  }
  main .content_area .point li p {
    font-size: 14px;
  }
  main .content_area .point li {
    width: 100%;
    max-width: none;
  }
  main .content_area .point a {
    padding-bottom: 68px;
  }
  main .content_area .point .thumbnail {
    height: auto;
  }
  main .content_area .point .thumbnail img {
    height: auto;
  }
  main .content_area .point .logo {
    padding: 0 16px 10px;
  }
  main .content_area .point .list_more {
    padding: 12px 0;
  }
  main .content_area .point .list_more:hover {
    background-color: transparent;
  }
  main #driver .description h4 {
    padding-left: 90px;
  }
  main #driver .description h4::before {
    width: 72px;
    height: 64px;
  }
  main #elderly .description h4 {
    margin-top: 40px;
  }
  main #elderly .description .caption {
    margin-top: -20px;
    line-height: 1.2;
  }
  main #elderly .description .photo_uno {
    width: 100%;
  }
  main #child .description div {
    padding-bottom: 70px;
  }
  main #child .description h4 {
    margin-top: 0;
  }
  main .topics_area .sns_area {
    width: 100%;
    text-align: center;
  }
  main .topics_area .sns_area > div {
    width: 100%;
  }
  main .topics_area .slider_area {
    width: calc(100% + 36px);
    margin: 40px -16px 0;
    padding: 40px 34px 40px;
  }
  main .topics_area .slider_area .splide {
    width: 100%;
  }
  main .topics_area .slider_area li {
    max-width: none;
    margin-right: 0;
    margin-bottom: 30px;
  }
  main .topics_area .slider_area li a {
    background-color: #FFFFFF;
  }
  main .topics_area .slider_area .list_more {
    display: block;
    padding: 12px 0;
  }
  main .topics_area .slider_area .list_more:hover {
    background-color: transparent;
  }
  main .topics_area .splide__arrows {
    display: none;
  }
  main .mainfoot_area {
    margin-top: 40px;
    padding: 0 16px;
  }
  main .mainfoot_area .foot_logo {
    margin-bottom: 30px;
  }
  main .mainfoot_area .foot_logo img {
    max-width: 300px;
  }
  main .mainfoot_area p {
    text-align: left;
  }
  .point_bar {
    padding: 26px 16px 20px;
    background-image: url(../img/bg_pointbar_sp.png);
    background-size: 100% 6px;
    color: #111;
  }
  .point_bar dt {
    width: 100%;
  }
  .point_bar dd {
    width: 100%;
    margin-top: 10px;
  }
  .modal_area,
  .modal_area_mv {
    z-index: 11;
    top: 0;
    height: 100%;
  }
  .modal_area .modal_close,
  .modal_area_mv .modal_close {
    z-index: 1;
    position: fixed;
    top: 21px;
    right: 20px;
    width: 20px;
  }
  .modal_area .modal_close::before,
  .modal_area_mv .modal_close::before {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../img/modal_close_sp.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    content: "";
  }
  .modal_area .modal_cont li,
  .modal_area_mv .modal_cont li {
    width: 48%;
    max-width: none;
  }
  .modal_area .modal_cont figure,
  .modal_area_mv .modal_cont figure {
    height: 25vw;
  }
  .modal_area .modal_cont figure img,
  .modal_area_mv .modal_cont figure img {
    height: 25vw;
  }
  .modal_area_mv .modal_cont {
    width: 100%;
  }
  .modal_area_mv .youtube {
    width: 100%;
  }
  .modal_area_mv .youtube iframe {
    width: 100%;
    height: 53vw;
  }
}
@media screen and (max-height: 650px) {
  main .kv_area .video_pc span {
    display: none;
  }
  main .kv_area .music_btn span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    right: 0vw;
  }
}
/*# sourceMappingURL=maps/common.css.map */
