@charset "UTF-8";

/* ===================================================================
CSS information

 File Name  : common.css
 Style Info : 見出し、ボタン、表など繰り返し使うパーツのスタイルを定義
=================================================================== */

html {
  overflow-y: scroll;
  line-height: 1;
  font-size: 62.5%;
}
body {
  background: #fff;
  color: #000;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  letter-spacing: 0.05em;
  font-weight: 400;
  /*font-feature-settings: "palt";*/
}
  @media screen and (max-width: 899px) {
    body {
      font-size: 3.73vw;
    }
  }

/*----------------------------------------------------
  link要素
--------------------------------------------------- */
a {
  transition: all 0.2s ease-in-out 0s;
}
a:link {
  color: #369ED1;
}
a:visited {
  color: #369ED1;
}
a:hover {
  text-decoration: none;
  color: #369ED1;
}
a:active {
  color: #369ED1;
}
:focus-ring {
  outline: dotted 1px #F6AB00;
}
:-moz-focusring {
  outline: dotted 1px #F6AB00;
}

/*----------------------------------------------------
  img要素
--------------------------------------------------- */
img {
  line-height: 1;
  /*font-size: 0;*/
  vertical-align: top;
  height: auto;
  max-width: 100%;
  transition: all 0.2s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*----------------------------------------------------
  見出し要素
--------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  line-height: 1.5;
}

/*----------------------------------------------------
 フォントファミリー
--------------------------------------------------- */
.ff01 {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*----------------------------------------------------
  スクロールバー
--------------------------------------------------- */

/*スクロールバー全体*/
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.5);
  border-radius: 10px;
  box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
  @media screen and (max-width: 899px) {
    ::-webkit-scrollbar {
        width: 5px;
    }
    ::-webkit-scrollbar-track {
      border-radius: 10px;
      box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
    }
    ::-webkit-scrollbar-thumb {
      background-color: rgba(0,0,0,0.5);
      border-radius: 10px;
      box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
    }
  }

/*----------------------------------------------------
 共通カラム
--------------------------------------------------- */
#page {
  overflow: hidden;
  padding-top: 120px;
}
#contents {
  line-height: 2;
  padding-bottom: 100px;
}
#contents a:hover img{
  opacity: 0.70;
}

.wrapper {
  position: relative;
  z-index: 5;
  max-width: 1260px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
}
.inner {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
}
  @media screen and (max-width: 899px) {
    html, body, #page {
      min-width:100%!important;
      max-width:100%!important;
      width:100%!important;
    }
    #page {
      padding-top: 16vw;
    }
    #contents {
      line-height: 1.8;
      padding-bottom: 10.66vw;
    }
    .wrapper, .inner {
      width: 100%;
      max-width: 100%;
      padding-left: 5vw;
      padding-right: 5vw;
    }
  }

/*----------------------------------------------------
	ヘッダー
----------------------------------------------------*/
#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 120px;
  z-index: 100;
  background: rgba(255,255,255,0.95);
}
#header .logo {
  display: inline-block;
  position: relative;
  left: 30px;
  top: calc(50% - 16px);
}
.hd_inner {
  position: relative;
  height: 70px;
}
.hd_navi {
  position: absolute;
  right: 30px;
  top: calc(50% - 9px);
}
.hd_navi li {
  margin-left: 30px;
}
.hd_navi li a {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 18px;
  padding-left: 20px;
  color: #000;
  text-decoration: none;
}
.hd_navi li a:hover {
  color: #369ED1;
}
.hd_navi01 a {
  background: url("../img/common/ico/ico_home01blu.svg") 0 center no-repeat;
  background-size: 16px auto;
}
.hd_navi02 a {
  background: url("../img/common/ico/ico_pad01blu.svg") 0 center no-repeat;
  background-size: 14px auto;
}
.hd_navi03 a {
  background: url("../img/common/ico/ico_lock01blu.svg") 0 center no-repeat;
  background-size: 14px auto;
}
  @media screen and (max-width: 899px) {
    #header {
      height: 16vw;
    }
    #header .logo {
      left: 4vw;
      top: calc(50% - 3vw);
    }
    #header .logo img {
      width: auto;
      height: 6vw;
    }
    .hd_inner {
      position: relative;
      height: 16vw;
    }
  }

