@charset "UTF-8";
/* ==============================================================
*  BASE
* ============================================================ */
/*
*  reset
* ----------------------------------------*/
*, ::before, ::after {
  box-sizing: border-box;
}

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, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

/*
*  font
* ----------------------------------------*/
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/RobotoCondensed-Bold.woff") format("woff"), url("../fonts/RobotoCondensed-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/RobotoCondensed-Regular.woff") format("woff"), url("../fonts/RobotoCondensed-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: thin;
  font-weight: 100;
  src: url("../../fonts/NotoSansJP-Thin.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/NotoSansJP-Light.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/NotoSansJP-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: bold;
  font-weight: 700;
  src: url("../../fonts/NotoSansJP-Black.otf") format("opentype");
}
@font-face {
  font-family: "Sawarabi Gothic";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/SawarabiGothic-Regular.ttf") format("truetype");
}
/*
*  base
* ----------------------------------------*/
*:focus {
  outline: none;
}

html, body {
  height: 100%;
}

html {
  font-size: 62.5%;
  font-feature-settings: "pkna" 1;
}

body {
  color: black;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}

@media only screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
a {
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

a, button, input[type=button], input[type=reset], input[type=submit] {
  touch-action: manipulation;
  transition: all 0.3s ease-out;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

.wrapper {
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wrapper .footer {
  margin-top: auto;
}

.inner, .inner-l, .inner-s {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

.inner {
  max-width: 1100px;
}

.inner-s {
  max-width: 750px;
}

/* ==============================================================
*  LAYOUT
* ============================================================ */
/*
*  header
* ----------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 85px;
  background: #fff;
  padding: 10px 10px 10px;
  transition: all 0.3s ease-out;
}

.header.is-animation {
  height: 70px;
}

.header.is-animation .header_logo a {
  display: block;
  width: 35%;
}

.header.is-animation .header_logo a img {
  width: auto;
}

.header .header_inner {
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}

.header .header_logo a {
  transition: all 0.3s ease-out;
}

@media only screen and (max-width: 767px) {
  .header .header_logo a {
    display: block;
    width: 45%;
  }
  .header.is-animation .hamburger {
    top: 6px;
  }
}
@media only screen and (min-width: 768px) {
  .header {
    padding: 25px 20px 15px;
    height: 130px;
    position: static;
  }
  .header.is-animation {
    height: 100px;
    padding: 15px 20px 15px;
  }
  .header.is-animation .header_logo a {
    width: 15%;
  }
  .header.is-animation .header_logo a img {
    width: auto;
  }
  .header.is-animation .hamburger {
    top: 20px;
  }
  .header .header_logo a {
    display: block;
    max-width: 220px;
  }
  .header .header_logo a:hover {
    opacity: 0.7;
  }
}
/*
*  navigation
* ----------------------------------------*/
/* ハンバーガーボタン */
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 15px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 3px;
  left: 6px;
  background: #000000;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

.hamburger small {
  position: absolute;
  font-size: 1.2rem;
  top: 30px;
  left: 51%;
  transform: translateX(-49%);
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #fff;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background: #fff;
  transform: rotate(45deg);
}

.hamburger.active small {
  opacity: 0;
}

nav {
  display: none;
}

nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: none;
}

nav.globalMenuSp .nav_ttl {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  nav.globalMenuSp {
    flex-direction: column;
    overflow-y: scroll;
    height: 100%;
    padding: 45px 15px 30px;
  }
  nav.globalMenuSp .nav_ttl {
    text-align: left;
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  nav.globalMenuSp .menu li {
    font-weight: bold;
    font-size: 1.6rem;
  }
  nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: none;
    text-align: left;
  }
  nav.globalMenuSp ul li {
    list-style-type: none;
    width: 100%;
    transition: 0.4s all;
  }
  nav.globalMenuSp ul li:last-of-type {
    padding-bottom: 0;
  }
  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
  }
  nav.globalMenuSp .ct2 li {
    margin-bottom: 25px;
  }
  nav.globalMenuSp .ct3 {
    margin-left: 20px;
  }
  nav.globalMenuSp .ct3 li {
    font-weight: normal;
    font-size: 1.4rem;
    margin-bottom: 8px;
    position: relative;
  }
  nav.globalMenuSp .ct3 li:before {
    content: "";
    position: absolute;
    width: 15px;
    height: 1px;
    background-color: #fff;
    top: 50%;
    left: -20px;
  }
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  display: -ms-flex;
  display: flex;
}

nav.globalMenuSp.active ul {
  display: block;
}

@media only screen and (max-width: 767px) {
  .hamburger span:nth-child(2) {
    top: 19px;
  }
  .hamburger span:nth-child(3) {
    top: 28px;
  }
  .hamburger small {
    top: 33px;
  }
}
@media only screen and (min-width: 768px) {
  .hamburger {
    width: 43px;
    top: 25px;
    right: 20px;
  }
  .hamburger.active span:nth-child(1) {
    left: 0;
  }
  .hamburger span {
    width: 45px;
    left: 0;
  }
  .hamburger small {
    font-size: 1.45rem;
    top: 36px;
  }
  nav.globalMenuSp {
    display: -ms-flex;
    display: flex;
    margin-right: 30px;
    padding: 35px 50px;
    display: none;
  }
  nav.globalMenuSp .nav_ttl {
    font-size: 3rem;
    width: 30%;
    margin-right: 50px;
  }
  nav.globalMenuSp .menu {
    display: -ms-flex;
    display: flex;
    flex-direction: column;
  }
  nav.globalMenuSp .menu li {
    position: relative;
    display: -ms-flex;
    display: flex;
  }
  nav.globalMenuSp .menu li:not(:first-child)::after {
    content: "";
    width: 1px;
    height: 136px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: -25px;
  }
  nav.globalMenuSp .menu li:not(:first-child)::before {
    content: "";
    width: 20px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: -25px;
  }
  nav.globalMenuSp .menu li.top a {
    width: auto;
    display: block;
    align-self: baseline;
  }
  nav.globalMenuSp .menu li.last:after {
    height: 113px;
  }
  nav.globalMenuSp .menu li.sports:after {
    height: 113px;
    top: -92px;
  }
  nav.globalMenuSp .menu li:first-of-type:before {
    content: "";
    width: 40px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: -45px;
  }
  nav.globalMenuSp .menu li:first-of-type:after {
    content: "";
    width: 1px;
    height: calc(100% + 2rem);
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: -25px;
  }
  nav.globalMenuSp .menu li:first-of-type:last-of-type:before {
    content: "";
    width: 0px;
    height: 0px;
  }
  nav.globalMenuSp .menu li:first-of-type:last-of-type:after {
    content: "";
    width: 0px;
    height: 0px;
  }
  nav.globalMenuSp .menu li:last-of-type:after {
    content: "";
    width: 1px;
    height: 2.5rem;
    background-color: #fff;
    position: absolute;
    top: -1rem;
    left: -25px;
  }
  nav.globalMenuSp .menu li a {
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease-out;
    height: 30px;
  }
  nav.globalMenuSp .menu li a:hover {
    color: #00507d;
  }
  nav.globalMenuSp .menu li .ct2 {
    width: auto;
    margin-left: 55px;
    display: -ms-flex;
    display: flex;
    flex-direction: column;
  }
  nav.globalMenuSp .menu li .ct2 li {
    margin-bottom: 20px;
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
  nav.globalMenuSp .menu li .ct2 li a {
    align-self: center;
  }
  nav.globalMenuSp .menu li .ct3.wellness {
    width: auto;
    margin-left: 135px;
  }
  nav.globalMenuSp .menu li .ct3.wellness li:first-of-type:before {
    content: "";
    width: 118px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: -124px;
  }
  nav.globalMenuSp .menu li .ct3.shisetu {
    margin-left: 62px;
  }
  nav.globalMenuSp .menu li .ct3.shisetu:before {
    content: "";
    width: 25px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 47%;
    left: 43%;
  }
  nav.globalMenuSp .menu li .ct3.shisetu li {
    margin-bottom: 10px;
  }
  nav.globalMenuSp .menu li .ct3.shisetu li:before {
    content: "";
    border-left: 1px solid #fff;
    position: absolute;
    left: -25px;
  }
  nav.globalMenuSp .menu li .ct3.shisetu li:first-of-type:before {
    content: "";
    width: 20px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: -25px;
  }
  nav.globalMenuSp .menu li .ct3.shisetu li:first-of-type:after {
    height: calc(100% + 1.1rem);
  }
  nav.globalMenuSp .menu li .ct3.kyufu {
    margin-left: 110px;
  }
  nav.globalMenuSp .menu li .ct3.kyufu:before {
    content: "";
    width: 77px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 33%;
  }
  nav.globalMenuSp .menu li .ct3.kyufu li:before {
    content: "";
    border-left: 1px solid #fff;
    position: absolute;
    left: -25px;
  }
  nav.globalMenuSp .menu li .ct3.kyufu li:first-of-type:before {
    content: "";
    width: 20px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: -25px;
  }
  nav.globalMenuSp .menu li .ct3.kyufu li:first-of-type:after {
    height: calc(100% + 1.1rem);
  }
  nav.globalMenuSp .menu li .ct3.kyufu li:not(:first-child)::after {
    height: 26px;
  }
  nav.globalMenuSp .menu li .ct3.event {
    margin-left: 130px;
  }
  nav.globalMenuSp .menu li .ct3.event:before {
    content: "";
    width: 95px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 25.5%;
  }
  nav.globalMenuSp .menu li .ct3.event li:before {
    content: "";
    border-left: 1px solid #fff;
    position: absolute;
    left: -25px;
  }
  nav.globalMenuSp .menu li .ct3.event li:first-of-type:before {
    content: "";
    width: 20px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: -25px;
  }
  nav.globalMenuSp .menu li .ct3.event li:first-of-type:after {
    height: calc(100% + 1.1rem);
  }
  nav.globalMenuSp .menu li .ct3.event li:last-of-type:after {
    top: -14px;
    left: -25px;
  }
  nav.globalMenuSp .menu li .ct3.event li:not(:first-child)::after {
    height: 30px;
  }
}
.open .nav {
  right: 0;
  opacity: 1;
}

.open .nav__btn span {
  background-color: #fff;
}

.open .nav__btn span:nth-child(1) {
  transform: rotate(45deg);
}

.open .nav__btn span:nth-child(2) {
  opacity: 0;
}

.open .nav__btn span:nth-child(3) {
  transform: rotate(-45deg);
}

/*
*  footer
* ----------------------------------------*/
.footer {
  background-color: #1A1A1A;
  color: #fff;
}

.footer .f_inner {
  padding: 35px 0 35px;
}

.footer .f_inner .f_logo {
  text-align: center;
}

.footer .f_inner .f_R .f_link {
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}

.footer .f_inner .f_R .f_link li {
  margin-right: 15px;
}

.footer .f_inner .f_R .f_link li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.footer .f_inner .f_R .f_copy {
  color: #808080;
  line-height: 1.4;
}

@media only screen and (max-width: 767px) {
  .footer .f_inner .f_logo {
    margin-bottom: 15px;
  }
  .footer .f_inner .f_logo a img {
    width: 40%;
  }
  .footer .f_inner .f_R {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
  }
  .footer .f_inner .f_R .f_link {
    margin-bottom: 15px;
  }
  .footer .f_inner .f_R .f_copy {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  .footer .f_inner {
    display: -ms-flex;
    display: flex;
    -ms-align-items: flex-end;
    align-items: flex-end;
    padding: 50px 0 45px 100px;
  }
  .footer .f_inner .f_logo {
    margin-right: 45px;
  }
  .footer .f_inner .f_logo a:hover {
    opacity: 0.7;
  }
  .footer .f_inner .f_R {
    font-size: 1.4rem;
  }
  .footer .f_inner .f_R .f_link li {
    margin-right: 20px;
    margin-bottom: 10px;
  }
  .footer .f_inner .f_R .f_link li a:hover {
    color: #00507d;
  }
}
/*----- ページトップへ */
#page_top {
  width: 40px;
  height: 40px;
  position: fixed;
  right: 0;
  bottom: 20px;
  opacity: 0.7;
}

#page_top a {
  display: block;
  width: 40px;
  height: 40px;
  text-decoration: none;
  background-image: url(../img/page_top.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (min-width: 768px) {
  #page_top {
    width: 60px;
    height: 60px;
    bottom: 20px;
  }
  #page_top a {
    width: 60px;
    height: 60px;
  }
}
/* ==============================================================
*  MODULE（汎用的に使用できるスタイル）
* ============================================================ */
/*----- インライン要素化、ブロック要素化 */
.ib {
  display: inline-block !important;
}

.db {
  display: block !important;
}

/*----- ブロック要素の位置 */
.f-l {
  float: left !important;
}

.f-r {
  float: right !important;
}

/*----- 文字位置：横 */
.t-c {
  text-align: center !important;
}

.t-r {
  text-align: right !important;
}

.t-l {
  text-align: left !important;
}

/*----- 文字位置：縦 */
.va-t {
  vertical-align: top !important;
}

.va-m {
  vertical-align: middle !important;
}

.va-b {
  vertical-align: bottom !important;
}

/*----- 文字の太さ */
.fw-n {
  font-weight: normal !important;
}

.fw-b {
  font-weight: bold !important;
}

/*----- コンテンツの中心に配置 */
.t-center {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*----- 文字の色 */
.tc-red {
  color: #e60012;
}

.fc-b {
  color: #00507d;
}

/*----- 注釈 */
/*----- リスト */
ul, ol {
  list-style-type: none;
}

.ol, .ul {
  padding-left: 20px;
}

.ol li + li, .ul li + li {
  padding-top: 5px;
}

@media only screen and (max-width: 767px) {
  .ol li + li, .ul li + li {
    padding-top: 5px;
  }
}
.ol {
  list-style: decimal;
}

.ul {
  list-style: disc;
}

.note_list li {
  padding-left: 1.6rem;
  text-indent: -1.6rem;
}

.disc_list {
  margin-left: 1em;
}

.disc_list li {
  position: relative;
  margin-bottom: 8px;
}

.disc_list li:after {
  display: block;
  content: "";
  position: absolute;
  top: 10px;
  left: -1em;
  width: 10px;
  height: 10px;
  background-color: black;
  border-radius: 100%;
}

.list_notes li {
  padding-left: 1.1em;
  text-indent: -1.1em;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.ol {
  list-style-type: decimal !important;
}

.ol li {
  margin: 0 0 5px;
  line-height: 1.45;
}

/*----- リンク */
.no_link {
  pointer-events: none;
}

.link_tel {
  text-decoration: none;
  color: black;
}

@media only screen and (min-width: 768px) {
  .link_tel {
    pointer-events: none;
  }
}
.link_mail {
  text-decoration: underline;
  color: #231815;
  transition: all 0.3s ease-out;
}

@media only screen and (min-width: 768px) {
  .link_mail:hover {
    color: black;
  }
}
.link_txt {
  text-decoration: underline;
  color: #231815;
}

@media only screen and (min-width: 768px) {
  .link_txt:hover {
    color: #00507d;
  }
}
/*----- 画像 */
.img-full {
  width: 100% !important;
}

/*----- 改行 */
br.sp {
  display: none;
}

@media only screen and (min-width: 768px) {
  .pc {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .tab {
    display: none;
  }
}
.mn {
  margin: 0 !important;
}

.mtn {
  margin-top: 0 !important;
}

.mrn {
  margin-right: 0 !important;
}

.mbn {
  margin-bottom: 0 !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

/*
*  button
* ----------------------------------------*/
.btn {
  display: block;
  text-align: center;
}

/*
*  form
* ----------------------------------------*/
.form__parts {
  width: 100%;
  padding: 5px 8px;
  margin: 5px 0;
  border: 1px solid #989797;
  border-radius: 4px;
  color: black;
  font-size: 1.5rem;
  font-family: "Roboto", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form__parts.w-l {
  max-width: 680px;
}

.form__parts.w-m {
  max-width: 640px;
}

.form__parts.w-s {
  max-width: 340px;
}

.form__parts::-moz-placeholder {
  color: #BFBFBF;
}

.form__parts::placeholder {
  color: #BFBFBF;
}

.form__parts:-ms-input-placeholder {
  color: #BFBFBF;
}

.form__parts::-ms-input-placeholder {
  color: #BFBFBF;
}

@media only screen and (max-width: 768px) {
  .form__parts {
    padding: 10px 12px;
    font-size: 1.4rem;
  }
  .form__parts.w-l, .form__parts.w-m, .form__parts.w-s {
    max-width: 100%;
  }
}
.form__select-wrap {
  position: relative;
}

.form__select-wrap:before {
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #989797;
  border-right: 2px solid #989797;
  transform: rotate(45deg);
  position: absolute;
  top: 23px;
  right: 16px;
  z-index: 1;
}

@media only screen and (min-width: 768px) {
  .form__select-wrap {
    max-width: 400px;
  }
}
.form__select {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  padding: 8px 10px 12px 10px;
}

@media only screen and (max-width: 768px) {
  .form__select {
    padding: 10px 12px;
  }
}
.form__check {
  display: none;
}

.form__check:checked + .form__check-parts {
  color: #00507d;
}

.form__check:checked + .form__check-parts::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 9px;
  width: 6px;
  height: 12px;
  transform: rotate(40deg);
  border-bottom: 2px solid #00507d;
  border-right: 2px solid #00507d;
}

@media only screen and (max-width: 768px) {
  .form__check:checked + .form__check-parts::after {
    top: 0;
  }
}
.form__check-parts {
  padding-left: 24px;
  position: relative;
  margin-right: 10px;
}

.form__check-parts::before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #989797;
  border-radius: 2px;
}

@media only screen and (max-width: 768px) {
  .form__check-parts::before {
    top: -4px;
  }
}
.form__required {
  width: 40px;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 22px;
  background-color: #ff0022;
  padding: 0 5px;
}

@media only screen and (max-width: 768px) {
  .form__required {
    font-size: 1.1rem;
    line-height: 18px;
    padding: 1px 5px 0;
  }
}
.form__error {
  display: block;
  color: #ff0022;
  font-size: 1.3rem;
}

@media only screen and (max-width: 768px) {
  .form__error {
    font-size: 1.2rem;
  }
}
/*
*  grid
* ----------------------------------------*/
@media only screen and (min-width: 768px) {
  .row {
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
  }
  .col-6 {
    width: calc(50% - 20px);
  }
  .col-4 {
    width: calc(33.333% - 20px);
  }
  .col-6-s {
    width: calc(50% - 10px);
  }
  .col-4-s {
    width: calc(33.333% - 10px);
  }
}
@media only screen and (max-width: 768px) {
  .col-6 + .col-6 {
    margin-top: 20px;
  }
  .col-6-s + .col-6-s,
  .col-4-s + .col-4-s {
    margin-top: 10px;
  }
}
/*
*  modal
* ----------------------------------------*/
.modal__open {
  cursor: pointer;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
}

.modal__wrap input {
  display: none;
}

.modal__wrap input:checked ~ .modal__overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}

.modal__overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}

.modal__trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}

.modal__content {
  position: relative;
  align-self: center;
  width: 60%;
  max-width: 800px;
  padding: 35px 30px 30px;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.4em;
  transition: 0.5s;
  margin: 30px 0;
}

@media only screen and (max-width: 767px) {
  .modal__content {
    width: 92%;
    padding: 35px 20px 20px;
    margin: 20px 0;
  }
}
.accordion-container .main_h2_aco {
  font-size: 2.8rem;
  color: #fff;
  line-height: 1.3;
  font-weight: 500;
  background-color: #3e3a39;
  padding: 10px 0 10px;
  margin-bottom: 20px;
}

.accordion-container .accordion-title {
  position: relative;
  margin: 0 0 20px;
  cursor: pointer;
}

.accordion-container .accordion-title span {
  position: relative;
}

.accordion-container .accordion-title span:after {
  content: "";
  position: absolute;
  top: 20px;
  right: -35px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 11px 19px 11px;
  border-color: transparent transparent #ffffff transparent;
}

.accordion-container .accordion-title.open span:after {
  content: "";
  position: absolute;
  top: 18px;
  border-style: solid;
  border-width: 19px 11px 0 11px;
  border-color: #ffffff transparent transparent transparent;
}

@media only screen and (max-width: 767px) {
  .accordion-container .accordion-title.open span:after {
    top: 14px;
    border-width: 16px 9px 0 9px;
  }
  .accordion-container .accordion-title span:after {
    top: 14px;
    border-width: 0 9px 16px 9px;
  }
}
@media only screen and (min-width: 768px) {
  .accordion-container .main_h2_aco {
    font-size: 3.5rem;
    padding: 20px 0 20px;
    margin-bottom: 40px;
  }
  .accordion-container .accordion-title {
    transition: all 0.3s ease-out;
  }
  .accordion-container .accordion-title:hover {
    opacity: 0.7;
  }
}
@-moz-document url-prefix() {
  .accordion-container .accordion-title.open span::after {
    top: 14px;
  }
  .accordion-container .accordion-title span::after {
    top: 14px;
  }
  @media only screen and (max-width: 767px) {
    .accordion-container .accordion-title.open span:after {
      top: 11px;
      border-width: 16px 9px 0 9px;
    }
    .accordion-container .accordion-title span:after {
      top: 12px;
      border-width: 0 9px 16px 9px;
    }
  }
}
@media all and (-ms-high-contrast: none) {
  .accordion-container .accordion-title.open span::after {
    top: 20px;
  }
  .accordion-container .accordion-title span::after {
    top: 20px;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-slide:focus {
  outline: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*----- 3列デフォルトスライダー */
.slider-default .slick-slide {
  margin: 0 5px;
}

.slider-default .slick-arrow {
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 1;
}

.slider-default .slick-arrow:before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.slider-default .slick-prev {
  left: 0;
}

.slider-default .slick-prev:before {
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
}

.slider-default .slick-next {
  right: 0;
}

.slider-default .slick-next:before {
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

@media only screen and (min-width: 768px) {
  .slider-default .slick-slide {
    margin: 0 20px;
  }
  .slider-default .slick-arrow {
    width: 100px;
  }
  .slider-default .slick-arrow:before {
    width: 18px;
    height: 18px;
  }
}
/*
*  table
* ----------------------------------------*/
.table {
  width: 100%;
  border-top: 1px solid #989797;
}

.table tr {
  border-bottom: 1px solid #989797;
}

.table th, .table td {
  vertical-align: top;
  padding: 14px 15px;
  line-height: 1.4666;
}

.table th {
  width: 180px;
  background-color: #727171;
  font-weight: normal;
  text-align: left;
}

.table__center th, .table__center td {
  vertical-align: middle;
}

.table__center th {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .table th, .table td {
    padding: 12px 13px;
  }
  .table th {
    width: 90px;
  }
  .table__block th, .table__block td {
    display: block;
    width: 100%;
  }
  .table__block td + td {
    padding-top: 0;
  }
}
.table_what table {
  width: 100%;
}

.table_what table th, .table_what table td {
  line-height: 1.4;
  padding: 10px 8px;
  border-bottom: 1px solid #1A1A1A;
}

.table_what table th {
  font-weight: bold;
  font-size: 1.6rem;
  background-color: #3e3a39;
  color: #fff;
  text-align: left;
}

.table_what table td:first-of-type {
  vertical-align: top;
}

@media only screen and (max-width: 767px) {
  .table_what table .thead {
    display: none;
  }
  .table_what table tr {
    width: 100%;
  }
  .table_what table tr, .table_what table td {
    padding: 10px 8px;
  }
  .table_what table td {
    display: block;
    width: 100%;
    display: -ms-flex;
    display: flex;
  }
  .table_what table td:first-of-type {
    background-color: #3e3a39;
    color: #fff;
    font-weight: bold;
  }
  .table_what table td:first-of-type:before {
    width: auto;
    margin-right: 0;
  }
  .table_what table td:last-of-type {
    padding: 10px 8px 18px;
  }
  .table_what table td:before {
    content: attr(data-label);
    width: 20%;
    float: left;
    font-weight: bold;
    margin-right: 10px;
  }
  .table_what table td.td {
    background-color: #fff;
    color: black;
    font-weight: normal;
  }
  .table_what table td.td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    margin-right: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .table_what table th, .table_what table td {
    padding: 15px 20px;
  }
  .table_what table th {
    font-size: 1.8rem;
    vertical-align: top;
  }
  .table_what table td {
    vertical-align: middle;
  }
}
.shisetu_table {
  margin-bottom: 20px;
}

.shisetu_table .table_h {
  font-weight: bold;
  margin-bottom: 10px;
}

.shisetu_table table th, .shisetu_table table td {
  padding: 7px;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
  border: 1px solid #231815;
}

.shisetu_table table th {
  background-color: #dcdddd;
}

.shisetu_table table .th_border_top {
  border-top: 2px solid #231815;
}

.shisetu_table table .th_border_bottom {
  border-bottom: 2px solid #231815;
}

.shisetu_table table .td_border_bottom {
  border-bottom: 1px;
}

.shisetu_table table .border_L_none {
  border-left: none;
}

.shisetu_table table .border_R_none {
  border-right: none;
}

.shisetu_table table .bg_gray {
  background-color: #f2f2f3;
}

.shisetu_table table .bg_red {
  background-color: #fbd9dc;
  color: #e60012;
}

.shisetu_table table small {
  font-size: 1.2rem;
}

@media only screen and (max-width: 767px) {
  .shisetu_table {
    overflow-x: auto;
    width: 350px;
  }
  .shisetu_table table {
    width: 614px;
  }
}
@media only screen and (min-width: 768px) {
  .shisetu_table {
    margin-bottom: 30px;
  }
  .shisetu_table .table_h {
    margin-bottom: 20px;
  }
  .shisetu_table table {
    width: 100%;
  }
  .shisetu_table table th, .shisetu_table table td {
    padding: 15px;
  }
}
@-moz-document url-prefix() {
  .shisetu_table.border_bottom {
    border-bottom: 1px solid #231815;
  }
  .shisetu_table table .border_B_none {
    border-bottom: none;
  }
}
/*
*  title
* ----------------------------------------*/
.link_h {
  padding-top: 100px;
  margin-top: -100px;
}

.title-head {
  height: 200px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.title-head .inner {
  position: relative;
}

.title-head h1 {
  width: 55%;
  background-color: #fff;
  border-radius: 20px;
  padding: 15px 10px;
  color: #000;
  text-align: center;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  -ms-box-shadow: 0px 0px 15px 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 15px 4px rgba(0, 0, 0, 0.5);
}

.title-head h1 .ttl_h {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 10px;
}

.title-head h1 .kv_btn_ico {
  margin-bottom: 10px;
}

.title-head h1 p {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
}

.title-head.sizeS:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  opacity: 0.2;
  display: block;
}

.title-head.sizeS .link_list {
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  flex-wrap: wrap;
}

.title-head.sizeS .inner {
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}

.title-head.sizeS li a {
  text-decoration: none;
  color: #fff;
}

.title-head.sizeS .ttl_area_list {
  display: -ms-flex;
  display: flex;
  color: #fff;
  width: 100%;
}

.title-head.sizeS .ttl_area_list .page_ttl {
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  position: relative;
  margin-bottom: 15px;
}

.title-head.sizeS .ttl_area_list .page_ttl img {
  margin-right: 10px;
}

.title-head.sizeS .ttl_area_list .page_ttl:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  right: -38px;
}

.title-head.sizeS .ttl_area_list .page_ttl a {
  pointer-events: none;
  color: #fff;
}

.title-head.sizeS .ttl_area_list .page_ttl.line_none {
  position: static;
}

.title-head.sizeS .ttl_area_list .ttl_list {
  margin-left: 45px;
}

.title-head.sizeS .ttl_area_list .ttl_list li {
  position: relative;
  margin-right: 40px;
}

.title-head.sizeS .ttl_area_list .ttl_list li:after {
  position: absolute;
  content: "／";
  top: 1px;
  right: -28px;
  color: #fff;
}

.title-head.sizeS .ttl_area_list .ttl_list li a {
  pointer-events: none;
}

.title-head.sizeS .ttl_area_list .ttl_list li:last-of-type {
  position: static;
}

.title-head.sizeS .ttl_area_list .ttl_list li:last-of-type:after {
  position: static;
  content: "";
}

.title-head .page_ttl_ico {
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}

.title-head .page_ttl_ico img {
  margin-right: 15px;
}

.title-head .page_ttl_ico p, .title-head .page_ttl_ico a {
  color: #fff;
  font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
  .title-head {
    margin-top: 85px;
  }
  .title-head .inner {
    height: 100%;
  }
  .title-head .inner h1 {
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
  }
  .title-head .inner h1 .kv_btn_ico {
    width: 50%;
  }
  .title-head.sizeS .ttl_area_list {
    flex-direction: column;
  }
  .title-head.sizeS .ttl_area_list .ttl_list {
    margin-left: 0;
  }
  .title-head.sizeS .ttl_area_list .ttl_list p {
    margin-right: 10px;
  }
  .title-head.sizeS .ttl_area_list .ttl_list li:after {
    content: "";
  }
  .title-head.sizeS .ttl_area_list .page_ttl p {
    margin-right: 10px;
  }
  .title-head.sizeS .ttl_area_list .page_ttl:after {
    position: inherit;
    content: "";
    right: -5px;
  }
  .title-head.sizeS .link_list li.ct1 {
    position: relative;
    margin-left: 35px;
    margin-top: 10px;
    width: 100%;
  }
  .title-head.sizeS .link_list li.ct1:after {
    content: "";
    width: 25px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 1.3rem;
    left: -35px;
  }
  .title-head.sizeS .link_list li.ct2 {
    position: relative;
    padding-right: 25px;
  }
  .title-head.sizeS .link_list li.ct2.ct2_1st {
    margin-left: 20px;
  }
  .title-head.sizeS .link_list li.ct2:last-of-type {
    padding-right: 0;
  }
  .title-head.sizeS .link_list li.ct2:before {
    position: absolute;
    content: "／";
    top: 1px;
    left: -18px;
    color: #fff;
  }
}
@media only screen and (min-width: 768px) {
  .title-head {
    height: 390px;
  }
  .title-head h1 {
    max-width: 230px;
    width: 100%;
    height: 230px;
    padding: 25px 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .title-head h1 .ttl_h {
    font-size: 1.9rem;
    margin-bottom: 25px;
  }
  .title-head h1 .kv_btn_ico {
    width: auto;
    margin-bottom: 25px;
  }
  .title-head h1 .kv_btn_ico img {
    width: 100%;
  }
  .title-head h1 p {
    font-size: 1.4rem;
  }
  .title-head.sizeS {
    height: 100px;
  }
  .title-head.sizeS .link_list {
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .title-head.sizeS .link_list li:first-of-type {
    margin-right: 35px;
  }
  .title-head.sizeS .link_list li.ct1 {
    position: relative;
    margin-left: 45px;
    margin-right: 45px;
  }
  .title-head.sizeS .link_list li.ct1:after {
    content: "";
    width: 30px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 1.5rem;
    left: -38px;
  }
  .title-head.sizeS .link_list li.ct2 {
    position: relative;
    padding-right: 40px;
  }
  .title-head.sizeS .link_list li.ct2:last-of-type {
    padding-right: 0;
  }
  .title-head.sizeS .link_list li.ct2:before {
    position: absolute;
    content: "／";
    top: 1px;
    left: -30px;
    color: #fff;
  }
  .title-head.sizeS .link_list li a {
    transition: all 0.3s ease-out;
  }
  .title-head.sizeS .link_list li a:hover {
    color: #00507d;
  }
  .title-head.sizeS .ttl_area_list {
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
  }
  .title-head.sizeS .ttl_area_list .page_ttl {
    margin-bottom: 0;
  }
  .title-head.sizeS .ttl_area_list .page_ttl a {
    pointer-events: none;
  }
  .title-head.sizeS .ttl_area_list .ttl_list {
    display: -ms-flex;
    display: flex;
  }
  .title-head.sizeS .ttl_area_list .ttl_list a {
    pointer-events: none;
  }
  .title-head .page_ttl_ico img {
    margin-right: 30px;
  }
  .title-head .page_ttl_ico a, .title-head .page_ttl_ico p {
    font-size: 1.8rem;
  }
}
.main_h2 {
  font-size: 2.8rem;
  color: #fff;
  line-height: 1.3;
  font-weight: bold;
}

.main_h2 span {
  font-size: 2rem;
  margin-left: 20px;
}

.main_h2 span b {
  font-size: 2.4rem;
  font-weight: 400;
}

.main_h3 {
  font-size: 2.8rem;
  color: #000;
  line-height: 1.3;
  font-weight: bold;
}

.main_h3_s {
  font-size: 2.4rem;
  color: #000;
  line-height: 1.3;
  font-weight: bold;
}

.news_h3 {
  font-size: 2.4rem;
  color: #fff;
  font-weight: bold;
  background-color: #00507d;
  line-height: 1.4;
  padding: 5px 10px;
  margin-bottom: 15px;
}

main h4 {
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.fs-m {
  font-size: 2.4rem;
  line-height: 1.4;
}

@media only screen and (min-width: 768px) {
  .main_h2 {
    font-size: 3.5rem;
  }
  .main_h2 span {
    font-size: 2.8rem;
    margin-left: 50px;
  }
  .main_h2 span b {
    font-size: 3.2rem;
  }
  .main_h3 {
    font-size: 3.5rem;
  }
  .main_h3_s {
    font-size: 3.2rem;
  }
  .news_h3 {
    font-size: 3rem;
    padding: 8px 15px 8px 20px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .fs-m {
    font-size: 2.8rem;
  }
}
/*
*  animation
* ----------------------------------------*/
@keyframes scrollAnimeSp {
  0% {
    height: 0;
  }
  40% {
    height: 25px;
  }
  100% {
    height: 25px;
  }
}
@keyframes scrollAnimePc {
  0% {
    height: 0;
  }
  40% {
    height: 40px;
  }
  100% {
    height: 40px;
  }
}
@keyframes sdb {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slide-bottom {
  0% {
    opacity: 0;
    transform: translateY(-45%);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%);
  }
}
@keyframes slide-left {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 上からフェードイン */
.slide-top {
  opacity: 0;
  transform: translate(0, -20px);
  transition: all 1s ease-out;
}

/* 下からフェードイン */
.slide-bottom {
  opacity: 0;
  animation-name: slide-bottom;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

/* 左からフェードイン */
.slide-left {
  opacity: 0;
  animation-name: slide-left;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

/* 右からフェードイン */
.slide-right {
  opacity: 0;
  transform: translate(20px, 0);
  transition: all 1s ease-out;
}

/* ==============================================================
*  PAGE（各ページ固有のスタイル）
* ============================================================ */
/*
*  top
* ----------------------------------------*/
#top .mv_area {
  position: relative;
  height: 100vh;
}

#top .mv_area .full div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  margin: 0;
}

#top .mv_area .full div.slide1 {
  background-image: url(../../img/mv01.jpg);
}

#top .mv_area .full div.slide2 {
  background-image: url(../../img/mv02.jpg);
}

#top .mv_area .full div.slide3 {
  background-image: url(../../img/mv03.jpg);
}

#top .mv_area .full div.slide4 {
  background-image: url(../../img/mv04.jpg);
}

#top .mv_area .full div.slide5 {
  background-image: url(../../img/mv05.jpg);
}

#top .mv_area .kv_menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1100px;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

#top .mv_area .kv_menu .kv_btn_area {
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  -ms-align-items: stretch;
  align-items: stretch;
  list-style-type: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  line-height: 1.5;
}

#top .mv_area .kv_menu .kv_btn_area li {
  width: calc((100% - 15px) / 2);
  background-color: #fff;
  border-radius: 19px;
  margin-bottom: 15px;
}

#top .mv_area .kv_menu .kv_btn_area li a {
  padding: 15px 10px;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  color: #000;
  text-align: center;
  transition: all 0.3s ease-out;
}

#top .mv_area .kv_menu .kv_btn_area li h2 {
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 10px;
}

#top .mv_area .kv_menu .kv_btn_area li .kv_btn_ico {
  margin-bottom: 10px;
}

