@charset "utf-8";

/*
Theme Name: mh-tec SmartPack_type03
Text Domain: mh-tec-SmartPack_type03
Theme URI: https://mh-tec.co.jp/
Author: Mental Health Technologies Co.Ltd.
Author URI: https://mh-tec.co.jp/
Version: 2.0
*/

:root {
  --main-color: #e2548d;
  --sub-color1: #ff8e9b;
  --sub-color2: #eae4de;
}
/* ------------------------------------------------------------------------------------
html
------------------------------------------------------------------------------------ */

  html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    background-color: #fff;
  }

    /*responsive*/
        @media (max-width: 767px) { /* xs */
        }
        @media screen and (min-width:767px) and (max-width:1199px) { /* lg */
        }
        @media screen and (min-width:1200px) { /* xl */
        }

/* ------------------------------------------------------------------------------------
body
------------------------------------------------------------------------------------ */

  body {
    position: relative;
    font-family: "Zen Kaku Gothic New", "Noto Sans JP","Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;

    font-size: 14px;
    line-height: 165%;
    color: #222;
    margin: 0;
    letter-spacing: 0px;
    font-weight: 400;
  }

    /*responsive*/
        @media (max-width: 767px) { /* xs */
        }
        @media screen and (min-width:767px) and (max-width:1199px) { /* lg */
        }
        @media screen and (min-width:1200px) { /* xl */
        }

/* ------------------------------------------------------------------------------------
common
------------------------------------------------------------------------------------ */

  * {box-sizing:border-box;}
  article,aside,footer,header,nav,section {
    display: block;
  }
  figcaption,figure,main,section {
    display: block;
  }
  hr {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
  }
  a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
    color: #333;
    font-weight: 400;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    word-break: break-all;
  }
  a:active,a:hover {
    outline-width: 0;
    color: var(--main-color);
  }
  b,strong {
    font-weight: inherit;
    font-weight: 600;
  }
  small {
    font-size: 80%;
  }
  audio,video {
    display: inline-block;
  }
  img {
    border-style: none;
    max-width: 100%;
    height: auto;
  }
  button,input,optgroup,select,textarea {
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
  }
  button,input {
    overflow: visible;
  }
  button,select {
    text-transform: none;
  }
  textarea {
    overflow: auto;
  }
  .main-color {
    color: var(--main-color);
  }
  .sub-color {
    color: var(--sub-color1);
  }
  .gtm-notice {
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px;
    line-height: 1;
    background: #ffffff88;
    z-index: 9999999999999;
  }
  .container {
    max-width: 1134px;
  }

/* ------------------------------------------------------------------------------------
column
------------------------------------------------------------------------------------ */

  .row {
    display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    justify-content: center;
  }

/* ------------------------------------------------------------------------------------
header
------------------------------------------------------------------------------------ */

header {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  width: calc(100% - 20px);
  max-width: 1346px;
  margin: 0 auto;
  position: fixed;
  border-radius: 10px;
  overflow: hidden;
  z-index: 2;
}
.header-logo {
  font-size: 20px;
  line-height: 28px;
  padding: 18px 30px;
  font-weight: bold;
}
.header-logo span {
  color: var(--main-color);
}

.index_nav ul.menu {
  display: flex;
  align-items: center;
}
.index_nav ul.menu a {
  display: block;
  line-height: 1.2;
  align-items: center;
  font-size: 14px;
  line-height: 18px;
  padding: 23px 12px;
  font-weight: bold;
}
.index_nav ul.menu > li:last-child a {
  color: #fff;
  background: linear-gradient(to right, var(--sub-color1),  var(--main-color));
  padding: 23px 30px;
  margin-left: 18px;
}