/*----------------------------------------------------
	グローバルナビ
----------------------------------------------------*/
#gNavi {
  width: 100%;
  height: 50px;
  background: #369ED1;
  padding: 10px 0;
}
#gNavi > ul > li {
  position: relative;
  z-index: 5;
  margin: 0 14px;
}
#gNavi li a {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding-left: 12px;
  background: url("../img/common/ico/ico_arrow01wh.svg") 0 center no-repeat;
  background-size: 6px auto;
}
#gNavi li span {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding-left: 18px;
  background: url("../img/common/ico/ico_arrow04wh.svg") 0 center no-repeat;
  background-size: 10px auto;
  transition: all 0.2s ease-in-out 0s;
  z-index: 10;
}
#gNavi li span:hover {
  cursor: default;
}
  @media screen and (max-width: 1029px) {
    #gNavi > ul > li {
      font-size: 1.5rem;
      margin: 0 10px;
      letter-spacing: 0;
    }
  }
  @media screen and (max-width: 899px) {
  }

#gNavi > ul > li > a::after {
  position: absolute;
  left: 0;
  bottom: -5px;
  z-index: 5;
  content: "";
  width: 0;
  height: 1px;
  background: #fff;
  transition: all 0.3s ease-in-out 0s;
}
#gNavi > ul > li > a:hover::after {
  width: 100%;
}
.hd_menu_parent {
  position: relative;
  z-index: 3!important;
}
.hd_menu_child {
  opacity: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -5;
}
.hd_menu_parent {
  z-index: 10!important;
}
.hd_menu_parent:hover {
  z-index: 5!important;
}
.hd_menu_parent:hover .hd_menu_child  {
  opacity: 1;
  height: auto;
  z-index: 5;
  padding-top: 33px;
}
.hd_menu_child_inner {
  opacity: 0;
  background: rgba(255,255,255,0.95);
  padding: 25px 25px 2px 25px;
  transition: all 0.4s ease-in-out 0s;
}
.hd_menu_parent:hover .hd_menu_child_inner {
  opacity: 1;
}
.hd_menu_child ul {
  padding-bottom: 12px;
  flex-wrap: wrap;
}
.hd_menu_child li {
  margin-bottom: 20px;
}
.hd_menu_child li a {
  font-size: 1.5rem;
  color: #000!important;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  background: url("../img/common/ico/ico_arrow01blu.svg") 0 center no-repeat!important;
  background-size: 6px auto!important;
}
.hd_menu_child li a:hover {
  color: #0099CC!important;
}
  @media screen and (max-width: 1029px) {
    .hd_menu_child li a {
      font-size: 1.4rem;
    }
  }

/*----------------------------------------------------
	パンくずリスト
----------------------------------------------------*/
#crumbs {
  padding: 25px 0 60px;
}
.aioseo-breadcrumbs > span {
  display: inline-block;
  font-size: 1.4rem;
  margin: 0 10px 0 0;
  padding: 0;
}
.aioseo-breadcrumbs > span a {
  display: inline-block;
  text-decoration: none;
  color: #000;
}
.aioseo-breadcrumbs > span a:hover {
  color: #369ED1
}
.aioseo-breadcrumb:first-child a {
  padding-left: 20px;
  background: url("../img/common/ico/ico_home01blu.svg") 0 center no-repeat;
  background-size: 14px auto;
}
  @media screen and (max-width: 899px) {
    #crumbs {
      padding: 3vw 0 8vw;
    }
    .aioseo-breadcrumbs > span {
      font-size: 3vw;
      margin: 0 1.33vw 0 0;
    }
    .aioseo-breadcrumb:first-child a {
      padding-left: 4.6vw;
      background-size: 3.33vw auto;
    }
  }

/*----------------------------------------------------
	フッター
----------------------------------------------------*/
.ft_contact {
  background: #F2F9FC;
  padding: 60px 0;
}
.ft_contact_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.ft_contact_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  border: solid 1px #369ED1;
  color: #369ED1;
  text-decoration: none;
  font-weight: 600;
  min-height: 90px;
  padding: 10px;
  line-height: 1.3;
}
a.ft_contact_box:hover {
  background: #ECF7FC;
}
.ft_contact_box dd span {
  display: inline-block;
}
  @media screen and (max-width: 999px) {
    .ft_contact_list {
      gap: 20px;
    }
  }
  @media screen and (max-width: 899px) {
    .ft_contact {
      padding: 10.66vw 0;
    }
    .ft_contact_list {
      display: block;
    }
    .ft_contact_box {
      border-radius: 1.33vw;
      min-height: 22vw;
      padding: 2.66vw;
      margin-bottom: 2.66vw;
    }
    .ft_contact_box:last-child {
      margin-bottom: 0;
    }
    a.ft_contact_box:hover {
      background: #fff;
    }
    .ft_contact_box dt {
      font-size: 4vw;
      margin-bottom: 1.33vw;
    }
  }