#top .mv_area .kv_menu .kv_btn_area li p {
  font-size: 1rem;
  line-height: 1.2;
}

#top .mv_area .kv_menu .kv_copy {
  color: #fff;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
  -moz-text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5), 0px 0px 4px rgba(0, 0, 0, 0.5), 1px 1px 6px rgba(0, 0, 0, 0.4);
  -webkit-text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5), 0px 0px 4px rgba(0, 0, 0, 0.5), 1px 1px 6px rgba(0, 0, 0, 0.4);
  -ms-text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5), 0px 0px 4px rgba(0, 0, 0, 0.5), 1px 1px 6px rgba(0, 0, 0, 0.4);
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5), 0px 0px 4px rgba(0, 0, 0, 0.5), 1px 1px 6px rgba(0, 0, 0, 0.4);
}

#top .news_area .news_area_inner {
  padding: 10px 15px 15px;
}

#top .news_area .news_area_inner .news_h {
  font-family: "Roboto", sans-serif;
  font-size: 2.4rem;
  line-height: 1.5;
}

#top .news_area .news_area_inner .news_ttl_area {
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#top .news_area .news_area_inner .news_ttl_area div {
  display: -ms-flex;
  display: flex;
  font-size: 1.4rem;
}

#top .news_area .news_area_inner .news_ttl_area div dt {
  margin-right: 10px;
}