/* ------------------------------------------------------------------------------------
  btn_type
------------------------------------------------------------------------------------ */

  a.btn_type01 {
    display: inline-block;
    margin: 0 auto 10px;
    padding: 10px 15px;
    background: linear-gradient(to right, var(--main-color), var(--sub-color1));
    border: 2px solid #fff;
    border-radius: 10px;
    color: #fff!important;
    text-align: center;
    min-width: 250px;
    max-width: 100%;
    font-weight: 600;
    text-decoration: none!important;
  }
  a.btn_type01::after {
      /*font-family: 'Material Icons';
      font-weight: 300;
      content: "\e5cc";
      color: #fff;
      float: right;*/
  }

  a.btn_type01:hover {
    opacity: 0.5;
    text-decoration: none!important;
  }

  a.btn_red {
    background-color: #da0439;
    background: linear-gradient(to left, #ee7e77, #da0439);
  }

  a.btn_green {
    background-color: #00997f;
    background: linear-gradient(to left, #94d0c4, #00997f);
  }

  a.btn_blue {
    background-color: #00767f;
    background: linear-gradient(to left, #3eafcd, #00767f);
  }

  a.btn_purple {
    background-color: #731485;
    background: linear-gradient(to left, #b87fb5, #731485);
  }

  a.btn_pink {
    background-color: #ed4a89;
    background: linear-gradient(to left, #f789b3, #ed4a89);
  }

  a.btn_orange {
    background-color: #d56014;
    background: linear-gradient(to left, #f29847, #d56014);
  }

    /*btn_type responsive*/
        @media (max-width: 543px) { /* xs */
        }
        @media screen and (min-width:544px) and (max-width:767px) { /* sm */
        }
        @media screen and (min-width:768px) and (max-width:991px) { /* md */
        }
        @media screen and (min-width:992px) and (max-width:1199px) { /* lg */
        }
        @media screen and (min-width:1200px) { /* xl */
        }

/* ------------------------------------------------------------------------------------
information Zone
------------------------------------------------------------------------------------ */


#information p {
  margin-bottom: 20px;
  box-sizing:border-box;
}
#information a.btn_type01 {
  float: right;
  font-size: 10px;
}
ul.info-list {margin-bottom: 20px;}
body.home ul.info-list .info_day {
  line-height: 100%;
}
ul.info-list .info_day {
  display: inline-block;
  text-align: left;
  font-size: 12px;
  font-weight: 400;
}
ul.info-list li {
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 10px;
}
#under-content ul.info-list li {
    text-shadow: none;

}

#under-content ul.info-list li a,
#under-content ul.info-list .info_day {
    color: #333!important;
}

ul.info-list li a {color: #333!important;font-weight: 500;}
ul.next_post_link {margin-bottom: 60px;padding-top: 15px;margin-top: 30px;border-top: 1px solid #999;}
ul.next_post_link li {display: inline-block;width: 49%;}
ul.next_post_link li.left {text-align: left;}
ul.next_post_link li.right {text-align: right;}
ul.next_post_link li a {color: var(--main-color);display: inline-block;width: auto;padding: 3px 10px;line-height: 100%;font-size: 13px;}
.none-info {text-align: center;width: 100%;font-size: 20px;font-weight: 500;border-bottom: 2px dashed #fff;border-top: 2px dashed #fff;display: block;width: 100%;padding: 10px;}
img.attachment-index_thumbnail {padding: 15px;margin: 0 auto;}
    /*#information responsive*/
        @media (max-width: 543px) { /* xs */
        }
        @media screen and (min-width:544px) and (max-width:767px) { /* sm */
        }
        @media screen and (min-width:768px) and (max-width:991px) { /* md */
        }
        @media screen and (min-width:992px) and (max-width:1199px) { /* lg */
        }
        @media screen and (min-width:1200px) { /* xl */
        }


/* ------------------------------------------------------------------------------------
side Zone
------------------------------------------------------------------------------------ */


.pure-drawer ul {background: #fff!important;}
.pure-drawer #global-menu {float: none;display: block;}
.pure-drawer {width: 80%!important;max-width: 300px;}
.pure-drawer a {
  font-weight: 400;
  padding: 10px 15px;
  border-bottom: 1px solid var(--main-color);
  display: block;
  color: #473832;
  text-align: left;
}
.pure-drawer a br {display: none;}
.pure-drawer h2 {
  width: 100%;
  padding: 15px;
  font-size: 30px;
  line-height: 45px;
  background-color: var(--main-color);
  color: #fff;
  text-align: left;
}
.pure-drawer li.menu-item-has-children > a:after {
    font-family: 'Material Icons';
    font-weight: 600;
    content: "\e5cf";
    margin-left: 5px;
}
.pure-drawer ul li a:hover {text-decoration: none!important;opacity:0.7}
.pure-drawer li.menu-item-has-children > a {border-bottom: none;pointer-events: none;}
.pure-drawer .sub-menu {border-bottom: 1px solid var(--main-color);}
.pure-drawer .sub-menu li {margin-left: 25px;}
.pure-drawer .sub-menu li:first-child a {padding-top: 5px;}
.pure-drawer .sub-menu li a {border-bottom: 1px dotted var(--main-color);}
.pure-drawer .sub-menu li:last-child a {border-bottom:none}

.pure-drawer ul#menu-gnav li {display: block;width: 100%;padding: 5px 15px;}
.pure-drawer ul#menu-gnav li a:after {
    content: "";
}

.pure-drawer ul#menu-gnav a {padding-right: 0;}
.pure-drawer ul#menu-gnav {margin-top: 0;margin-right: 10px;}
.pure-drawer li.gray-out > a {
  opacity: 0.6;
  pointer-events: none;
}
.pure-drawer li.update {
  position: relative;
}
.pure-drawer li.update > a:before {
  display: inline-block;
  content: "New";
  background-color: red;
  line-height: 100%;
  padding: 3px 5px;
  color: #fff!important;
  font-size: 9px;
  position: absolute;
  right: 5px;
  top: 5px;
  width: auto;
  text-align: center;
}

    /*navi responsive*/
        @media (max-width: 543px) { /* xs */
          .nav #menu {display: none;}
          .index_nav {height: auto!important;}
          .pure-drawer ul#menu-gnav {margin-right: 5px;margin-left: 30px;}
          .pure-drawer ul#menu-gnav li.top_sp a {margin-top: 1em!important;}
          .pure-drawer ul#menu-gnav li.top_sp a:before {content: "\f061"!important;font-size: 12px!important;}
        }
        @media screen and (min-width:544px) and (max-width:767px) { /* sm */
          .nav #menu {display: none;}
          .pure-drawer ul#menu-gnav li.top_sp a {margin-top: 1em!important;}
          .pure-drawer ul#menu-gnav li.top_sp a:before {content: "\f061"!important;font-size: 12px!important;}
        }
        @media screen and (min-width:768px) and (max-width:991px) { /* md */
          .nav #menu {display: none;}
          .pure-drawer ul#menu-gnav li.top_sp a {margin-top: 1em!important;}
          .pure-drawer ul#menu-gnav li.top_sp a:before {content: "\f061"!important;font-size: 12px!important;}
        }
        @media screen and (min-width:991px) and (max-width:1199px) { /* lg */
          li.top_sp {display: none!important;}
        }
        @media screen and (min-width:1200px) { /* xl */
          li.top_sp {display: none!important;}
        }


/* ------------------------------------------------------------------------------------
  .pure-toggle-label
------------------------------------------------------------------------------------ */

  .pure-toggle-label {
    border-color: var(--main-color)!important;
  }

  .pure-toggle-label .pure-toggle-icon,
  .pure-toggle-label .pure-toggle-icon::before,
  .pure-toggle-label .pure-toggle-icon::after {
    border-radius: 0px!important;
    background: var(--main-color)!important;
  }
  .pure-toggle[data-toggle="left"]:checked ~ .pure-toggle-label[data-toggle-label="left"] .pure-toggle-icon,
  .pure-toggle[data-toggle="right"]:checked ~ .pure-toggle-label[data-toggle-label="right"] .pure-toggle-icon,
  .pure-toggle[data-toggle="top"]:checked ~ .pure-toggle-label[data-toggle-label="top"] .pure-toggle-icon {
    background: transparent!important;
  }

    /*responsive*/
        @media (max-width: 767px) { /* xs */
          .pure-toggle-label {
            top: 20px!important;
            right: 20px!important;
          }
        }
        @media screen and (min-width:767px) and (max-width:1199px) { /* lg */
          .pure-toggle-label {
            top: 20px!important;
            right: 20px!important;
          }
        }
        @media screen and (min-width:1200px) { /* xl */
          .pure-toggle-label {
            top: 20px!important;
            right: 20px !important;
          }
        }



/* ------------------------------------------------------------------------------------
Page-top Zone
------------------------------------------------------------------------------------ */
#page-top {
    position: fixed;
    bottom: 0px;
    right: 0px;
    font-size: 77%;
    margin-bottom: 0!important
}
#page-top a {
    text-decoration: none!important;
    color: #fff!important;
    padding: 6px 6px;
    text-align: center;
    display: block;
    font-weight: 400;
    background: var(--sub-color1);
    text-shadow: none!important;
    

}
#page-top a i {display: block;font-size: 15px;}
#page-top a:hover {
    opacity: 0.6;
}
/* ------------------------------------------------------------------------------------
Responsive Free Zone
------------------------------------------------------------------------------------ */
.content-area {
    padding: 10px;
}
.top-3pr {
  max-width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 481px) {
  .content-area {
    padding: 10px;
}
.top-3pr {
  max-width: 100%;
  margin-bottom: 20px;
  margin: 0px 5px;
}
}
@media (min-width: 992px) {
  .content-area {
    padding: 10px;
}
.top-3pr {
  max-width: 100%;
  margin-bottom: 20px;
  margin: 0px 5px;
}
}
@media (min-width: 1200px) {
  .content-area {
    padding: 10px;
}
}


/* ------------------------------------------------------------------------------------
#under-content
------------------------------------------------------------------------------------ */

  #under-content {
    position: relative;
    padding: 84px 15px 5vh;
    margin-bottom: 0px;
    box-sizing: border-box;

    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top;
    z-index: 1;
  }

  #under-content:after {
    content: "";
    background: repeating-linear-gradient(-30deg, #f1f1f1, #f1f1f1 3px, #fff 0, #fff 7px);
    opacity: 0.5;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
  }

    /*responsive*/
        @media (max-width: 767px) { /* xs */
        }
        @media screen and (min-width:767px) and (max-width:1199px) { /* lg */
        }
        @media screen and (min-width:1200px) { /* xl */
        }


/* ------------------------------------------------------------------------------------
#under-content .container
------------------------------------------------------------------------------------ */

  #under-content .container {
    max-width: 950px;
    background-color: #fff;
    padding: 30px;

    position: relative;
    z-index: 3;
  }

  #under-content .container:before {
    content: "";
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to right, var(--main-color), var(--sub-color1));
  }


    /*responsive*/
        @media (max-width: 767px) { /* xs */
          #under-content .container {
            max-width: 90%;
            padding: 20px;
          }
        }
        @media screen and (min-width:767px) and (max-width:1199px) { /* lg */
          #under-content .container {
            max-width: 85%;
          }
        }
        @media screen and (min-width:1200px) { /* xl */
          #under-content .container {
            min-height: 300px;
          }
        }