.ft_contact01 span {
  font-size: min(2.7vw,2.8rem);
  padding-left: 25px;
  background: url("../img/common/ico/ico_mobile01blu.svg") 0 center no-repeat;
  background-size: 18px auto;
}
.ft_contact02 span {
  font-size: min(2.7vw,2.8rem);
  padding-left: 32px;
  background: url("../img/common/ico/ico_fax01blu.svg") 0 center no-repeat;
  background-size: 26px auto;
}
.ft_contact03 span {
  font-size: min(2.1vw,2.2rem);
  padding-left: 32px;
  background: url("../img/common/ico/ico_mail01blu.svg") 0 center no-repeat;
  background-size: 26px auto;
}
  @media screen and (max-width: 899px) {
    .ft_contact01 span {
      font-size: 6vw;
      padding-left: 5.8vw;
      background-size: 3.8vw auto;
    }
    .ft_contact02 span {
      font-size: 6vw;
      padding-left: 7vw;
      background-size: 5vw auto;
    }
    .ft_contact03 span {
      font-size: 4.8vw;
      padding-left: 7vw;
      background-size: 5vw auto;
    }
  }

.ft_info {
  padding: 60px 0;
}
.ft_logo {
  margin-bottom: 30px;
}
.ft_info_list {
  max-width: 650px;
  width: 60%;
}
.ft_info_box {
  letter-spacing: 0;
  line-height: 1.6;
  padding-right: 20px;
}
.ft_info_box dl {
  white-space: nowrap;
  margin-bottom: 25px;
}
.ft_info_box dl:last-child {
  margin-bottom: 0;
}
.ft_info_box dt {
  font-weight: 500;
}
.ft_info_box dd {
  font-size: 1.4rem;;
}
.ft_info_menu {
  position: relative;
  right: -30px;
}
.ft_info_menu > ul {
  width: 200px;
  margin: 0 20px;
}
  @media screen and (max-width: 949px) {
    .ft_logo {
      text-align: center;
    }
    .ft_info_wrap  {
      display: block;
    }
    .ft_info_list {
      max-width: 100%;
      width: 100%;
      justify-content: center;
      margin-bottom: 30px;
    }
    .ft_info_box {
      padding: 0 15px;
    }
    .ft_info_menu {
      right: auto;
      border-top: solid 1px #369ED1;
      padding-top: 30px;
    }
    .ft_info_menu > ul {
      width: auto;
      margin: 0 15px;
    }
  }
  @media screen and (max-width: 899px) {
    .ft_info {
      padding: 10.66vw 0;
    }
    .ft_logo {
      text-align: left;
      margin-bottom: 6.66vw;
    }
    .ft_logo img {
      width: auto;
      height: 6vw;
    }
    .ft_info_list {
      max-width: 100%;
      width: 100%;
      margin-bottom: 0;
    }
    .ft_info_box {
      letter-spacing: 0.05em;
      padding: 0;
      margin: 0 0 5.33vw 0;
    }
    .ft_info_box:last-child {
      margin-bottom: 0;
    }
    .ft_info_box dl {
      margin-bottom: 5.33vw;
    }
    .ft_info_box dt {
      font-size: 4vw;
      font-weight: 500;
    }
    .ft_info_box dd {
      font-size: 3.46vw;
    }
    .ft_info_menu {
      right: 0;
    }
    .ft_info_menu > ul {
      margin: 0;
    }
  }

.ft_info_menu li {
  margin-bottom: 8px;
  line-height: 1.4;
}
.ft_info_menu li:last-child {
  margin-bottom: 0;
}
.ft_info_menu > ul > li > a {
  position: relative;
  display: inline-block;
  color: #000;
  text-decoration: none;
  padding-left: 12px;
  background: url("../img/common/ico/ico_arrow01blu.svg") 0 center no-repeat;
  background-size: 6px auto;
}
.ft_info_menu > ul > li > span {
  display: block;
  padding-top: 11px;
}
.ft_info_menu li a:hover {
  color: #369ED1;
}
.ft_info_menu li a::after {
  position: absolute;
  left: 0;
  bottom: -2px;
  z-index: 5;
  content: "";
  width: 0;
  height: 1px;
  background: #369ED1;
  transition: all 0.3s ease-in-out 0s;
}
.ft_info_menu li a:hover::after {
  width: 100%;
}
.ft_info_menu ul ul {
  padding: 12px 0 12px 12px;
}
.ft_info_menu ul ul li a {
  position: relative;
  display: inline-block;
  color: #000;
  text-decoration: none;
  font-size: 1.4rem;
  padding-left: 12px;
  line-height: 1.3;
  background-image: url("../img/common/ico/ico_arrow01blk.svg");
  background-repeat: no-repeat;
  background-position: 0 6px;
  background-size: 4px auto;
}
.ft_info_menu ul ul li a:hover {
  background-image: url("../img/common/ico/ico_arrow01blu.svg");
}