#top .news_area .news_area_inner .news_ttl_area div dd a {
  display: block;
  text-decoration: none;
  color: #000;
}

#top .top_privacy {
  padding: 50px 0 50px;
}

#top .top_privacy .top_privacy_h {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  #top .mv_area .kv_menu .kv_btn_area li .kv_btn_ico {
    height: 53px;
  }
  #top .mv_area .kv_menu .kv_btn_area li .kv_btn_ico img {
    height: 100%;
  }
  #top .news_area {
    margin-top: 80px;
  }
  #top .news_area .news_area_inner .news_h {
    margin-bottom: 5px;
  }
  #top .news_area .news_area_inner .news_h span {
    border-bottom: 1px solid #000;
  }
}
@media only screen and (min-width: 768px) {
  #top .mv_area .kv_menu .kv_btn_area {
    width: 60.9%;
    max-width: 670px;
    margin-bottom: 15px;
  }
  #top .mv_area .kv_menu .kv_btn_area li {
    width: 28.5%;
    max-width: 193px;
    height: 185px;
    margin-bottom: 30px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease 0s;
  }
  #top .mv_area .kv_menu .kv_btn_area li:nth-of-type(n + 4) {
    margin-bottom: 0;
  }
  #top .mv_area .kv_menu .kv_btn_area li:nth-of-type(n + 4) h2 {
    margin-bottom: 8px;
  }
  #top .mv_area .kv_menu .kv_btn_area li:nth-of-type(n + 4) .kv_btn_ico {
    margin-bottom: 10px;
  }
  #top .mv_area .kv_menu .kv_btn_area li:nth-of-type(n - 4) .kv_btn_ico {
    margin-bottom: 20px;
  }
  #top .mv_area .kv_menu .kv_btn_area li.ico_shisetu .kv_btn_ico {
    margin-bottom: 8px;
  }
  #top .mv_area .kv_menu .kv_btn_area li.ico_sports .kv_btn_ico, #top .mv_area .kv_menu .kv_btn_area li.ico_event .kv_btn_ico {
    margin-bottom: 15px;
  }
  #top .mv_area .kv_menu .kv_btn_area li.ico_tetuduki h2 {
    margin-bottom: 25px;
  }
  #top .mv_area .kv_menu .kv_btn_area li.ico_tetuduki .kv_btn_ico {
    margin-bottom: 25px;
  }
  #top .mv_area .kv_menu .kv_btn_area li.ico_tetuduki .kv_btn_ico img {
    width: 80%;
  }
  #top .mv_area .kv_menu .kv_btn_area li:hover {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
    transform: translateY(-0.1875em);
  }
  #top .mv_area .kv_menu .kv_btn_area li a {
    padding: 25px 20px;
    height: 100%;
    justify-content: space-between;
  }
  #top .mv_area .kv_menu .kv_btn_area li h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  #top .mv_area .kv_menu .kv_btn_area li .kv_btn_ico {
    margin-bottom: 15px;
  }
  #top .mv_area .kv_menu .kv_btn_area li p {
    font-size: 1.1rem;
  }
  #top .mv_area .kv_menu .kv_copy {
    font-size: 6.2rem;
    letter-spacing: 0.08rem;
  }
  #top .news_area .news_area_inner {
    padding: 15px 20px 30px;
    display: -ms-flex;
    display: flex;
  }
  #top .news_area .news_area_inner .news_h {
    font-size: 3rem;
    padding-right: 15px;
    border-right: 2px solid #000;
  }
  #top .news_area .news_area_inner .news_ttl_area {
    margin-left: 15px;
  }
  #top .news_area .news_area_inner .news_ttl_area div dt {
    margin-right: 15px;
  }
  #top .news_area .news_area_inner .news_ttl_area div dd a:hover {
    text-decoration: underline;
  }
  #top .top_privacy {
    padding: 50px 0 65px;
  }
  #top .top_privacy .top_privacy_h {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}