/* ------------------------------------------------------------------------------------
#under-content .so-panel
------------------------------------------------------------------------------------ */

  #under-content .so-panel .textwidget > *:last-child {
    margin-bottom: 0;
  }


/* ------------------------------------------------------------------------------------
#under-content .so-panel section
------------------------------------------------------------------------------------ */

  #under-content .so-panel section {
    margin-bottom: 45px;
  }
  #under-content .so-panel > div > *:last-child {
    margin-bottom: 0;
  }
  #under-content .so-panel article {
    margin-bottom: 30px;
  }
  #under-content .so-panel section > *:last-child,
  #under-content .so-panel article > *:last-child {
    margin-bottom: 0;
  }

/* ------------------------------------------------------------------------------------
#under-content paragraph
------------------------------------------------------------------------------------ */

  #under-content .so-panel p {
    margin-bottom: 15px;
  }
  #under-content .so-panel p:empty {
    display: none;
  }
  #under-content .so-panel p a {
    text-decoration: underline;
    color: var(--main-color);
  }
  #under-content .so-panel p.text-center {
    text-align: center;
  }
  #under-content .so-panel p.text-right {
    text-align: right;
  }
  
/* ------------------------------------------------------------------------------------
#under-content h
------------------------------------------------------------------------------------ */

#under-content h1 {
  position: relative;
  display: block;
  box-sizing: border-box;
  font-weight: 600;
  font-size: 28px;
  line-height: 135%;
  letter-spacing: 1px;
  text-align: center;
  color: var(--main-color);
  margin-bottom: 45px;
  padding: 0px 30px 10px;
}
#under-content h1:after {
  content: "";
  background: #666;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -15px;
  border-radius: 3px;
}
#under-content h1 span.day {
  display: block;
  font-size: 15px;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0;
}