.copyright {
  display: block;
  text-align: center;
  background: #369ED1;
  color: #fff;
  font-size: 1.4rem;
  padding: 20px;
}
  @media screen and (max-width: 899px) {
    .copyright {
      font-size: 3vw;
      padding: 4vw;
    }
  }

/*----------------------------------------------------
  共通タイトル
--------------------------------------------------- */
.page_ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #F2F9FC;
  font-size: min(3.6vw,3.8rem);
  font-weight: 600;
  width: 100%;
  min-height: 180px;
}
.page_ttl span {
  visibility: hidden;
  position: relative;
  display: inline-block;
  line-height: 1.4;
  padding: 10px 0;
}
.page_ttl span::after {
  position: absolute;
  left: calc(50% - 40px);
  bottom: -3px;
  z-index: 5;
  content: "";
  width: 80px;
  height: 3px;
  background: #369ED1;
}
  @media screen and (max-width: 899px) {
    .page_ttl {
      font-size: 5.6vw;
      min-height: 30vw;
    }
    .page_ttl span {
      padding: 2vw 0;
    }
    .page_ttl span::after {
      left: calc(50% - 7.5vw);
      bottom: -2px;
      width: 15vw;
      height: 2px;
    }
  }

.page_ttl.bg_green {
  color: #fff;
  background: #74C39F;
}
.page_ttl.bg_green span::after {
  display: none;
}

.sub_ttl01 {
  position: relative;
  font-size: min(2.8vw,3rem);
  padding-bottom: 15px;
  margin-bottom: 60px;
  border-bottom: solid 2px #ddd;
}
.sub_ttl01::after {
  position: absolute;
  left: 0;
  bottom: -2px;
  z-index: 5;
  content: "";
  width: 150px;
  height: 2px;
  background: #369ED1;
}
  @media screen and (max-width: 899px) {
    .sub_ttl01 {
      font-size: 4.8vw;
      padding-bottom: 2.66vw;
      margin-bottom: 5.33vw;
      border-bottom: solid 1px #ddd;
    }
    .sub_ttl01::after {
      bottom: -1px;
      width: 24.8vw;
      height: 1px;
    }
  }

.sub_ttl02 {
  position: relative;
  font-size: min(2.6vw,2.6rem);
  padding-bottom: 15px;
  margin-bottom: 40px;
  border-bottom: solid 2px #ddd;
}
.sub_ttl02::after {
  position: absolute;
  left: 0;
  bottom: -2px;
  z-index: 5;
  content: "";
  width: 150px;
  height: 2px;
  background: #369ED1;
}
.sub_ttl02 small {
  font-size: min(1.8vw,1.8rem);
}
  @media screen and (max-width: 899px) {
    .sub_ttl02 {
      font-size: 4.8vw;
      padding-bottom: 2.66vw;
      margin-bottom: 5.33vw;
      border-bottom: solid 1px #ddd;
    }
    .sub_ttl02::after {
      bottom: -1px;
      width: 24.8vw;
      height: 1px;
    }
    .sub_ttl02 small {
      font-size: 3.46vw;
    }
  }

.members_wrap .sub_ttl02::after {
  background: #74C39F;
}

.sub_ttl03 {
  position: relative;
  font-feature-settings: "palt";
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  padding-left: 28px;
  margin-bottom: 20px;
}
.sub_ttl03::before {
  position: absolute;
  left: 0;
  top: 8px;
  z-index: 5;
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #369ED1;
}
  @media screen and (max-width: 899px) {
    .sub_ttl03 {
      font-size: 4.4vw;
      padding-left: 6.66vw;
      margin-bottom: 4vw;
    }
    .sub_ttl03::before {
      top: 1.4vw;
      width: 4vw;
      height: 4vw;
    }
  }

/*----------------------------------------------------
  共通ボタン
--------------------------------------------------- */
.pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 10000;
  display:none;
}
.pagetop a {
  position:relative;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding-top:15px;
  text-align:center;
  background-color: #369ED1;
  font-size:1.3rem;
  font-family: 'Roboto', sans-serif;
  color:#fff;
  text-decoration:none;
  transition: all 0.3s ease-in-out 0s;
  font-weight: 700;
}
.pagetop a:hover {
  filter: brightness(1.1);
}
.pagetop a:after{
  position:absolute;
  left:50%;
  top:5px;
  margin-left:-5px;
  content:"";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-bottom: 7px solid #fff;
}
  @media screen and (max-width: 899px) {
    .pagetop {
      display: none!important;
    }
  }