/*
*  under
* ----------------------------------------*/
#under .page_link_sec .inner {
  padding: 25px 0 40px;
}

#under .page_link_sec .page_link_area ul {
  list-style-type: none;
}

#under .page_link_sec .page_link_area ul li {
  margin-bottom: 10px;
}

#under .page_link_sec .page_link_area ul li a {
  text-decoration: none;
  color: #000;
  line-height: 1.4;
}

#under .page_link_sec .page_link_area ul li.link_ch {
  position: relative;
  display: block;
  padding: 0 3px;
}

#under .page_link_sec .page_link_area ul li.link_ch:before {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 16px;
  height: 1px;
  background-color: #000;
}

#under .page_link_sec .page_link_area ul li.link_ch a {
  padding-left: 20px;
}

#under .page_news {
  padding: 25px 0 20px;
}

#under .page_news.page_under {
  padding: 0 0 30px;
}

#under .page_news .news_box {
  border: 1px solid #3e3a39;
}

#under .page_news .news_box .ttl {
  display: inline-block;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.25rem;
  background-color: #3e3a39;
  padding: 1px 10px;
}

#under .page_news .news_box .news_inner {
  padding: 8px 12px 12px;
}

#under .page_news .news_box .link_txt {
  color: #e60012;
}

#under .main_h2_bg {
  background-color: #3e3a39;
  padding: 10px 0 10px;
  margin-bottom: 40px;
}

#under .main_h3 {
  margin-bottom: 10px;
}

#under .main_h3_s {
  margin-bottom: 10px;
}

#under .lead_area .inner {
  padding: 25px 0 15px;
}

#under .lead_sub {
  font-weight: bold;
  margin-bottom: 15px;
}

#under .lead_txt {
  font-size: 2.8rem;
  font-family: Century, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 15px;
}

#under .inner_sec {
  margin-bottom: 45px;
}

#under .inner_sec:last-of-type {
  margin-bottom: 45px;
}

#under main.shinsei .inner_sec {
  margin-bottom: 35px;
}

#under main.shinsei .inner_sec:last-of-type {
  margin-bottom: 45px;
}

#under .txt_area p {
  margin-bottom: 15px;
}

#under .txt_area p:last-of-type {
  margin-bottom: 0;
}

#under .link_inner {
  padding-top: 70px;
  margin-top: -70px;
}

#under .btm_link {
  margin-right: 10px;
  margin-bottom: 20px;
}

#under .btm_link a {
  text-decoration: none;
  color: #00507d;
}