#under-content h2 {
  font-size: 20px;
  position: relative;
  padding: 10px 15px;
  background: linear-gradient(to right, var(--main-color), var(--sub-color1));
  margin-bottom: 20px;
  font-weight: 600;
  color: #fff;
}
#under-content h2::before {
    content: "";
    top: 2px;
    left: 2px;
    border-bottom: 7px solid transparent;
    border-left: 7px solid #fff;
    position: absolute;
    z-index: 100;
}

#under-content h3 {
    position: relative;
    font-size: 17px;
    border-bottom: 1px solid #ddd;
    padding: 4px 15px 8px 16px;
    margin-bottom: 15px;
    line-height: 100%;
    letter-spacing: 1px;
    display: block;
    text-align: left;
    box-sizing: border-box;
    font-weight: 600;
}
#under-content h3:before {
  content: "";
  width: 4px;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 3px;
  background: linear-gradient(to bottom, var(--main-color), var(--sub-color1));

}
#under-content h4 {
  font-weight: 600;
  font-size: 17px;
  background-color: #f7f7f7;
  padding: 5px 15px;
  margin-bottom: 15px;
  line-height: 130%;
  position: relative;
  border-radius: 3px;
}

#under-content h4 i {
  color: var(--main-color);
}

#under-content h5 {
  font-weight: 600;
  font-size: 17px;
  margin-left: 0;
  padding: 0;
  margin-bottom: 15px;
  text-indent: -1em;
  padding-left: .5em;
}
#under-content h5:before {content: "【";margin-right: 0.5em;}
#under-content h5:after {content: "】";margin-left: 0.5em;}
#under-content h5:before,#under-content h5:after {
  color: var(--main-color);
}