.btn01 {
  position: relative;
  z-index: 5;
}
.btn01 a {
  position: relative;
  bottom: 0;
  display: inline-block;
  vertical-align: bottom;
  width: 260px;
  padding: 15px 20px;
  line-height: 1.5;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  color: #369ED1;
  text-decoration: none;
  font-weight: 600;
  overflow: hidden;
  border: solid 1px #369ED1;
}
.btn01 a:hover {
  color: #fff;
}
.btn01 a::before {
  position: absolute;
  left: -100%;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #369ED1;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}
.btn01 a:hover::before {
  opacity: 1;
  left: 0;
}
.btn01 a span {
  display: block;
  position: relative;
  z-index: 10;
  background: url("../img/common/ico/ico_arrow03blu.svg") no-repeat center right;
  background-size: 18px auto;
  transition: all 0.3s ease-in-out 0s;
}
.btn01 a:hover span {
  background: url("../img/common/ico/ico_arrow03wh.svg") no-repeat center right;
  background-size: 18px auto;
}
  @media screen and (max-width: 899px) {
    .btn01 a {
      width: 64vw;
      padding: 3.33vw 4vw;
    }
    .btn01 a:hover {
      color: #369ED1;
    }
    .btn01 a::before {
      display: none;
    }
    .btn01 a span {
      background-size: 4vw auto;
    }
    .btn01 a:hover span {
      background: url("../img/common/ico/ico_arrow03blu.svg") no-repeat center right;
      background-size: 4vw auto;
    }
  }

.btn01.btn-or a {
  color: #FF9D00;
  border: solid 1px #FF9D00;
}
.btn01.btn-or a:hover {
  color: #fff;
}
.btn01.btn-or a::before {
  background: #FF9D00;
}
.btn01.btn-or a span {
  display: block;
  position: relative;
  z-index: 10;
  background: url("../img/common/ico/ico_arrow03or.svg") no-repeat center right;
  background-size: 18px auto;
  transition: all 0.3s ease-in-out 0s;
}
.btn01.btn-or a:hover span {
  background: url("../img/common/ico/ico_arrow03wh.svg") no-repeat center right;
  background-size: 18px auto;
}
  @media screen and (max-width: 899px) {
    .btn01.btn-or a:hover {
      color: #FF9D00;
    }
    .btn01.btn-or a::before {
      display: none;
    }
    .btn01.btn-or a span {
      background-size: 4vw auto;
    }
    .btn01.btn-or a:hover span {
      background: url("../img/common/ico/ico_arrow03or.svg") no-repeat center right;
      background-size: 4vw auto;
    }
  }

.btn01.btn-grn a {
  color: #74C39F;
  border: solid 1px #74C39F;
}
.btn01.btn-grn a:hover {
  color: #fff;
}
.btn01.btn-grn a::before {
  background: #74C39F;
}
.btn01.btn-grn a span {
  display: block;
  position: relative;
  z-index: 10;
  background: url("../img/common/ico/ico_arrow03grn.svg") no-repeat center right;
  background-size: 18px auto;
  transition: all 0.3s ease-in-out 0s;
}
.btn01.btn-grn a:hover span {
  background: url("../img/common/ico/ico_arrow03wh.svg") no-repeat center right;
  background-size: 18px auto;
}
  @media screen and (max-width: 899px) {
    .btn01.btn-grn a:hover {
      color: #74C39F;
    }
    .btn01.btn-grn a::before {
      display: none;
    }
    .btn01.btn-grn a span {
      background-size: 4vw auto;
    }
    .btn01.btn-grn a:hover span {
      background: url("../img/common/ico/ico_arrow03grn.svg") no-repeat center right;
      background-size: 4vw auto;
    }
  }


.btn01.w360 a {
  width: 360px;
}
  @media screen and (max-width: 899px) {
    .btn01.w360 a {
      font-size: 3.46vw;
      width: 100%;
      padding: 3.33vw 4vw;
    }
  }

.txt_link01 {
  margin: 3px 25px 3px 0;
}
.txt_link01 a {
  position: relative;
  display: inline-block;
  color: #000;
  text-decoration: none;
  padding-left: 12px;
  line-height: 1.5;
  background: url("../img/common/ico/ico_arrow01blu.svg") 0 center no-repeat;
  background-size: 6px auto;
}
.txt_link01 a:hover {
  color: #369ED1;
}
.txt_link01 a::after {
  position: absolute;
  left: 0;
  bottom: -2px;
  z-index: 5;
  content: "";
  width: 0;
  height: 1px;
  background: #369ED1;
  transition: all 0.3s ease-in-out 0s;
}
.txt_link01 a:hover::after {
  width: 100%;
}
  @media screen and (max-width: 899px) {
    .txt_link01 {
      margin: 1vw 0;
    }
    .txt_link01 a {
      padding-left: 3.33vw;
      background-size: 1.6vw auto;
    }
    .txt_link01 a::after {
      display: none;
    }
  }


.txt_link02 {
  margin: 3px 25px 3px 0;
}
.txt_link02 a {
  position: relative;
  display: inline-block;
  color: #000;
  text-decoration: none;
  padding-left: 12px;
  line-height: 1.5;
  background: url("../img/common/ico/ico_arrow01grn.svg") 0 center no-repeat;
  background-size: 6px auto;
}
.txt_link02 a:hover {
  color: #74C39F;
}
.txt_link02 a::after {
  position: absolute;
  left: 0;
  bottom: -2px;
  z-index: 5;
  content: "";
  width: 0;
  height: 1px;
  background: #74C39F;
  transition: all 0.3s ease-in-out 0s;
}
.txt_link02 a:hover::after {
  width: 100%;
}
  @media screen and (max-width: 899px) {
    .txt_link02 {
      margin: 1vw 0;
    }
    .txt_link02 a {
      padding-left: 3.33vw;
      background-size: 1.6vw auto;
    }
    .txt_link02 a::after {
      display: none;
    }
  }

/*----------------------------------------------------
  2column
--------------------------------------------------- */
.lower_column-2 {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
}
.column-2_main {
  width: 72%;
  max-width: 840px;
}
.column-2_side {
  width: 26%;
  max-width: 250px;
}
  @media screen and (max-width: 899px) {
    .lower_column-2 {
      max-width: 100%;
      display: block;
      padding-left: 5vw;
      padding-right: 5vw;
    }
    .column-2_main {
      width: 100%;
      max-width: 100%;
      padding-bottom: 10.66vw;
    }
    .column-2_side {
      width: 100%;
      max-width: 100%;
    }
  }

#side > div {
  margin-bottom: 30px;
}
#side > *:last-child {
  margin-bottom: 0;
}