#under .o_shinsei {
  margin-bottom: 50px;
}
#under .o_shinsei span.fs_lb {
  font-size: 2rem;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  #under .page_link_sec .page_link_area ul {
    border-bottom: 1px dashed #000;
    border-left: 3px solid #000;
    padding-left: 15px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) {
  #under .title-head .inner {
    height: 100%;
  }
  #under .page_link_sec .inner {
    padding: 50px 0 80px;
  }
  #under .page_link_sec .page_link_area {
    display: -ms-flex;
    display: flex;
  }
  #under .page_link_sec .page_link_area ul {
    width: calc((100% - 45px) / 3);
    max-width: 305px;
    margin-right: 15px;
  }
  #under .page_link_sec .page_link_area ul:last-of-type {
    margin-right: 0;
  }
  #under .page_link_sec .page_link_area ul li {
    margin-bottom: 20px;
  }
  #under .page_link_sec .page_link_area ul li a {
    transition: all 0.3s ease-out;
  }
  #under .page_link_sec .page_link_area ul li a:hover {
    color: #00507d;
  }
  #under .page_link_sec .page_link_area ul li.link_ch:before {
    width: 25px;
  }
  #under .page_link_sec .page_link_area ul li.link_ch a {
    padding-left: 35px;
  }
  #under .page_link_sec .page_link_area .level1 {
    border-left: 3px solid #000;
    padding-left: 25px;
  }
  #under .page_link_sec .page_link_area .level1 li.link_b {
    margin-bottom: 40px;
  }
  #under .page_link_sec .page_link_area .level2 {
    margin-left: 25px;
    margin-top: 4px;
  }
  #under .page_link_sec .page_link_area .level2 li {
    position: relative;
    display: -ms-flex;
    display: flex;
  }
  #under .page_link_sec .page_link_area .level2 li:first-of-type:after {
    content: "";
    width: 1px;
    height: calc(100% + 20px);
    background-color: #333;
    position: absolute;
    top: 1rem;
    left: -25px;
  }
  #under .page_link_sec .page_link_area .level2 li:first-of-type:before {
    content: "";
    width: 25px;
    height: 1px;
    background-color: #333;
    position: absolute;
    top: 1rem;
    left: -25px;
  }
  #under .page_link_sec .page_link_area .level2 li:not(:first-child):after {
    content: "";
    width: 1px;
    height: calc(100% + 20px);
    background-color: #333;
    position: absolute;
    top: 0;
    left: -25px;
  }
  #under .page_link_sec .page_link_area .level2 li:not(:first-child):before {
    content: "";
    width: 15px;
    height: 1px;
    background-color: #333;
    position: absolute;
    top: 1rem;
    left: -25px;
  }
  #under .page_link_sec .page_link_area .level2 li:last-of-type:after {
    content: "";
    width: 1px;
    height: 2rem;
    background-color: #333;
    position: absolute;
    top: -1rem;
    left: -25px;
  }
  #under .page_link_sec .page_link_area .level2 li:not(:last-child) {
    margin-bottom: 20px;
  }
  #under .page_link_sec .page_link_area .level2 li.lv2_1st:before {
    width: 120px;
    left: -129px;
  }
  #under .page_news {
    padding: 50px 0 40px;
  }
  #under .page_news.page_under {
    padding: 0 0 80px;
  }
  #under .page_news .news_box .ttl {
    letter-spacing: 0.45rem;
    padding: 2px 20px;
  }
  #under .page_news .news_box .news_inner {
    padding: 12px 18px 15px;
  }
  #under .page_news .news_box .link_txt:hover {
    color: #00507d;
  }
  #under .main_h2_bg {
    padding: 20px 0 20px;
    margin-bottom: 80px;
  }
  #under .main_h3 {
    margin-bottom: 15px;
  }
  #under .main_h3_s {
    margin-bottom: 15px;
  }
  #under main.sports .imp .main_h3 {
    margin-bottom: 25px;
  }
  #under .lead_area .inner {
    padding: 50px 0 20px;
  }
  #under .lead_sub {
    margin-bottom: 20px;
  }
  #under .lead_txt {
    font-size: 4rem;
    margin-bottom: 40px;
  }
  #under .inner_sec {
    margin-bottom: 90px;
  }
  #under .inner_sec:last-of-type {
    margin-bottom: 90px;
  }
  #under main.shinsei .inner_sec {
    margin-bottom: 70px;
  }
  #under main.shinsei .inner_sec:last-of-type {
    margin-bottom: 90px;
  }
  #under .txt_area p {
    margin-bottom: 20px;
  }
  #under .link_inner {
    padding-top: 200px;
    margin-top: -200px;
  }
  #under .btm_link {
    margin-bottom: 40px;
  }
  #under .btm_link a {
    transition: all 0.3s ease-out;
  }
  #under .btm_link a:hover {
    color: #231815;
  }
}
main.kegabyoki .title-head {
  background-image: url(../../kegabyoki/img/ttl_kegabyoki_img.jpg);
}

main.kegabyoki .tetsuduki_flow {
  margin: 25px 0 20px;
}

main.kegabyoki .tetsuduki_flow ul li {
  position: relative;
  margin-bottom: 35px;
  padding: 12px;
  border: 1px solid #0076c3;
  border-radius: 10px;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 400;
  text-align: center;
  background: #0076c3;
}

main.kegabyoki .tetsuduki_flow ul li:after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  right: 0;
  bottom: -24px;
  width: 18px;
  height: 25px;
  background-image: url(../../kegabyoki/img/arw_b.png);
  margin-left: auto;
  margin-right: auto;
}

main.kegabyoki .tetsuduki_flow ul li.no_bg,
main.kegabyoki .tetsuduki_flow ul li:last-of-type {
  margin-bottom: 0;
}

main.kegabyoki .tetsuduki_flow ul li:last-of-type:after {
  display: none;
}

main.kegabyoki .tetsuduki_flow ul li.no_bg {
  border: none;
  background: none;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-self: flex-end;
}
main.kegabyoki .tetsuduki_flow ul li.no_bg div {
  flex-basis: 47%;
}
main.kegabyoki .tetsuduki_flow ul li.no_bg div h5 {
  font-size: 2rem;
}
main.kegabyoki .tetsuduki_flow ul li.no_bg div ul {
  background: #fff;
}
main.kegabyoki .tetsuduki_flow ul li.no_bg div ul li {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.6;
  padding: 15px 30px;
}
main.kegabyoki .tetsuduki_flow ul li.no_bg div ul li span {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1;
}
main.kegabyoki .tetsuduki_flow ul li.no_bg div ul li.notice {
  background: none;
  border: none;
  color: #333;
  text-align: left;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 200;
}
main.kegabyoki .tetsuduki_flow ul li.no_bg div ul a {
  color: #fff;
  text-decoration: underline;
}
main.kegabyoki .tetsuduki_flow ul li.no_bg div.arrow {
  background: url(../../kegabyoki/img/arw_b_l.png) center bottom no-repeat;
  padding-bottom: 60px;
}
main.kegabyoki .tetsuduki_flow ul li.no_bg div.arrow:before {
  content: "";
  display: block;
  background: url("../../kegabyoki/img/arw_b.png") center bottom no-repeat;
  height: 50px;
  width: 100%;
  margin-bottom: 10px;
  margin-top: -10px;
}

main.kegabyoki .tetsuduki_flow ul li.no_bg:after {
  display: none;
}

main.kegabyoki .tetsuduki_flow ul li.no_arw {
  margin-bottom: 0 !important;
}

main.kegabyoki .tetsuduki_flow ul li.no_arw:after {
  display: none;
}

main.kegabyoki .tetsuduki_flow ul li.bg_bk {
  background-color: #3e3a39;
  border: 1px solid #3e3a39;
}

main.kegabyoki .tetsuduki_flow ul li.bg_bk:after {
  background-image: url(../../kegabyoki/img/arw_bk.png);
}

main.kegabyoki .tetsuduki_flow ul li span {
  font-size: 1.8rem;
}

main.kegabyoki h4.box {
  display: inline-block;
  border: solid #333 1px;
  line-height: 1.8;
  padding: 15px 25px;
}

ul.bl_r {
  max-width: 764px;
  position: relative;
}
ul.bl_r li {
  width: 350px;
  position: relative;
  right: 0;
  left: 100%;
  transform: translateX(-100%);
}

main.kegabyoki .btn a {
  display: inline-block;
  margin: 15px auto;
  padding: 15px 30px;
  border: 1px solid #0076c3;
  border-radius: 10px;
  color: #fff !important;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  background: #0076c3;
}
main.kegabyoki .btn a:hover {
  opacity: 0.7;
}

main.kegabyoki .btn_area {
  display: flex;
  text-align: center;
}
main.kegabyoki .btn_area a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px;
  padding: 30px;
  border: 1px solid #0076c3;
  border-radius: 10px;
  color: #fff !important;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
  background: #0076c3;
}

main.kegabyoki .btn2 a {
  display: inline-block;
  margin: 15px auto;
  padding: 30px;
  border: 1px solid #0076c3;
  border-radius: 10px;
  color: #fff !important;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
  background: #0076c3;
}
main.kegabyoki .btn2 a:hover {
  opacity: 0.7;
}

main.kegabyoki .btn3 a {
  display: inline-block;
  margin: 15px auto;
  padding: 20px 100px;
  border: 1px solid #0076c3;
  border-radius: 10px;
  color: #fff !important;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
  background: #0076c3;
}
main.kegabyoki .btn3 a:hover {
  opacity: 0.7;
}