#under-content h6 {
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 10px;
  padding: 5px;
  border-bottom: 1px solid #ddd;
}
#under-content h6:before {content: "●";font-size: 10pt;margin-right: 0.5em;color: var(--main-color);}

    /*responsive*/
        @media (max-width: 767px) { /* xs */
          #under-content h1 {
            font-size: 21px;
            padding-bottom: 5px;
            margin-bottom: 30px;
          }
          #under-content h1:after {
            padding-bottom: -15px;
          }
          #under-content h2 {font-size: 18px;}
        }
        @media screen and (min-width:767px) and (max-width:1199px) { /* lg */
        }
        @media screen and (min-width:1200px) { /* xl */
        }

/* ------------------------------------------------------------------------------------
#under-content list
------------------------------------------------------------------------------------ */

  #under-content .content-box ul {
    padding:0;
    margin:0 0 15px;
    list-style: none;
  }

  /*ul normal*/
  #under-content .content-box ul:not([class]) {
    padding:0 0 0 0em;
    margin:0 0 15px;
    list-style: none;
  }
  #under-content .content-box ul:not([class]) > li {
    padding-left: 1.5em;
    position: relative;
  } 
  #under-content .content-box ul:not([class]) > li:before { 
    content: "●";
    color: var(--main-color);
    font-weight: bold;
    font-size: 7px;
    position: absolute;
    top: 0px;
    left: 4px;
  }
  #under-content .content-box ul:not([class]) > li a {
    text-decoration: underline;
    color: var(--main-color);
  }

  /*ul asterisk*/
  #under-content .content-box ul.asterisk_list > li:before { 
    content: "※";
    font-size: 15px;
    color: #333;
    left: 0;
  }

  /*ol normal*/
  #under-content .content-box ol {
    list-style: decimal;
    padding: 0 0 0 25px;
    margin:0 0 15px;
    list-style-position:outside;
  }
  #under-content .content-box ol > li a {
    text-decoration: underline;
    color: var(--main-color);
  }

  /*ol brackets*/
  #under-content .content-box ol.brackets > li {
    list-style-type:none;
    counter-increment: cnt1;
    text-indent: -1.8em;
  }
  #under-content .content-box ol.brackets > li:before{
    display: marker;
    content: "(" counter(cnt1) ")";
    margin-right: 0.5em;
  }

  /*dl*/

  #under-content .content-box dl {
    padding: 0;
    margin:0 0 15px;
  }
   
  #under-content .content-box dl > dt {
    font-weight: 600;
    padding-left: 1.3em;
    margin-bottom: 10px;
    position: relative;
    line-height: 135%;
    margin-top: 25px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 7px;
  }

  #under-content .content-box dl > dt:first-child {
    margin-top: 0;
  }

  #under-content .content-box dl > dt:before {
    position: absolute;
    left: 0px;
    top: 0px;
    content: "●";
    color: var(--main-color);
    font-size: 80%;
  }

  #under-content .content-box dl > dd {
    margin-left: 1.5em;
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 145%;
  }

  #under-content .content-box dl > dd a {
    text-decoration: underline;
    color: var(--main-color);
  }


/* ------------------------------------------------------------------------------------
#under-content other
------------------------------------------------------------------------------------ */

  #under-content .so-panel .text-left {
    text-align: left!important;
  }
  #under-content .so-panel .text-right {
    text-align: right!important;
  }
  #under-content .so-panel .text-center {
    text-align: center!important;
  }
  #under-content .so-panel .text-justify {
    text-align: left;
    text-align: justify!important;
    text-justify: 
    inter-ideograph;/*ジャスティファイ*/
  }
  #under-content .so-panel .asterisk { 
    padding-left: 1.5em;
    position: relative;
  }
  #under-content .so-panel .asterisk:before { 
    content: "※"; 
    position: absolute;
    left: 0;
    top: 0;
  }
  #under-content .so-panel .btn_none {
    pointer-events: none;
  }
  #under-content .so-panel .nowrap {
    white-space: nowrap;
  }
  @import url(https://fonts.googleapis.com/icon?family=Material+Icons);
   
  #under-content .so-panel p a:not([class])[target=_blank]::after{
     font-family: 'Material Icons';
     content: '\e89e';
  }
  #under-content .so-panel .red {
    color: red;
  }
  #under-content .so-panel del {
    background-image: linear-gradient(#fe3464, #fe3464);
    background-position: 0 50%;
    background-size: 100% 1px;
    background-repeat: repeat-x;
    text-decoration: none;
  }
  #under-content .so-panel aside {
    border: 1px solid red;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 15px;
  }
  #under-content .so-panel aside > *:last-child {
    margin-bottom: 0;
  }
  #under-content sup,
  #under-content sub {
    font-size: 60%;
  }
  #under-content sub {
    top: 0.6em;
  }
  #under-content sup {
    bottom: 0.6em;
  }
  