.side_ttl01 {
  background: #369ED1;
  color: #fff;
  font-size: min(1.85vw,1.7rem);
  padding: 12px 20px;
  border-radius: 5px; 
}
.side_menu01 li {
  border-bottom: dotted 1px #ccc;
}
.side_menu01 li a {
  display: block;
  color: #000;
  padding: 10px 20px 10px 30px;
  text-decoration: none;
  background: url("../img/common/ico/ico_arrow01blu.svg") 15px center no-repeat;
  background-size: 6px auto;
  letter-spacing: 0;
}
.side_menu01 li a:hover {
  color: #369ED1;
}
.side_menu01 li.current-cat a,
.side_menu01 li a[aria-current="page"] {
  color: #369ED1;
}
  @media screen and (max-width: 899px) {
    #side > div {
      margin-bottom: 5.33vw;
    }
    .side_ttl01 {
      font-size: 4.26vw;
      padding: 2.66vw 4vw;
      border-radius: 1.33vw; 
    }
    .side_menu01 li a {
      padding: 2.66vw 5vw 2.66vw 6.66vw;
      background: url("../img/common/ico/ico_arrow01blu.svg") 3vw center no-repeat;
      background-size: 1.5vw auto;
    }
  }

#side_ms {
  padding-bottom: 12px;
  border-bottom: dotted 1px #ccc;
}
#side_ms .doctor_ms-list {
  padding-top: 15px;
}
#side_ms .doctor_ms-list li {
  width: 100%;
  padding: 8px 0;
}
#side_ms .doctor_ms-list li a {
  font-size: 1.6rem;
}
#side_ms .doctor_ms-list li.current-cat a {
  color: #369ED1;
}
  @media screen and (max-width: 899px) {
    #side_ms {
      padding-bottom: 2.66vw;
    }
    #side_ms .doctor_ms-list {
      padding-top: 3.33vw;
    }
    #side_ms .doctor_ms-list li {
      padding: 2vw 0;
    }
    #side_ms .doctor_ms-list li a {
      font-size: 4vw;
      padding-left: 10.66vw;
    }
  }

#side_search .search_keyword-box {
  margin-top: 20px;
}
#side_search .search_keyword-txt {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
#side_search .search_keyword-tag li {
  margin: 0 13px 0 0;
}
#side_search .search_keyword-tag li a {
  font-size: 1.4rem;
  letter-spacing: 0;
}
  @media screen and (max-width: 899px) {
    #side_search .search_keyword-box {
      margin-top: 5vw;
    }
    #side_search .search_keyword-txt {
      font-size: 3.46vw;
      margin-bottom: 4vw;
    }
    #side_search .search_keyword-tag li {
      margin: 0 3vw 1.33vw 0;
    }
    #side_search .search_keyword-tag li a {
      font-size: 3.46vw;
    }
  }