.link_red_txt {
  color: #e60012;
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  main.kegabyoki .btn_area {
    display: block;
  }
  main.kegabyoki .btn_area a {
    display: block;
    margin: 10px auto;
    width: 90%;
  }
  main.kegabyoki .btn a {
    width: 60%;
  }
  main.kegabyoki .btn2 {
    margin: 0 auto;
    width: 80%;
  }
  main.kegabyoki .tetsuduki_flow ul li:after {
    background-position: center bottom;
  }
  main.kegabyoki .tetsuduki_flow ul li.no_bg div.arrow {
    padding-bottom: 0;
  }
  main.kegabyoki .tetsuduki_flow ul li.no_bg div.arrow h5 {
    font-size: 1.6rem;
  }
  main.kegabyoki .tetsuduki_flow ul li.no_bg div.arrow ul li {
    font-size: 1.6rem;
    line-height: 1.4;
    padding: 10px 5px;
    margin-bottom: 60px;
  }
  main.kegabyoki .tetsuduki_flow ul li.no_bg div.arrow ul li span {
    font-size: 1.4rem;
    line-height: 1;
  }
  main.kegabyoki .tetsuduki_flow ul li.no_bg div.arrow ul li.notice {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  main.kegabyoki .tetsuduki_flow ul li.no_bg div.arrow ul li:after {
    background-position: center bottom;
    bottom: -50px;
    width: 34px;
    height: 48px;
  }
  main.kegabyoki .tetsuduki_flow ul li.bg_bk {
    margin-bottom: 60px;
  }
  main.kegabyoki .tetsuduki_flow ul li.bg_bk:after {
    bottom: -50px;
    width: 34px;
    height: 48px;
  }
}
@media only screen and (min-width: 768px) {
  main.kegabyoki .title-head {
    background-image: url(../../kegabyoki/img/ttl_kegabyoki_img.jpg);
  }
  main.kegabyoki .tetsuduki_flow {
    margin: 50px 0 40px;
  }
  main.kegabyoki .tetsuduki_flow ul {
    max-width: 764px;
  }
  main.kegabyoki .tetsuduki_flow ul li {
    margin-bottom: 60px;
    padding: 12px 0 13px;
    font-size: 2.8rem;
    line-height: 1.8;
  }
  main.kegabyoki .tetsuduki_flow ul li:after {
    bottom: -49px;
    height: 50px;
    width: 34px;
  }
  main.kegabyoki .tetsuduki_flow ul li span {
    font-size: 2rem;
  }
}
main.shinsei .main_h3 {
  font-weight: bold;
}

main.shinsei .shinsei_note_area {
  background-color: #fffde5;
  padding: 15px 12px;
  border-radius: 12px;
}

main.shinsei .shinsei_note_area .note_ttl {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.4;
  color: #00507d;
  margin-bottom: 10px;
}

main.shinsei .shinsei_note_area .ol {
  font-weight: bold;
}

main.shinsei .shinsei_note_area .disc_list {
  font-weight: normal;
  margin-top: 8px;
}

main.shinsei .item .disc_list {
  margin-left: 25px;
}

main.shinsei .item .note_txt {
  margin-left: 15px;
}

main.shinsei .img_area {
  width: 95%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  margin-bottom: 15px;
}

main.shinsei .btm_link {
  margin-right: 10px;
  margin-bottom: 20px;
}

main.shinsei .btm_link a {
  text-decoration: none;
  color: #00507d;
}

main.shinsei .date_2col {
  margin-bottom: 25px;
}

main.shinsei .date_2col .data_table {
  width: 100%;
  margin-bottom: 20px;
}

main.shinsei .date_2col .data_table table {
  width: 100%;
  line-height: 1.4;
}

main.shinsei .date_2col .data_table table tr:nth-child(odd) td {
  background-color: #f2f2f3;
}

main.shinsei .date_2col .data_table table th {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
}

main.shinsei .date_2col .data_table table th span {
  padding: 5px;
  display: block;
  width: 100%;
}

main.shinsei .date_2col .data_table table th:first-of-type span {
  margin-right: 10px;
  background-color: #3e3a39;
}

main.shinsei .date_2col .data_table table th:nth-of-type(2) span {
  margin-left: 10px;
  background-color: #00507d;
}

main.shinsei .date_2col .data_table table td {
  text-align: center;
  padding: 12px 10px;
  border-bottom: 1px solid #aaa;
}

main.shinsei .date_2col .data_table table td:first-of-type {
  color: #3e3a39;
}

main.shinsei .date_2col .data_table table td:nth-of-type(2) {
  color: #00507d;
}

main.shinsei .note_list.indent_l li {
  padding-left: 3rem;
  text-indent: -3rem;
}

@media only screen and (max-width: 767px) {
  main.shinsei .date_2col .data_table table th span {
    width: 95%;
  }
}
@media only screen and (min-width: 768px) {
  main.shinsei .shinsei_note_area {
    padding: 25px 20px;
  }
  main.shinsei .shinsei_note_area .note_ttl {
    margin-bottom: 20px;
  }
  main.shinsei .item .disc_list {
    margin-left: 50px;
  }
  main.shinsei .item .note_txt {
    margin-left: 32px;
  }
  main.shinsei .img_area {
    width: 90%;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  main.shinsei .btm_link {
    margin-bottom: 40px;
  }
  main.shinsei .btm_link a {
    transition: all 0.3s ease-out;
  }
  main.shinsei .btm_link a:hover {
    color: #231815;
  }
  main.shinsei .date_2col {
    display: -ms-flex;
    display: flex;
    margin-bottom: 50px;
  }
  main.shinsei .date_2col .data_table {
    width: 50%;
    margin-bottom: 0;
  }
  main.shinsei .date_2col .data_table:first-of-type {
    padding-right: 50px;
    border-right: 1px dotted #aaa;
  }
  main.shinsei .date_2col .data_table:last-of-type {
    padding-left: 50px;
  }
  main.shinsei .date_2col .data_table table {
    width: 100%;
  }
  main.shinsei .date_2col .data_table table th {
    font-size: 1.8rem;
  }
  main.shinsei .date_2col .data_table table th span {
    padding: 8px;
    width: calc(100% - 14px);
  }
  main.shinsei .date_2col .data_table table th:first-of-type span {
    margin-right: 14px;
  }
  main.shinsei .date_2col .data_table table th:nth-of-type(2) span {
    margin-left: 14px;
  }
  main.shinsei .date_2col .data_table table td {
    padding: 22px 6px;
    font-size: 1.8rem;
    letter-spacing: -0.01rem;
  }
}
main.kakikata .ttl_link {
  margin-bottom: 10px;
}

main.kakikata .ttl_link .ttl_link_list {
  width: 70%;
}

main.kakikata .ttl_link .ttl_link_list li {
  margin-bottom: 10px;
}

main.kakikata .ttl_link .ttl_link_list li a {
  display: block;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 5px;
  background-color: #00507d;
}

main.kakikata .ttl_link .ttl_link_list li a img {
  margin-right: 5px;
  margin-bottom: 3px;
}

main.kakikata .shinsei_img {
  margin-top: 25px;
}

main.kakikata .link_100 {
  width: 100%;
}

main.kakikata .link_100 a {
  display: block;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  padding: 5px;
  background-color: #00507d;
  border: 1px solid #00507d;
}

main.kakikata .btm_link {
  margin-right: 10px;
  margin-bottom: 20px;
}

main.kakikata .btm_link a {
  text-decoration: none;
  color: #00507d;
}

@media only screen and (min-width: 768px) {
  main.kakikata .ttl_link {
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    margin-bottom: 20px;
  }
  main.kakikata .ttl_link .ttl_link_list {
    display: -ms-flex;
    display: flex;
    /* justify-content: space-between; */
    width: 65%;
  }
  main.kakikata .ttl_link .ttl_link_list li {
    width: calc((100% - 20px) / 3);
    margin-bottom: 0;
    margin-right: 10px;
  }
  main.kakikata .ttl_link .ttl_link_list li a {
    transition: all 0.3s ease-out;
    font-size: 1.6rem;
    padding: 5px 8px;
  }
  main.kakikata .ttl_link .ttl_link_list li a:hover {
    opacity: 0.7;
  }
  main.kakikata .shinsei_img {
    margin-top: 50px;
  }
  main.kakikata .link_100 a {
    font-size: 1.8rem;
    padding: 8px;
    transition: all 0.3s ease-out;
  }
  main.kakikata .link_100 a:hover {
    color: #00507d;
    background-color: #fff;
  }
  main.kakikata .btm_link {
    margin-bottom: 40px;
  }
  main.kakikata .btm_link a {
    transition: all 0.3s ease-out;
  }
  main.kakikata .btm_link a:hover {
    color: #231815;
  }
}
main.wellness .title-head {
  background-image: url(../../wellness/img/ttl_wellness_img.jpg);
}

@media only screen and (min-width: 768px) {
  main.wellness .title-head {
    background-image: url(../../wellness/img/ttl_wellness_img.jpg);
  }
}
main.shisetu .title-head {
  background-image: url(../../shisetu/img/ttl_shisetu_img.jpg);
}

main.shisetu .tetsudzuki_area {
  font-size: 1.6rem;
  font-weight: bold;
}

main.shisetu .acc_close {
  font-size: 1.6rem;
  margin-bottom: 45px;
  line-height: 1.2;
}

main.shisetu .acc_close img {
  margin-right: 10px;
}

main.shisetu .search_area {
  margin-bottom: 45px;
}

main.shisetu .search_area .search_area_ttl {
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

main.shisetu .search_area .search_area_ttl h3 {
  position: relative;
  font-size: 2.6rem;
  color: #000;
  line-height: 1.3;
  font-weight: 500;
  padding-left: 38px;
}

main.shisetu .search_area .search_area_ttl h3:before {
  content: "";
  position: absolute;
  display: block;
  background-image: url(../../shisetu/img/ico_shisetu_search.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 28px;
  height: 28px;
  left: 0;
  top: 0;
}

main.shisetu .search_area .search_area_ttl .ico img {
  margin-right: 15px;
}

main.shisetu .area_link {
  margin-bottom: 45px;
  flex-wrap: wrap;
  display: -ms-flex;
  display: flex;
}

main.shisetu .area_link li {
  position: relative;
  margin-bottom: 8px;
  padding-right: 17px;
  line-height: 1.4;
}

main.shisetu .area_link li:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 28px;
  height: 37px;
  background-image: url(../../shisetu/img/ico_slash.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  top: -1px;
  right: -15px;
  padding-left: 5px;
}

main.shisetu .area_link li:last-of-type {
  position: static;
  content: none;
}

main.shisetu .area_link li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-synthesis: 2rem;
}

main.shisetu .area_label {
  display: -ms-flex;
  display: flex;
}

main.shisetu .area_label div {
  font-size: 1.6rem;
  font-weight: bold;
}

main.shisetu .area_label div:first-of-type {
  width: 50.7%;
  padding-left: 45px;
}

main.shisetu .area_label div:nth-of-type(2) {
  width: 49%;
}

main.shisetu .area_list {
  border-left: 3px solid #231815;
  padding-left: 12px;
  padding-top: 8px;
  margin-bottom: 35px;
}

main.shisetu .area_list.last {
  padding-top: 10px;
  padding-bottom: 5px;
}

main.shisetu .area_list .area_h {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.45;
  margin-bottom: 15px;
}

main.shisetu .area_list .area_h a {
  color: #231815;
  text-decoration: none;
}

main.shisetu .area_list dl .area_box {
  border-bottom: 1px dashed #231815;
  padding-bottom: 10px;
}

main.shisetu .area_list dl .area_box .sp_label {
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 1.45;
  margin-bottom: 15px;
}

main.shisetu .area_list dl .area_box dt {
  display: -ms-flex;
  display: flex;
}

main.shisetu .area_list dl .area_box dt .areaimg_area {
  margin-right: 15px;
}

main.shisetu .area_list dl .area_box dt .shisetu_name {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.4;
}

main.shisetu .area_list dl .area_box dt .shisetu_name a {
  color: #231815;
}

@media only screen and (max-width: 767px) {
  main.shisetu .search_area .search_area_ttl .ico img {
    width: 25%;
  }
  main.shisetu .search_area .search_area_ttl h3:before {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  main.shisetu .area_link li {
    padding-right: 26px;
  }
  main.shisetu .area_link li:after {
    width: 22px;
    height: 22px;
    right: 0;
  }
  main.shisetu .area_label {
    display: none;
  }
  main.shisetu .area_list dl .area_box {
    padding-bottom: 20px;
    padding-top: 20px;
  }
  main.shisetu .area_list dl .area_box .sp_label {
    margin-bottom: 5px;
  }
  main.shisetu .area_list dl .area_box dt {
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  main.shisetu .area_list dl .area_box dt .sp_label {
    width: 100%;
  }
  main.shisetu .area_list dl .area_box dt .areaimg_area {
    width: 26.6%;
    margin-right: 8px;
  }
  main.shisetu .area_list dl .area_box dt .shisetu_name {
    width: 69%;
    font-size: 1.7rem;
    line-height: 1.3;
  }
  main.shisetu .area_list dl .area_box dd .sp_label {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  main.shisetu .title-head {
    background-image: url(../../shisetu/img/ttl_shisetu_img.jpg);
  }
  main.shisetu .title-head .page_ttl_ico {
    transition: all 0.3s ease-out;
  }
  main.shisetu .title-head .page_ttl_ico p {
    transition: all 0.3s ease-out;
  }
  main.shisetu .title-head .page_ttl_ico:hover p {
    color: #00507d;
  }
  main.shisetu .tetsudzuki_area {
    font-size: 1.8rem;
  }
  main.shisetu .acc_close {
    font-size: 1.8rem;
    transition: all 0.3s ease-out;
    margin-bottom: 90px;
  }
  main.shisetu .acc_close:hover {
    color: #00507d;
  }
  main.shisetu .acc_close img {
    margin-right: 15px;
  }
  main.shisetu .search_area {
    margin-bottom: 90px;
  }
  main.shisetu .search_area .search_area_ttl {
    margin-bottom: 50px;
  }
  main.shisetu .search_area .search_area_ttl h3 {
    font-size: 3.5rem;
    padding-left: 53px;
  }
  main.shisetu .search_area .search_area_ttl h3:before {
    width: 43px;
    height: 43px;
  }
  main.shisetu .search_area .search_area_ttl .ico img {
    margin-right: 30px;
  }
  main.shisetu .area_link {
    margin-bottom: 90px;
  }
  main.shisetu .area_link li {
    margin-bottom: 10px;
    padding-right: 70px;
  }
  main.shisetu .area_link li:after {
    width: 28px;
    height: 37px;
    right: 21px;
  }
  main.shisetu .area_link li a {
    font-size: 2.4rem;
    transition: all 0.3s ease-out;
  }
  main.shisetu .area_link li a:hover {
    color: #00507d;
  }
  main.shisetu .area_label {
    margin-bottom: 30px;
  }
  main.shisetu .area_label div {
    font-size: 1.8rem;
  }
  main.shisetu .area_list {
    border-left: 3px solid #231815;
    padding-left: 40px;
    padding-top: 10px;
    margin-bottom: 70px;
  }
  main.shisetu .area_list.last {
    padding-top: 15px;
    padding-bottom: 11px;
  }
  main.shisetu .area_list .area_h {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
  main.shisetu .area_list .area_h a:hover {
    color: #00507d;
  }
  main.shisetu .area_list dl .area_box {
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    padding-bottom: 15px;
    padding-top: 15px;
  }
  main.shisetu .area_list dl .area_box:first-of-type {
    padding-top: 0;
  }
  main.shisetu .area_list dl .area_box .sp_label {
    display: none;
  }
  main.shisetu .area_list dl .area_box dt {
    width: 50.7%;
    -ms-align-items: center;
    align-items: center;
  }
  main.shisetu .area_list dl .area_box dt .areaimg_area {
    margin-right: 30px;
  }
  main.shisetu .area_list dl .area_box dt .areaimg_area:hover {
    opacity: 0.7;
  }
  main.shisetu .area_list dl .area_box dt .shisetu_name {
    font-size: 2.4rem;
  }
  main.shisetu .area_list dl .area_box dt .shisetu_name a:hover {
    color: #00507d;
  }
  main.shisetu .area_list dl .area_box dd {
    width: 49%;
  }
}
main.area .area_2col {
  margin-bottom: 25px;
}

main.area .area_2col .area_img {
  width: 80%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

main.area .area_2col .area_R .area_copy {
  font-size: 1.8rem;
  line-height: 1.4;
}

main.area .area_2col .area_R h3 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

main.area .area_2col .area_R .areaR_btn_area {
  margin-bottom: 15px;
}

main.area .area_2col .area_R .areaR_btn_area li {
  margin-bottom: 10px;
}

main.area .area_2col .area_R .areaR_btn_area li a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  transition: all 0.3s ease-out;
  text-align: center;
  padding: 5px;
  display: block;
  width: 100%;
  position: relative;
}

main.area .area_2col .area_R .areaR_btn_area .btn_b {
  background-color: #00507d;
  border: 1px solid #00507d;
}

main.area .area_2col .area_R .areaR_btn_area .btn_o {
  background-color: #e25022;
  border: 1px solid #e25022;
}

main.area .area_2col .area_R .areaR_btn_area .btn_o a:before {
  position: absolute;
  content: "";
  background-image: url(../../shisetu/img/ico_arwR.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 26px;
  height: 23px;
  top: 57%;
  transform: translateY(-43%);
  display: block;
}

main.area .area_2col .area_R .area_add {
  font-size: 1.6rem;
}

main.area .traffic_h {
  font-weight: bold;
}

main.area .train_h {
  position: relative;
}

main.area .train_h:before {
  position: absolute;
  content: "";
  background-image: url(../../shisetu/img/ico_shisetu_train.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 22px;
  top: 50%;
  transform: translateY(-45%);
  display: block;
}

main.area .train_h span {
  padding-left: 30px;
}

main.area .car_h {
  position: relative;
}

main.area .car_h:before {
  position: absolute;
  content: "";
  background-image: url(../../shisetu/img/ico_shisetu_car.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 18px;
  top: 50%;
  transform: translateY(-45%);
  display: block;
}

main.area .car_h span {
  padding-left: 30px;
}

main.area .bus_h {
  position: relative;
}

main.area .bus_h:before {
  position: absolute;
  content: "";
  background-image: url(../../shisetu/img/ico_shisetu_bus.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 16px;
  top: 50%;
  transform: translateY(-45%);
  display: block;
}

main.area .bus_h span {
  padding-left: 30px;
}

main.area .shisetu_link {
  border-left: 3px solid #231815;
  padding-left: 14px;
  padding-top: 7px;
  padding-bottom: 5px;
}

main.area .shisetu_link .shisetu_link_h {
  font-weight: bold;
  margin-bottom: 5px;
}

main.area .shisetu_link ul li {
  line-height: 1.4;
  margin-bottom: 5px;
}

main.area .shisetu_link ul li a {
  text-decoration: none;
  color: #231815;
  transition: all 0.3s ease-out;
}

@media only screen and (min-width: 768px) {
  main.area .area_2col {
    display: -ms-flex;
    display: flex;
    margin-bottom: 50px;
  }
  main.area .area_2col .area_img {
    margin-right: 50px;
    margin-left: 0;
    width: 31.8%;
    max-width: 350px;
    margin-bottom: 0;
  }
  main.area .area_2col .area_R {
    width: calc(100% - (31.8% + 50px));
    max-width: 700px;
  }
  main.area .area_2col .area_R .area_copy {
    font-size: 2.4rem;
    margin-bottom: 5px;
  }
  main.area .area_2col .area_R h3 {
    font-size: 3.4rem;
    margin-bottom: 28px;
  }
  main.area .area_2col .area_R .areaR_btn_area {
    display: -ms-flex;
    display: flex;
    margin-bottom: 30px;
  }
  main.area .area_2col .area_R .areaR_btn_area li {
    margin-right: 15px;
    width: 80%;
    max-width: 172px;
  }
  main.area .area_2col .area_R .areaR_btn_area li:last-of-type {
    margin-right: 0;
  }
  main.area .area_2col .area_R .areaR_btn_area li a {
    font-size: 1.6rem;
  }
  main.area .area_2col .area_R .areaR_btn_area .btn_b:hover a {
    color: #00507d;
    background-color: #fff;
  }
  main.area .area_2col .area_R .areaR_btn_area .btn_o:hover a {
    color: #e25022;
    background-color: #fff;
  }
  main.area .area_2col .area_R .areaR_btn_area .btn_o:hover a:before {
    background-image: url(../../shisetu/img/ico_arwR_o.png);
  }
  main.area .area_2col .area_R .area_add {
    font-size: 1.8rem;
  }
  main.area .traffic_h {
    font-size: 1.7rem;
  }
  main.area .shisetu_link {
    padding-left: 27px;
    padding-top: 8px;
    padding-bottom: 6px;
  }
  main.area .shisetu_link ul li {
    margin-bottom: 8px;
  }
  main.area .shisetu_link ul li a:hover {
    color: #00507d;
  }
}
main.sports .title-head {
  background-image: url(../../shisetu/img/ttl_sports_img.jpg);
}

main.sports .h_sns_2col {
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

main.sports .h_sns_2col .ico_area {
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}

main.sports .h_sns_2col .ico_area img {
  width: 60px;
  height: auto;
}

main.sports .gym_list .gym_ttl {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
}

main.sports .gym_list .gym_ttl span {
  font-size: 1.6rem;
  letter-spacing: normal;
}

main.sports .gym_list ul {
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-align-items: stretch;
  align-items: stretch;
  margin-bottom: 25px;
}

main.sports .gym_list ul li {
  width: calc((100% - 20px) / 3);
  margin-right: 10px;
  margin-bottom: 10px;
}

main.sports .gym_list ul li:nth-of-type(3n) {
  margin-right: 0;
}

main.sports .gym_list ul li img {
  width: 100%;
}

main.sports .gym_list ul li p {
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: -0.1rem;
  color: #fff;
  background-color: #595757;
  padding: 4px;
  height: 50px;
}

main.sports .gym_list .txt {
  font-size: 1.6rem;
  line-height: 1.8;
}

main.sports .imp_box_bg {
  background-color: #f2f2f3;
  padding-top: 35px;
  padding-bottom: 35px;
}

main.sports .imp .main_h3 {
  font-weight: bold;
  margin-bottom: 10px;
}

main.sports .imp .main_h3 span {
  font-size: 1.8rem;
}

main.sports .imp .ol {
  font-weight: bold;
  font-size: 1.6rem;
}

main.sports .imp .txt_area {
  font-size: 1.6rem;
}

main.sports .table_time {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.45;
  margin-bottom: 20px;
}

main.sports .table_time table {
  border: 0;
  width: 100%;
}

main.sports .table_time table tr {
  border-bottom: 1px solid #231815;
  border-top: 1px solid #231815;
}

main.sports .table_time table tr th, main.sports .table_time table tr td {
  padding: 6px 15px;
  text-align: left;
}

main.sports .table_time table tr th {
  width: 30%;
}

main.sports .oshirase {
  width: 678px;
  margin: 50px auto 190px;
}
main.sports .oshirase h2 {
  font-size: 35px;
  text-align: center;
  margin-bottom: 35px;
}
main.sports .oshirase p.ki {
  margin-top: 70px;
}
main.sports .oshirase p.txt_c {
  text-align: center;
}
main.sports .oshirase p.txt_r {
  text-align: right;
}
main.sports .oshirase p.date {
  font-size: 22px;
  text-align: center;
  margin: 50px auto;
}
main.sports .oshirase p.date span {
  font-size: 28px;
}
main.sports .oshirase .img_box {
  border-bottom: solid #22538E 1px;
  width: 678px;
  margin-top: 80px;
}
main.sports .oshirase .img_box p {
  display: flex;
  align-items: center;
  width: 100%;
  white-space: nowrap;
}
main.sports .oshirase .img_box p::after {
  content: "";
  width: 100%;
  border-top: 1px solid #22538E;
  margin-left: 20px;
}
main.sports .oshirase .img_box ul {
  padding: 25px 0 35px;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  main.sports .oshirase {
    width: 95%;
    margin: 50px auto 100px;
  }
  main.sports .oshirase h2 {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  main.sports .oshirase p {
    font-size: 16px;
  }
  main.sports .oshirase p.ki {
    margin-top: 40px;
  }
  main.sports .oshirase p.date {
    line-height: 1.4;
    font-size: 18px;
    width: 100%;
    white-space: nowrap;
    margin: 30px auto;
  }
  main.sports .oshirase p.date span {
    font-size: 22px;
  }
  main.sports .oshirase .img_box {
    width: 100%;
    margin: 80px auto 0;
  }
  main.sports .oshirase .img_box ul {
    padding: 25px 0 15px;
    display: block;
  }
  main.sports .oshirase .img_box li {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) {
  main.sports .h_sns_2col {
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
  }
  main.sports .h_sns_2col .logo_area {
    width: 63%;
    max-width: 610px;
  }
  main.sports .h_sns_2col .ico_area {
    margin-top: 0;
  }
  main.sports .h_sns_2col .ico_area img {
    margin-left: 20px;
    margin-right: 0;
    width: 80px;
    height: auto;
  }
  main.sports .h_sns_2col .ico_area a:hover {
    opacity: 0.7;
  }
  main.sports .gym_list .gym_ttl {
    font-size: 3.8rem;
  }
  main.sports .gym_list .gym_ttl span {
    font-size: 1.8rem;
    margin-left: 50px;
  }
  main.sports .gym_list ul {
    justify-content: flex-start;
    margin-bottom: 50px;
  }
  main.sports .gym_list ul li {
    width: calc((100% - 72px) / 5);
    margin-right: 18px;
    margin-bottom: 0;
  }
  main.sports .gym_list ul li:last-of-type {
    margin-right: 0;
  }
  main.sports .gym_list ul li p {
    font-size: 1.6rem;
    padding: 8px;
    height: auto;
  }
  main.sports .gym_list .txt {
    font-size: 1.8rem;
  }
  main.sports .imp_box_bg {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  main.sports .imp .main_h3 {
    margin-bottom: 25px;
  }
  main.sports .imp .main_h3 span {
    font-size: 1.8rem;
  }
  main.sports .imp .ol {
    font-size: 2rem;
  }
  main.sports .imp .note_txt {
    font-size: 1.6rem;
  }
  main.sports .imp .txt_area {
    font-size: 2rem;
  }
  main.sports .table_time {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  main.sports .table_time table tr th, main.sports .table_time table tr td {
    padding: 6px 15px;
    background-color: #fff;
  }
  main.sports .table_time table tr th {
    width: 16%;
  }
}
main.kiyaku .terms_h {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: Century, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  line-height: 1.45;
  margin-bottom: 15px;
}

main.kiyaku .teams_area {
  line-height: 1.5;
}

main.kiyaku .teams_area div {
  margin-bottom: 5px;
}

main.kiyaku .teams_area dt {
  font-weight: bold;
  margin-bottom: 3px;
}

@media only screen and (min-width: 768px) {
  main.kiyaku .terms_h {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  main.kiyaku .teams_area div {
    margin-bottom: 10px;
  }
  main.kiyaku .teams_area dt {
    margin-bottom: 5px;
  }
}
main.event .title-head {
  background-image: url(../../event/img/ttl_event_img.jpg);
}

main.event .event_link {
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto;
}

main.event .event_link li {
  width: calc((100% - 30px) / 3);
  margin-bottom: 15px;
  margin-right: 15px;
}

main.event .event_link li a {
  display: block;
  padding: 5px;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.6rem;
  background-color: #00507d;
  border: 1px solid #00507d;
  transition: all 0.3s ease-out;
  position: relative;
}

main.event .event_link li a:before {
  position: absolute;
  content: "";
  background-image: url(../../event/img/ico_arwR.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 26px;
  height: 23px;
  top: 13px;
  display: block;
}

main.event .event_link li a span {
  padding-left: 25px;
}

main.event .note_txt_2col .ico_area {
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  margin-top: 15px;
}

main.event .note_txt_2col .ico_area img {
  margin-right: 15px;
  width: 30px;
  height: auto;
}

main.event .note_txt_2col .ico_area img:last-of-type {
  width: 40px;
}

@media only screen and (max-width: 767px) {
  main.event .event_link li:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) {
  main.event .event_link {
    margin: 40px auto;
  }
  main.event .event_link li {
    width: calc((100% - 45px) / 4);
    max-width: 255px;
    margin-bottom: 20px;
  }
  main.event .event_link li:nth-of-type(4n) {
    margin-right: 0;
  }
  main.event .event_link li a {
    padding: 7px;
    font-size: 1.8rem;
  }
  main.event .event_link li a:hover {
    background-color: #fff;
    color: #00507d;
  }
  main.event .event_link li a:hover:before {
    background-image: url(../../event/img/ico_arwR_b.png);
  }
  main.event .note_txt_2col {
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
  }
  main.event .note_txt_2col .txt_area {
    width: 63%;
    max-width: 610px;
  }
  main.event .note_txt_2col .ico_area {
    margin-top: 0;
  }
  main.event .note_txt_2col .ico_area img {
    margin-left: 20px;
    margin-right: 0;
    width: 30px;
    height: auto;
  }
  main.event .note_txt_2col .ico_area img:last-of-type {
    width: 40px;
  }
}
main.area .plan_year {
  font-weight: bold;
  font-size: 2.2rem;
  color: #898989;
  margin-bottom: 20px;
}

main.area .plan_list {
  margin-bottom: 18px;
}

main.area .plan_list li {
  border-bottom: 1px dashed #231815;
  padding-top: 25px;
  padding-bottom: 25px;
}

main.area .plan_list li:first-of-type {
  padding-top: 0;
}

main.area .plan_list li.boder_none {
  border-bottom: none;
}

main.area .plan_list .plan_box {
  padding-left: 15px;
  border-left: 3px solid #231815;
}

main.area .plan_list .plan_ttl {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.4;
}

main.area .plan_list .plan_ttl small {
  font-size: 1.8rem;
  margin-right: 20px;
}

main.area .plan_list .plan_month {
  font-size: 1.8rem;
}

main.area .plan_list .plan_2col .plan_2col_txt {
  margin-bottom: 20px;
}

main.area .plan_list .plan_2col .plan_2col_txt table {
  font-size: 1.6rem;
  line-height: 1.4;
}

main.area .plan_list .plan_2col .plan_2col_txt table th, main.area .plan_list .plan_2col .plan_2col_txt table td {
  padding: 5px;
}

main.area .plan_list .plan_2col .plan_2col_txt table th {
  width: 27%;
}

main.area .plan_list .plan_img {
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  main.area .plan_ttl {
    display: -ms-flex;
    display: flex;
  }
  main.area .plan_ttl small {
    width: 18%;
  }
  main.area .plan_list .plan_2col .plan_2col_txt table tr {
    display: -ms-flex;
    display: flex;
    flex-direction: column;
  }
  main.area .plan_list .plan_2col .plan_2col_txt table th {
    width: 100%;
    padding-bottom: 0;
  }
  main.area .plan_list .plan_2col .plan_2col_txt table td {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 768px) {
  main.area .plan_year {
    font-size: 2.8rem;
    margin-bottom: 40px;
  }
  main.area .plan_list {
    margin-bottom: 35px;
  }
  main.area .plan_list li {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  main.area .plan_list .plan_box {
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 30px;
  }
  main.area .plan_list .plan_ttl {
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    width: 100%;
    font-size: 2.8rem;
    margin-bottom: 40px;
  }
  main.area .plan_list .plan_ttl small {
    font-size: 2.2rem;
    margin-right: 40px;
  }
  main.area .plan_list .plan_month {
    width: 100%;
    font-size: 2.2rem;
  }
  main.area .plan_list .plan_2col {
    width: 46.3%;
  }
  main.area .plan_list .plan_2col .plan_2col_txt {
    margin-bottom: 0;
  }
  main.area .plan_list .plan_2col .plan_2col_txt table {
    font-size: 1.8rem;
  }
  main.area .plan_list .plan_2col .plan_2col_txt table th {
    width: 120px;
  }
  main.area .plan_list .plan_img {
    max-width: 290px;
    margin-bottom: 30px;
  }
  main.area .plan_list .plan_img img {
    max-width: 100%;
  }
}
main.tetuduki .title-head {
  background-image: url(../../tetuduki/img/ttl_tetuduki_img.jpg);
}

main.tetuduki .kyufugaku {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 8px 15px;
  border-top: 1px solid #231815;
  border-bottom: 1px solid #231815;
  margin-top: 35px;
}

main.tetuduki .news_wrap dl div {
  border-bottom: 1px dashed #231815;
  padding: 8px 0;
}

main.tetuduki .news_wrap dl div:first-of-type {
  padding-top: 0;
}

main.tetuduki .news_wrap dl div a {
  color: black;
}

main.tetuduki .news_wrap dl div a dt, main.tetuduki .news_wrap dl div a dd {
  font-weight: 700;
  line-height: 1.5;
}

main.tetuduki .news_wrap dl div a dt {
  font-size: 1.6rem;
  margin-bottom: 3px;
}

main.tetuduki .news_wrap dl div a dd {
  font-size: 1.6rem;
}

@media only screen and (min-width: 768px) {
  main.tetuduki .title-head h1 .kv_btn_ico img {
    width: 80%;
  }
  main.tetuduki .title-head .page_ttl_ico img {
    width: 20%;
    max-width: 50px;
  }
  main.tetuduki .kyufugaku {
    font-size: 2rem;
    padding: 15px 30px;
    margin-top: 70px;
  }
  main.tetuduki .news_wrap dl div {
    padding: 15px 0;
  }
  main.tetuduki .news_wrap dl div a {
    transition: all 0.3s ease-out;
  }
  main.tetuduki .news_wrap dl div a:hover {
    color: #00507d;
  }
  main.tetuduki .news_wrap dl div a dt {
    margin-bottom: 5px;
  }
  main.tetuduki .news_wrap dl div a dd {
    font-size: 1.8rem;
  }
}
main.news .title-head {
  background-image: url(../../news/img/ttl_news_img.jpg);
}

main.news .title-head.sizeSbefore {
  opacity: 0.35;
}

main.news.article .article_area {
  margin-bottom: 45px;
}

main.news.article .article_area .date {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

main.news.article .article_area .news_ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  padding-bottom: 5px;
  border-bottom: 5px solid #3e3a39;
  margin-bottom: 20px;
}

main.news.article .article_area .txt_area a {
  color: #00507d;
  text-decoration: underline;
  word-break: break-all;
  transition: all 0.3s ease-out;
}

main.news.article .article_area .txt_area h1 {
  font-size: 2.8rem;
  color: #000;
  line-height: 1.3;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
}

main.news.article .article_area .txt_area h2 {
  font-size: 2rem;
  color: #fff;
  background-color: #3e3a39;
  line-height: 1.3;
  font-weight: bold;
  padding: 8px 12px;
  margin-top: 30px;
  margin-bottom: 15px;
}

main.news.article .article_area .txt_area h3 {
  font-size: 1.8rem;
  color: #000;
  line-height: 1.3;
  font-weight: bold;
  padding: 5px 8px;
  border-left: 5px solid #3e3a39;
  border-bottom: 1px solid #3e3a39;
  margin-top: 30px;
  margin-bottom: 15px;
}

main.news.article .article_area .txt_area h4 {
  font-size: 1.6rem;
  color: #000;
  line-height: 1.3;
  font-weight: bold;
  padding: 5px 8px;
  border-left: 3px solid #3e3a39;
  margin-top: 30px;
  margin-bottom: 15px;
}

main.news.article .article_area .txt_area h5 {
  font-size: 1.6rem;
  color: #000;
  line-height: 1.3;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
}

main.news.article .ico_blank {
  padding-right: 20px;
  background: url(../../common/img/ico_blank_02.png) no-repeat right center;
  background-size: 14px 11px;
}

main.news.article .ico_pdf {
  position: relative;
  padding-right: 20px;
  background-size: 14px 11px;
}

main.news.article .ico_pdf:after {
  position: absolute;
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  height: 15px;
  background: url(../../common/img/ico_pdf_02.svg) no-repeat;
  background-size: 15px;
  top: 53%;
  transform: translateY(-50%);
  right: -1px;
}

main.news.article .btn_area {
  margin-top: 20px;
  margin-bottom: 20px;
}

main.news.article .btn_area .prev_btn {
  margin-right: auto;
  margin-left: auto;
  padding: 5px;
  width: 100%;
  color: #fff;
  text-decoration: none;
  background-color: #00507d;
  border: 1px solid #00507d;
  display: block;
  text-align: center;
  position: relative;
  transition: all 0.3s ease-out;
}

main.news.article .btn_area .prev_btn:before {
  content: "";
  background-image: url(../img/ico_arw.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotateY(180deg);
}

@media only screen and (min-width: 768px) {
  main.news.article .article_area {
    margin-bottom: 90px;
  }
  main.news.article .article_area .date {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  main.news.article .article_area .news_ttl {
    font-size: 3rem;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
  main.news.article .article_area .txt_area {
    line-height: 2;
  }
  main.news.article .article_area .txt_area a:hover {
    color: black;
    text-decoration: none;
  }
  main.news.article .article_area .txt_area h1 {
    font-size: 3.5rem;
    margin-top: 40px;
    margin-bottom: 15px;
  }
  main.news.article .article_area .txt_area h2 {
    font-size: 2.4rem;
    padding: 10px 15px;
    margin-top: 40px;
    margin-bottom: 15px;
  }
  main.news.article .article_area .txt_area h3 {
    font-size: 2rem;
    padding: 8px 10px;
    margin-top: 40px;
    margin-bottom: 15px;
  }
  main.news.article .article_area .txt_area h4 {
    font-size: 1.8rem;
    padding: 8px 10px;
    margin-top: 40px;
    margin-bottom: 15px;
  }
  main.news.article .article_area .txt_area h5 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
  }
  main.news.article .btn_area {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  main.news.article .btn_area .prev_btn {
    max-width: 224px;
    padding: 14px;
  }
  main.news.article .btn_area .prev_btn:before {
    left: 20px;
  }
  main.news.article .btn_area .prev_btn:hover {
    background-color: #fff;
    color: #00507d;
  }
  main.news.article .btn_area .prev_btn:hover:before {
    background-image: url(../img/ico_arw2.png);
  }
}/*# sourceMappingURL=style.css.map */