/* ------------------------------------------------------------------------------------
 mailform
------------------------------------------------------------------------------------ */

/*#section#mailform*/
  section#mailform {max-width: 980px;margin: 0 15px;}
  section#mailform dl {}
  section#mailform dt label {padding: 2px 10px;width: 100%;display: inline-block;border-left: 4px solid var(--main-color);font-weight: normal;border-bottom: 1px solid #ddd;margin-bottom: 15px;font-weight: 600;font-size: 16px;}
  section#mailform dt {padding: 5px 10px ;vertical-align: top;}
  section#mailform dd {padding: 0px 10px 20px;vertical-align: top;}
  section#mailform dd.privacy_policy {padding: 10px;}
  section#mailform dd.privacy_policy p {
    padding: 15px;
    border: 1px solid rgb(171, 171, 171);
    box-sizing:border-box;
    height: 100px;
    overflow-y: scroll;
    overflow-x: none;
    background-color: #fff;
  }

  span.xs {color: #ff0000;font-size: 12px;display: inline-block;margin-left: 10px;}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: 1px solid rgb(171, 171, 171);
  border-radius: 0px;
  padding: 7px 10px;
  width: 100%;
  background-color: #fff;
}

input[type="submit"], button.btn-check, button.btn-send, button.btn-back {
  color: #ffffff;
  /* text-shadow: 0px 0px 4px #fff; */
  font-weight: 600;
  letter-spacing: 0.2em;
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: none!important;
  cursor: pointer;
  margin-bottom: 15px;
}

input[type="submit"]:hover {
  color: var(--main-color); 
  background-color: #fff;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

input.wpcf7-form-control.wpcf7-submit {
  background-color: #222;
  color: #fff;
  font-weight: 600;
  font-size: 1.3em;
  letter-spacing: .2em;
  border: 2px solid #222;
}

input::-webkit-input-placeholder {
  color: #c3c3c3;
  font-weight: normal;
}

input:-ms-input-placeholder {
  color: #c3c3c3;
  font-weight: normal;
}

input::-moz-placeholder {
  color: #c3c3c3;
  font-weight: normal;
}

input[type="checkbox"] {
  float: left;
  display: inline-block;
  width: 25px;
}

input[type="radio"] {
  width: 20px;
}

ul#menu-gnav p {
    font-weight: 500;
    display: block;
    color: #666;
    font-size: 18px;
    line-height: 120%;
    position: relative;
    vertical-align: middle;
}

.events_none { pointer-events: none; } /* aタグ無効 */


/* ------------------------------------------------------------------------------------
#under-content table
------------------------------------------------------------------------------------ */

  #under-content .su-table {
    display: table;
    width: 100%;
  }
  
  #under-content .so-panel .su-table table {
    margin-bottom: 15px;
    width: 100%;
  }
  #under-content .su-table {
    background: linear-gradient(to right, var(--main-color), var(--sub-color1));
    margin-bottom: 15px!important;
  }
  #under-content .su-table table {
    margin-bottom: 0px!important;
    letter-spacing: 0;
  }
  #under-content .su-table table th,
  #under-content .su-table table td {
    padding: 1em!important;
    font-size: 14px!important;
    vertical-align: middle!important;
    line-height: 145%;
  }
  #under-content .su-table table td p {
    font-size: 14px;
    line-height: 145%;
  }
  #under-content .su-table table th > *:last-child,
  #under-content .su-table table td > *:last-child {
    margin-bottom: 0!important;
  }
  #under-content .su-table table thead th {
    background: transparent!important;
    color: #fff!important;
  }
  #under-content .su-table table tbody th {
    background: var(--sub-color1)!important;
    color: #fff!important;
    border-bottom-color: #fff!important;
    border-right: none!important;
  }
  #under-content .su-table table tbody th + td {
    border-left: none!important;
  }
  #under-content .su-table table tbody tr:first-child th:first-child {
    border-top: 1px solid var(--sub-color1)!important;
  }
  #under-content .su-table table tbody tr:last-child th:first-child {
    border-bottom: 1px solid var(--sub-color1)!important;
  }
  #under-content .su-table table thead + tbody th {
    background: #eee!important;
    color: #333!important;
    border-bottom-color: #b4b4b4!important;
  }
  #under-content .su-table table thead + tbody tr:last-child th:first-child {
    border-bottom-color: #b4b4b4!important;
  }
  #under-content .su-table table tfoot td {
    padding-left: 0!important;
    padding-right: 0!important;
    border: none!important;
  }
  #under-content .su-table table.tbody-th-center tbody th,
  #under-content .su-table table.tbody-td-center tbody td {
    text-align: center;
  }
  #under-content .su-table table.tbody-th-left tbody th,
  #under-content .su-table table.tbody-td-left tbody td {
    text-align: left!important;
  }
  #under-content .su-table table.tbody-th-right tbody th,
  #under-content .su-table table.tbody-td-right tbody td {
    text-align: right;
  }
  #under-content .su-table table tbody th.center,
  #under-content .su-table table tbody td.center {
    text-align: center!important;
  }
  #under-content .su-table table tbody th.vertical-top,
  #under-content .su-table table tbody td.vertical-top {
    vertical-align: top!important;
  }
  #under-content .su-table table tbody td a,
  #under-content .su-table table tfoot td a {
    text-decoration: underline;
    color: var(--main-color);
  }