/*----------------------------------------------------
  共通テーブル
--------------------------------------------------- */
.tbl01 th {
  width: 200px;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  background: #F2F2F2;
  font-weight: 500;
  padding: 15px 25px;
  text-align: left;
}
.tbl01 td {
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  padding: 15px 25px;
}
  @media screen and (max-width: 899px) {
    .tbl01 {
      letter-spacing: 0.01em;
      font-size: 3.46vw;;
    }
    .tbl01 th {
      width: 28%;
      padding: 3vw;
    }
    .tbl01 td {
      padding: 3vw 4vw;
    }
  }

/*----------------------------------------------------
  共通メニュー
--------------------------------------------------- */
#common_main_menu {
  padding-top: 100px;
}
#common_main_menu ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  list-style: none;
}
#common_main_menu li {
  width: calc((100% - 60px) / 3);
}
#common_main_menu a {
  position: relative;
  height: 120px;
  font-size: 2rem;
  font-weight: 600;
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: solid 1px #ddd;
  text-decoration: none;
  text-align: center;
}
#common_main_menu a:hover {
  color: #369ED1;
  border: solid 1px #369ED1;
}
#common_main_menu a::after {
  position: absolute;
  right: 1px;
  bottom: 1px;
  z-index: 5;
  content: "";
  width: 28px;
  height: 28px;
  background: url("../img/common/ico/ico_arrow01wh.svg") #0099CC center center no-repeat;
  background-size: 8px auto;
}
  @media screen and (max-width: 999px) {
    #common_main_menu ul {
      gap: 20px;
    }
    #common_main_menu li {
      width: calc((100% - 40px) / 3);
      font-feature-settings: "palt";
    }
  }
  @media screen and (max-width: 899px) {
    #common_main_menu {
      padding-top: 10.66vw;
    }
    #common_main_menu ul {
      width: 100%;
      display: block;
    }
     #common_main_menu li {
      width: 100%;
      margin-bottom: 2.66vw;
    }
     #common_main_menu li:last-child {
      margin-bottom: 0;
    }
     #common_main_menu a {
      height: auto;
      min-height: 25vw;
      padding: 2.66vw 4vw;
      font-size: 4.26vw;
    }
    #common_main_menu a::after {
      width: 5.8vw;
      height: 5.8vw;
      background: url("../img/common/ico/ico_arrow01wh.svg") #0099CC center center no-repeat;
      background-size: 1.4vw auto;
    }
  }