/* ------------------------------------------------------------------------------------
page link
------------------------------------------------------------------------------------ */

#under-content ul.page_link {
  width: 100%;
  margin: 0 auto 0px;
  padding: 0;
  list-style: none;
  padding: 20px;
  box-sizing: border-box;
  border-top: 3px solid #e9fbff;
  border-bottom: 3px solid #e9fbff;
}
#under-content ul.page_link > li {
  display: inline-block;
  width: auto;
  text-align: left;
  padding: 7px 15px 7px 7px;
  border-right: 1px dotted;
  line-height: 130%;
  font-size: 14.5px;
  vertical-align: middle;
  margin-bottom: 10px;
  min-height: 41px;
  text-indent: 0;
  position: relative;
  letter-spacing: 0;

}
#under-content ul.page_link > li a {
    text-decoration: none;
}
#under-content ul.page_link > li::before {
    display: none;
}
#under-content ul.page_link > li::after {
    font-family: 'Material Icons';
    font-weight: 300;
    content: "\e5cf";
    
    position: absolute;
    right: 8px;
    /*top: 0;*/
    top: 50%; /* ADD */
    /*bottom: 0;*/
    margin: auto;
    transform: translateY(-50%); /* ADD */

}

    /*page_link responsive*/
        @media (max-width: 543px) { /* xs */
            #under-content ul.page_link > li {
                width: 49%;
            }          
            #under-content ul.page_link > li:nth-child(2n) {
                border-right: none;
            }
        }
        @media screen and (min-width:544px) and (max-width:767px) { /* sm */
            #under-content ul.page_link > li {
                width: 49%;
            }
            #under-content ul.page_link > li:nth-child(2n) {
                border-right: none;
            }
        }
        @media screen and (min-width:768px) and (max-width:991px) { /* md */
            #under-content ul.page_link > li {
                width: 32%;
            }
            #under-content ul.page_link > li:nth-child(3n) {
                border-right: none;
            }
        }
        @media screen and (min-width:992px) and (max-width:1199px) { /* lg */
            #under-content ul.page_link > li {
                width: 32%;
                min-height: 35px;
            }
            #under-content ul.page_link > li:nth-child(3n) {
                border-right: none;
            }
        }
        @media screen and (min-width:1200px) { /* xl */
            #under-content ul.page_link > li {
                width: 32%;
            }
            #under-content ul.page_link > li:nth-child(3n) {
                border-right: none;
            }
        }


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

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

/* kv */
.kv {
  height: 600px;
  background-image: url(./img/kv-bg.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.kv-img {
  display: block;
  position: absolute;
  left: 50%;
  top: 100px;
  height: 93%;
  width: auto;
}

.kv-text {
  background-color: #fff;
  border-radius: 25px;
  position: absolute;
  bottom: 10%;
  right: 50%;
  width: 455px;
  padding: 45px;
  margin-right: 113px;
}
@media screen and (max-width: 1199px){
  .kv-text {
    left: 1%;
    right: auto;
  }
}
.kv-text-top {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 15px;
}
.kv-text-top span {
  color: var(--main-color);
}
.kv-text-main {
  font-size: 45px;
  font-weight: 800;
  line-height: 66px;
  margin-bottom: 15px;
  text-align-last: justify;
}
.kv-text-main span {
  background: linear-gradient(90deg, var(--sub-color1), var(--main-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.kv-text p {
  font-size: 13px;
  font-weight: bold;
}
/* about */
.about {
  padding: 50px 0; 
}
.about-btn {
  display: block;
  width: 540px;
  max-width: 100%;
  border: 2px solid var(--main-color);
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  padding: 30px 100px;
  border-radius: 47px;
  margin: 0 auto 50px;
  background-image: url(./img/icon-arrow-right-pink.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: auto 36px;
  position: relative;
}
.about-btn:before {
  display: block;
  width: 80px;
  height: 80px;
  background: linear-gradient(to right, var(--sub-color1),  var(--main-color));
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  border-radius: 40px;
}
.about-btn:after {
  display: block;
  width: 77px;
  height: 80px;
  background-image: url(./img/icon-welfare.svg);
  background-size: 60px auto;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
}
.about-btn:hover {
  text-decoration: none;
  opacity: 0.5;
  color: inherit;
}
.about-row {
  display: flex;
  justify-content: space-between;
}
.about-row > a {
  display: block;
  width: 29%;
  text-align: center;
  color: #222;
  font-size: 16px;
}
.about-row > a:hover {
  text-decoration: none;
  opacity: 0.5;
}
.about-row > a img {
  border-radius: 20px;
  margin-bottom: 10px;
}
.about-row > a h3 {
  font-size: 22px;
  font-weight: bold;
  color: var(--main-color);
  line-height: 37px;
  margin-bottom: 10px;
}

/* footer */
footer {
  background-color: #E9E4DD;
  padding-top: 50px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px 3.5%;
}
.footer-box {
  width: 30%;
}
.footer-box h3 {
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}
.footer-box h3:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  background: linear-gradient(to right, var(--main-color) 0%, var(--main-color) 32%, #fff 32%, #fff 100%);
}
.footer-box p {
  font-size: 13px;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}
.footer-btn {
  color: #fff;
  background: url(./img/icon-mail.svg),linear-gradient(to right, var(--sub-color1),  var(--main-color));
  background-repeat: no-repeat;
  display: block;
  max-width: 180px;
  padding: 16px 30px 16px 60px;
  line-height: 28px;
  border-radius: 30px;
  font-weight: bold;
  background-size: 30px auto, auto;
  background-position: left 26px center, center;
  margin-bottom: 8px;
}
.footer-btn:hover {
  text-decoration: none;
  opacity: 0.5;
  color: #fff;
}
.footer-link a {
  display: block;
  line-height: 2;
}
.copy {
  text-align: center;
  font-size: 11px;
  line-height: 30px;
  margin-top: 10px;
}

@media screen and (max-width: 1079px){
  .index_nav ul.menu a {
    padding: 23px 6px;
    letter-spacing: -0.5px;
  }
}

@media screen and (max-width: 991px){
  .kv {
    height: 400px;
  }
  .kv-img {
    right: 1%;
    left: auto;
  }
  .kv-text {
    border-radius: 25px;
    width: 330px;
    padding: 25px;
    margin-right: 0;
  }
  .kv-text-top {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .kv-text-main {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 10px;
  }
  .kv-text p {
    font-size: 12px;
  }
  .about-row {
    width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .about-row > a {
    width: 280px;
    margin-bottom: 35px;
  }
  .footer-row {
    flex-wrap: wrap;
    width: 600px;
    margin: 0 auto;
  }
  .footer-box {
    width: 280px;
  }
}
@media screen and (max-width: 719px){
  .kv {
    height: 600px;
  }
  .kv-img {
    width: 250px;
    height: auto;
    top: auto;
    bottom: -20px;
  }
  .kv-text {
    bottom: auto;
    top: 80px;
    width: 280px;
  }
  .about-btn {
    width: 280px;
    max-width: 100%;
    font-size: 18px;
    line-height: 28px;
    padding: 20px 40px 20px 80px;
    border-radius: 40px;
    margin: 0 auto 30px;
    background-position: right 20px center;
    background-size: auto 20px;
  }
  .about-btn:before {
    width: 60px;
    height: 60px;
    left: 5px;
    top: 5px;
    border-radius: 30px;
  }
  .about-btn:after {
    width: 57px;
    height: 60px;
    background-size: 45px auto;
    left: 5px;
    top: 5px;
  }
}
@media screen and (max-width: 639px){
  .about-row,
  .footer-row {
    width: 100%;
    max-width: 400px;
    flex-wrap: wrap;
    gap: 0;
  }
  .about-row > a,
  .footer-box {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 399px){
  .header-logo {
    font-size: 15px;
    letter-spacing: -1px;
    padding: 18px 18px;
  }
}

a {
  pointer-events: none !important;
}