#hbNav {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
  /*スマホナビ*/
  @media screen and (max-width: 899px) {
    /*transition*/
    .trs {
      -webkit-transition: all .1s ease;
      -moz-transition: all .1s ease;
      -ms-transition: all .1s ease;
      -o-transition: all .1s ease;
      transition: all .1s ease;
    }
    /*trp*/
    .trp {
      -webkit-transition: opacity .1s ease;
      -moz-transition: opacity .1s ease;
      -ms-transition: opacity .1s ease;
      -o-transition: opacity .1s ease;
      transition: opacity .1s ease;
      opacity: 1;
      filter: alpha(opacity=100);
    }
    .trp:hover {
      opacity: .6;
      filter: alpha(opacity=60);
    }
    /* trs-dr */
    .trs-dr02 {
      -webkit-transition-duration: .2s;
      -moz-transition-duration: .2s;
      -ms-transition-duration: .2s;
      -o-transition-duration: .2s;
      transition-duration: .2s;
    }
    .trs-dr03 {
      -webkit-transition-duration: .3s;
      -moz-transition-duration: .3s;
      -ms-transition-duration: .3s;
      -o-transition-duration: .3s;
      transition-duration: .3s;
    }
    .trs-dr05 {
      -webkit-transition-duration: .5s;
      -moz-transition-duration: .5s;
      -ms-transition-duration: .5s;
      -o-transition-duration: .5s;
      transition-duration: .5s;
    }
    .trs-dr06 {
      -webkit-transition-duration: .6s;
      -moz-transition-duration: .6s;
      -ms-transition-duration: .6s;
      -o-transition-duration: .6s;
      transition-duration: .6s;
    }
    .trs-dr08 {
      -webkit-transition-duration: .8s;
      -moz-transition-duration: .8s;
      -ms-transition-duration: .8s;
      -o-transition-duration: .8s;
      transition-duration: .8s;
    }
    .trs-dr12 {
      -webkit-transition-duration: 1.2s;
      -moz-transition-duration: 1.2s;
      -ms-transition-duration: 1.2s;
      -o-transition-duration: 1.2s;
      transition-duration: 1.2s;
    }
    /* trs-tf */
    .trs-tfCb {
      -webkit-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      -moz-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      -ms-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      -o-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      transition-timing-function: cubic-bezier(0, .96, .4, .99);
    }
    .menuTrigger {
      position: fixed;
      z-index: 150;
      top: 0;
      right: 0;
      display: block;
      width: 16vw;
      height: 16vw;
      cursor: pointer;
      transition: .3s;
      background: #369ED1;
    }
    .menuTrigger.open {
      z-index: 200;
    }
    .menuIcon_line {
      position: absolute;
      left: calc(50% - 4.5vw);
      width: 9vw;
      height: 2px;
      background: #fff;
    }
    .menuIcon_line:nth-of-type(1) {
      top: calc(50% - 22px);
    }
    .menuIcon_line:nth-of-type(2) {
      top: calc(50% - 1px);
    }
    .menuIcon_line:nth-of-type(3) {
      top: calc(50% + 20px);
    }
    /* open */
    .menuTrigger.open .menuIcon_line {
      background: #fff;
    }
    .menuTrigger.open .menuIcon_line:nth-of-type(1) {
      top: 50%;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    .menuTrigger.open .menuIcon_line:nth-of-type(2) {
      opacity: 0;
    }
    .menuTrigger.open .menuIcon_line:nth-of-type(3) {
      top: 50%;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }
    #hbNav {
      box-sizing: border-box;
      position: fixed;
      top: 0;
      left: 0;
      display: none;
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 0;
      background-color: rgba(255,255,255,0.95);
      z-index: 150;
      overflow-y: visible;
      overflow-x: hidden;
      -webkit-overflow-scrolling: auto;
      overflow-scrolling: auto;
    }
    .hb_inner {
      position: relative;
      display: table;
      width: 100%;
      height: 100%;
      padding: 25.33vw 5.33vw 8vw 5.33vw;
    }
    .hb_logo {
      position: absolute;
      left: 4vw;
      top: 5vw;
    }
    .hb_logo img {
      width: auto;
      height: 6vw;
    }
    .hb_navi {
      border-bottom: dotted 1px #ccc;
      padding-bottom: 5.33vw;
    }
    .hb_navi li {
      margin: 0 2.66vw;
    }
    .hb_navi li a {
      font-size: 3.73vw;
      line-height: 4vw;
      padding-left: 5.33vw;
    }
    .hb_navi li a:hover {
      color: #369ED1;
    }
    .hb_navi01 a {
      background: url("../img/common/ico/ico_home01blu.svg") 0 center no-repeat;
      background-size: 4.4vw auto;
    }
    .hb_navi02 a {
      background: url("../img/common/ico/ico_pad01blu.svg") 0 center no-repeat;
      background-size: 3.6vw auto;
    }
    .hb_navi03 a {
      background: url("../img/common/ico/ico_lock01blu.svg") 0 center no-repeat;
      background-size: 3.8vw auto;
    }
    .hb_menu {
      padding-top: 8vw;
    }
    .hb_menu li {
      line-height: 1.5;
    }
    .hb_menu > li {
      border-bottom: dotted 1px #369ED1;
    }
    .hb_menu > li > a {
      position: relative;
      display: block;
      color: #000;
      text-decoration: none;
      padding: 3vw 3vw 3vw 8vw;
      background: url("../img/common/ico/ico_arrow01blu.svg") 3.73vw center no-repeat;
      background-size: 1.5vw auto;
      font-size: 3.73vw;
    }
    .hb_menu  > li > span {
      display: block;
      padding-bottom: 3vw;
    }
    .hb_menu li a:hover {
      color: #369ED1;
    }
    .hb_menu ul {
      padding: 3vw 0;
      background: #F2F9FC;
      margin-bottom: 5.33vw;
    }
    .hb_menu ul li {
      margin: 3vw 0;
    }
    .hb_menu ul li a {
      position: relative;
      display: inline-block;
      color: #000;
      text-decoration: none;
      font-size: 3.73vw;
      padding: 0 3vw 0 8vw;
      background: url("../img/common/ico/ico_arrow01blk.svg") 3.73vw center no-repeat;
      background-size: 1.5vw auto;
    }
  }
  @media screen and (max-width: 549px) {
    .menuIcon_line:nth-of-type(1) {
      top: calc(50% - 16px);
    }
    .menuIcon_line:nth-of-type(3) {
      top: calc(50% + 14px);
    }
  }
  @media screen and (max-width: 414px) {
    .menuIcon_line:nth-of-type(1) {
      top: calc(50% - 12px);
    }
    .menuIcon_line:nth-of-type(3) {
      top: calc(50% + 10px);
    }
  }
