@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.2.0/dist/css/yakuhanjp.min.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
  cursor: pointer;
}

strong {
  font-weight: bolder;
}

textarea {
  resize: vertical;
}

:root {
  --font_base: 16px/1.7 "Zen Kaku Gothic New", "YakuHanJP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
}

:root {
  --default-black: #333;
  --default-white: #e5e5e5;
  --default-blue: #009CEF;
  --default-blue02: #0044ef;
  --default-red: #E70000;
  --default-orange: #E70;
  --base-gray-default: #F4F6F8;
  --base-gray-dark:#6C6C6C;
}

a[href^=https],
a[href^="mailto:"] {
  word-break: break-all;
}

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

a {
  color: var(--default-blue);
  text-decoration: none;
  transition: all 0.5s;
}

@media all and (min-width: 768px) {
  .spOnly {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .pcOnly {
    display: none;
  }
}

header {
  position: relative;
  width: 260px;
  padding: 13px 10px 60px;
  border-left: 6px solid #cf1126;
  border-right: 1px solid #ccc;
  box-shadow: 3px 0px 6px #cccccc;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  header {
    display: none;
  }
}

@media all and (min-width: 768px) {
  #header_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #header_sp {
    display: block;
  }
  #header_sp .header_sp_wrap {
    display: flex;
    padding: 20px 8px;
    justify-content: space-between;
    transition: 0.3s;
  }
  #header_sp .header_sp_wrap .header_title {
    display: flex;
    font-size: 24px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 300;
    font-style: normal;
  }
  #header_sp .header_sp_wrap .header_title a {
    color: #333;
  }
  #header_sp .header_sp_wrap .header_title img {
    width: 42px;
  }
  #header_sp .header_sp_wrap .open_trigger {
    cursor: pointer;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 28px;
    right: 20px;
    z-index: 1000;
  }
  #header_sp .header_sp_wrap .open_trigger span {
    position: relative;
    display: block;
    width: 28px;
    height: 1px;
    margin: 0 auto;
    margin-top: 7px;
    background-color: #000;
    transition: 0.3s;
  }
  #header_sp .header_sp_wrap .open_trigger.active {
    overflow: hidden;
  }
  #header_sp .header_sp_wrap .open_trigger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
  }
  #header_sp .header_sp_wrap .open_trigger.active span:nth-child(2) {
    transform: translateX(200px);
  }
  #header_sp .header_sp_wrap .open_trigger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: -8px;
  }
  #header_sp .header_sp_wrap.header_open {
    transition: 0.3s;
    border-bottom: 1px solid #cf1126;
  }
}

#header_wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  padding-bottom: 200px;
}
#header_wrap .header_title {
  text-align: center;
  width: 130px;
  margin: 36px auto 67px;
  font-size: 30px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
  line-height: 40px;
}
#header_wrap .header_title a {
  color: #333;
}
#header_wrap .header_title img {
  width: 73px;
  margin: 0 auto;
  margin-bottom: 10px;
}
#header_wrap .header_menu {
  padding-left: 17px;
  overflow-y: scroll;
  height: 50vh;
  padding-bottom: 50px;
}
#header_wrap .header_menu li {
  position: relative;
  margin-bottom: 28px;
}
#header_wrap .header_menu li:last-child {
  margin-bottom: 20px;
}
#header_wrap .header_menu a {
  display: block;
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: #000;
  transition: 0.3s;
}
#header_wrap .header_menu a:before {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 11px;
  background: url(../common/ico_arrow02.png) no-repeat;
  background-size: contain;
  top: 9px;
  left: 0;
  transition: 0.3s;
}
#header_wrap .header_menu a:hover:before {
  transform: translateX(3px);
}
#header_wrap .header_menu li.menu_trigger {
  padding-right: 17px;
  letter-spacing: -1px;
}
#header_wrap .header_menu li.menu_trigger:after {
  position: absolute;
  content: "";
  display: block;
  width: 17px;
  height: 18px;
  background: url(../common/ico_doc01.png) no-repeat;
  background-size: contain;
  top: 4px;
  right: 10px;
}
#header_wrap .header_menu li.menu_trigger a {
  position: relative;
  cursor: pointer;
  display: block;
  margin-bottom: 25px;
}
#header_wrap .header_menu li.menu_trigger a:before {
  position: absolute;
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background: url(../common/ico_toggle01.png) no-repeat;
  background-size: contain;
  top: 7px;
  left: -1px;
  transition: 0.3s;
}
#header_wrap .header_menu li.menu_trigger a:hover:before {
  transform: translateX(0px);
}
#header_wrap .header_menu li.menu_trigger .h_menu_fold {
  background-color: #f0f4f8;
  padding: 33px 16px 43px;
}
#header_wrap .header_menu li.menu_trigger .h_menu_fold li {
  padding-left: 0px;
  margin-bottom: 16px;
}
#header_wrap .header_menu li.menu_trigger .h_menu_fold li:before {
  display: none;
}
#header_wrap .header_menu li.menu_trigger .h_menu_fold li a {
  display: block;
  padding-left: 15px;
  margin-bottom: 0px;
}
#header_wrap .header_menu li.menu_trigger .h_menu_fold li a:before {
  position: absolute;
  content: "";
  display: block;
  width: 7px;
  height: 8px;
  background: url(../common/ico_arrow07.png) no-repeat;
  background-size: contain;
  top: 10px;
  left: 0;
}
#header_wrap .header_menu li.menu_trigger .h_menu_fold li:last-child {
  margin-bottom: 0px;
}
#header_wrap .header_menu li.menu_trigger.trigger_open a:before {
  position: absolute;
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background: url(../common/ico_toggle02.png) no-repeat;
  background-size: contain;
  top: 12px;
  left: 0;
}
#header_wrap .header_menu_sub {
  border-top: 1px solid #d0d5d9;
  padding-left: 17px;
}
#header_wrap .header_menu_sub li {
  padding: 14px 0px;
}
#header_wrap .header_menu_sub a {
  position: relative;
  display: block;
  padding-right: 14px;
  font-size: 12px;
  color: #333333;
  text-decoration: underline;
}
#header_wrap .header_menu_sub a:before {
  position: absolute;
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: url(../common/ico_arrow01.png) no-repeat;
  background-size: contain;
  top: 7px;
  right: 0;
}
#header_wrap .header_home {
  display: block;
  width: 100%;
  background-color: #f0f4f8;
  text-align: center;
  border: solid 1px #febebe;
}
#header_wrap .header_home a {
  display: block;
  padding: 6px 0;
}
#header_wrap .header_home span {
  color: #000000;
  font-size: 15px;
}

.header_menu_sp_wrap {
  display: none;
}
.header_menu_sp_wrap .header_menu_sp {
  margin-top: 20px;
  padding-left: 52px;
}
.header_menu_sp_wrap .header_menu_sp li {
  position: relative;
  margin-bottom: 28px;
  padding-left: 28px;
}
.header_menu_sp_wrap .header_menu_sp li:before {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 11px;
  background: url(../common/ico_arrow02.png) no-repeat;
  background-size: contain;
  top: 9px;
  left: 0;
}
.header_menu_sp_wrap .header_menu_sp li:last-child {
  margin-bottom: 20px;
}
.header_menu_sp_wrap .header_menu_sp a {
  font-size: 15px;
  color: #000;
}
.header_menu_sp_wrap .header_menu_sp li.menu_trigger {
  margin-bottom: 0px;
}
.header_menu_sp_wrap .header_menu_sp li.menu_trigger:before {
  position: absolute;
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background: url(../common/ico_toggle01.png) no-repeat;
  background-size: contain;
  top: 7px;
  left: 0;
}
.header_menu_sp_wrap .header_menu_sp li.menu_trigger a {
  cursor: pointer;
  display: block;
  margin-bottom: 25px;
}
.header_menu_sp_wrap .header_menu_sp li.menu_trigger .trigger_head {
  position: relative;
  display: inline-block;
}
.header_menu_sp_wrap .header_menu_sp li.menu_trigger .trigger_head:after {
  position: absolute;
  content: "";
  display: block;
  width: 17px;
  height: 18px;
  background: url(../common/ico_doc01.png) no-repeat;
  background-size: contain;
  top: 4px;
  right: -40px;
}
.header_menu_sp_wrap .header_menu_sp li.menu_trigger .h_menu_fold {
  margin: 0 15px 28px -65px;
  background-color: #f0f4f8;
  padding: 33px 16px 43px;
}
.header_menu_sp_wrap .header_menu_sp li.menu_trigger .h_menu_fold li {
  padding-left: 0px;
  margin-bottom: 16px;
}
.header_menu_sp_wrap .header_menu_sp li.menu_trigger .h_menu_fold li:before {
  display: none;
}
.header_menu_sp_wrap .header_menu_sp li.menu_trigger .h_menu_fold li a {
  display: block;
  padding-left: 15px;
  margin-bottom: 0px;
}
.header_menu_sp_wrap .header_menu_sp li.menu_trigger .h_menu_fold li a:before {
  position: absolute;
  content: "";
  display: block;
  width: 7px;
  height: 8px;
  background: url(../common/ico_arrow07.png) no-repeat;
  background-size: contain;
  top: 10px;
  left: 0;
}
.header_menu_sp_wrap .header_menu_sp li.menu_trigger .h_menu_fold li:last-child {
  margin-bottom: 0px;
}
.header_menu_sp_wrap .header_menu_sp li.menu_trigger.trigger_open:before {
  position: absolute;
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background: url(../common/ico_toggle02.png) no-repeat;
  background-size: contain;
  top: 12px;
  left: 0;
}
.header_menu_sp_wrap .header_menu_sub_sp {
  border-top: 1px solid #d0d5d9;
  margin: 0 44px;
}
.header_menu_sp_wrap .header_menu_sub_sp li {
  padding: 24px 0px;
}
.header_menu_sp_wrap .header_menu_sub_sp a {
  position: relative;
  display: block;
  padding-right: 14px;
  font-size: 13px;
  color: #333333;
  text-decoration: underline;
}
.header_menu_sp_wrap .header_menu_sub_sp a:before {
  position: absolute;
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: url(../common/ico_arrow01.png) no-repeat;
  background-size: contain;
  top: 7px;
  right: 0;
}
.header_menu_sp_wrap .header_home_sp {
  display: block;
  margin: 0 44px;
  background-color: #f0f4f8;
  border: solid 1px #febebe;
  text-align: center;
}
.header_menu_sp_wrap .header_home_sp a {
  display: block;
  padding: 6px 0;
}
.header_menu_sp_wrap .header_home_sp span {
  color: #000000;
  font-weight: 600;
  font-size: 16px;
}

body.open .mainCont,
body.open footer {
  display: none !important;
}

.l-header .l-header_logo {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  width: 110px;
  height: 33px;
  background: url(../common/uk_logo.svg) no-repeat left top;
  background-size: contain;
}
@media all and (min-width: 768px) {
  .l-header .l-header_logo {
    width: 180px;
    height: 60px;
  }
}
.l-header .l-header_logo a {
  display: block;
  width: 100%;
}
@media all and (min-width: 768px) {
  .l-header .l-header_logo a {
    height: 60px;
  }
}

#Top .l-header .l-header_logo a {
  pointer-events: none;
}

@media all and (min-width: 768px) {
  .l-header {
    display: flex;
    justify-content: space-between;
  }
}

.fortop {
  position: fixed;
  bottom: 120px;
  right: 30px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .fortop {
    bottom: 52px;
  }
}
.fortop a {
  display: flex;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #3F3333;
  border: 1px solid #fff;
  text-align: center;
  font-size: 11px;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 100vh;
  position: relative;
  width: 56px;
  height: 56px;
  line-height: 1.2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .fortop a {
    width: 50px;
    height: 50px;
  }
}
.fortop a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 1em 0.8em;
  border-bottom-color: currentColor;
  border-top: 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .fortop a:before {
    margin-bottom: 6px;
  }
}

footer {
  border-top: solid 11px #927b7b;
  background-color: #3f3333;
}
@media screen and (max-width: 767px) {
  footer {
    border-top: 0px;
  }
}
footer #footer_wrap {
  margin: 40px 30px 0px;
}
@media screen and (max-width: 767px) {
  footer #footer_wrap {
    margin-top: 0px;
  }
}
footer #footer_wrap .footer_nav {
  width: 480px;
  float: right;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  footer #footer_wrap .footer_nav {
    margin-top: 33px;
    margin-bottom: 17px;
    width: 100%;
    justify-content: space-between;
  }
}
footer #footer_wrap .footer_nav li {
  margin-right: 20px;
  margin-bottom: 10px;
}
footer #footer_wrap .footer_nav li a {
  position: relative;
  padding-left: 10px;
}
footer #footer_wrap .footer_nav li a:before {
  display: block;
  content: "";
  position: absolute;
  width: 7px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: 0;
}
footer #footer_wrap h3 {
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 34px;
}
@media screen and (max-width: 767px) {
  footer #footer_wrap h3 {
    font-size: 27px;
  }
}
footer #footer_wrap p {
  color: #fff;
}
@media screen and (max-width: 767px) {
  footer #footer_wrap p {
    font-size: 12px;
    line-height: 25px;
  }
}
footer #footer_wrap .wrap_address {
  margin-top: 17px;
  display: inline-block;
  border: 1px solid #8a6e6e;
  padding: 14px;
}
@media screen and (max-width: 767px) {
  footer #footer_wrap .wrap_address {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
  }
}
footer #footer_wrap .wrap_address a {
  position: relative;
  display: inline-block;
  padding-left: 25px;
}
footer #footer_wrap .wrap_address a.tel::before {
  display: block;
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: url(../common/ico_tel01.png) no-repeat;
  background-size: contain;
  top: 6px;
  left: 0;
}
footer #footer_wrap .wrap_address a.mail::before {
  display: block;
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: url(../common/ico_mail02.png) no-repeat;
  background-size: contain;
  top: 10px;
  left: 0;
}
footer #footer_wrap .wrap_address span {
  color: #fff;
}
@media screen and (max-width: 767px) {
  footer #footer_wrap .wrap_address span {
    font-size: 12px;
  }
}
footer #footer_wrap .menu_etc {
  float: right;
  display: flex;
  flex-wrap: wrap;
  margin-top: -24px;
}
@media screen and (max-width: 767px) {
  footer #footer_wrap .menu_etc {
    float: none;
    margin: 12px 0;
  }
}
footer #footer_wrap .menu_etc li {
  margin-right: 12px;
}
footer #footer_wrap .menu_etc li a {
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  footer #footer_wrap .menu_etc li a {
    text-decoration: underline;
  }
}
footer #footer_wrap .menu_etc li:last-child {
  margin-right: 0px;
}
footer a {
  color: #fff;
}
footer small {
  position: relative;
  display: block;
  text-align: right;
}
@media screen and (max-width: 767px) {
  footer small {
    text-align: center;
    margin: 25px auto;
  }
}
footer small a {
  width: 100%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  footer small a {
    text-decoration: underline;
  }
}
footer .copy {
  margin: 24px 30px 0;
  border-top: 1px solid #8a6e6e;
}
@media screen and (max-width: 767px) {
  footer .copy {
    margin: 0;
  }
}
footer .copy small {
  text-align: center;
  color: #fff;
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  footer .copy small {
    margin: 0;
    padding: 12px 0 17px;
  }
}

body {
  font: var(--font_base);
  color: var(--default-black);
  background: #fff;
}

html, body {
  height: 100%;
}

body > footer {
  position: -webkit-sticky;
  position: sticky;
  top: 100vh;
}

@media all and (min-width: 768px) {
  body {
    min-width: 1020px;
  }
}

.mainCont-inner {
  margin: auto;
}
@media screen and (max-width: 767px) {
  .mainCont-inner {
    width: 92vw;
    margin-top: 20px;
  }
}
@media all and (min-width: 768px) {
  .mainCont-inner {
    width: 1020px;
    margin-top: 20px;
  }
}
@media all and (min-width: 768px) {
  .mainCont-inner.form {
    width: 950px;
  }
}

.c-title {
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 1.625rem;
    margin-bottom: 15px;
  }
}
@media all and (min-width: 768px) {
  .c-title {
    font-size: 2.1875rem;
    margin-bottom: 20px;
  }
}

.text_center,
.text_center_Pc,
.text_center_Sp {
  text-align: center;
}

.c-btn,
.c-btn a {
  text-decoration: none;
  cursor: pointer;
}

.c-btn_primary {
  display: block;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mb10 {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .mt10_Sp {
    margin-top: 10px;
  }
  .mt15_Sp {
    margin-top: 15px;
  }
  .mt20_Sp {
    margin-top: 20px;
  }
  .mt30_Sp {
    margin-top: 30px;
  }
  .mt40_Sp {
    margin-top: 40px;
  }
  .mt50_Sp {
    margin-top: 50px;
  }
}
@media all and (min-width: 768px) {
  .mt10_Pc {
    margin-top: 10px;
  }
  .mt15_Pc {
    margin-top: 15px;
  }
  .mt20_Pc {
    margin-top: 20px;
  }
  .mt30_Pc {
    margin-top: 30px;
  }
  .mt40_Pc {
    margin-top: 40px;
  }
  .mt50_Pc {
    margin-top: 50px;
  }
}
.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .mb10_Sp,
.lay_ma_bottom10_Sp {
    margin-bottom: 10px;
  }
  .mb15_Sp {
    margin-bottom: 15px;
  }
  .mb20_Sp {
    margin-bottom: 20px;
  }
  .mb30_Sp {
    margin-bottom: 30px;
  }
  .mb40_Sp {
    margin-bottom: 40px;
  }
  .mb50_Sp {
    margin-bottom: 50px;
  }
}
@media all and (min-width: 768px) {
  .mb10_Pc,
.lay_ma_bottom10_Pc {
    margin-bottom: 10px;
  }
  .mb15_Pc {
    margin-bottom: 15px;
  }
  .mb20_Pc {
    margin-bottom: 20px;
  }
  .mb30_Pc {
    margin-bottom: 30px;
  }
  .mb40_Pc {
    margin-bottom: 40px;
  }
  .mb50_Pc {
    margin-bottom: 50px;
  }
}
.mr10 {
  margin-right: 10px;
}

.mr15 {
  margin-right: 15px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

@media screen and (max-width: 767px) {
  .mr10_Sp {
    margin-right: 10px;
  }
  .mr15_Sp {
    margin-right: 15px;
  }
  .mr20_Sp {
    margin-right: 20px;
  }
  .mr30_Sp {
    margin-right: 30px;
  }
  .mr40_Sp {
    margin-right: 40px;
  }
  .mr50_Sp {
    margin-right: 50px;
  }
}
@media all and (min-width: 768px) {
  .mr10_Pc {
    margin-right: 10px;
  }
  .mr15_Pc {
    margin-right: 15px;
  }
  .mr20_Pc {
    margin-right: 20px;
  }
  .mr30_Pc {
    margin-right: 30px;
  }
  .mr40_Pc {
    margin-right: 40px;
  }
  .mr50_Pc {
    margin-right: 50px;
  }
}
.ml10 {
  margin-left: 10px;
}

.ml15 {
  margin-left: 15px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

@media screen and (max-width: 767px) {
  .ml10_Sp {
    margin-left: 10px;
  }
  .ml15_Sp {
    margin-left: 15px;
  }
  .ml20_Sp {
    margin-left: 20px;
  }
  .ml30_Sp {
    margin-left: 30px;
  }
  .ml40_Sp {
    margin-left: 40px;
  }
  .ml50_Sp {
    margin-left: 50px;
  }
}
@media all and (min-width: 768px) {
  .ml10_Pc {
    margin-left: 10px;
  }
  .ml15_Pc {
    margin-left: 15px;
  }
  .ml20_Pc {
    margin-left: 20px;
  }
  .ml30_Pc {
    margin-left: 30px;
  }
  .ml40_Pc {
    margin-left: 40px;
  }
  .ml50_Pc {
    margin-left: 50px;
  }
}
.w50 {
  width: 50px;
}

.w80 {
  width: 80px;
}

.w100 {
  width: 100px;
}

.w120 {
  width: 120px;
}

.w150 {
  width: 150px;
}

.w160 {
  width: 160px;
}

.w180 {
  width: 180px;
}

.w200 {
  width: 200px;
}

.w220 {
  width: 220px;
}

.w250 {
  width: 250px !important;
}

.w300 {
  width: 300px;
}

.w350 {
  width: 350px;
}

.w30per {
  width: 30%;
}

.w50per {
  width: 50%;
}

.w60per {
  width: 60%;
}

.w70per {
  width: 70%;
}

.w80per {
  width: 80%;
}

.w100per {
  width: 100%;
}

@media all and (min-width: 768px) {
  .w50_Pc {
    width: 50px;
  }
  .w80_Pc {
    width: 80px;
  }
  .w100_Pc {
    width: 100px;
  }
  .w120_Pc {
    width: 120px;
  }
  .w150_Pc {
    width: 150px;
  }
  .w160_Pc {
    width: 160px;
  }
  .w180_Pc {
    width: 180px;
  }
  .w200_Pc {
    width: 200px;
  }
  .w220_Pc {
    width: 220px;
  }
  .w250_Pc {
    width: 250px;
  }
  .w300_Pc {
    width: 300px;
  }
  .w350_Pc {
    width: 350px;
  }
  .w400_Pc {
    width: 400px;
  }
  .w430_Pc {
    width: 430px;
  }
  .w450_Pc {
    width: 450px;
  }
  .w500_Pc {
    width: 500px;
  }
  .w850_Pc {
    width: 850px;
  }
  .w900_Pc {
    width: 900px;
  }
  .w30per_Pc {
    width: 30%;
  }
  .w50per_Pc {
    width: 50%;
  }
  .w60per_Pc {
    width: 60%;
  }
  .w70per_Pc {
    width: 70%;
  }
  .w80per_Pc {
    width: 80%;
  }
  .w100per_Pc {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .w50_Sp {
    width: 50px;
  }
  .w80_Sp {
    width: 80px;
  }
  .w100_Sp {
    width: 100px;
  }
  .w120_Sp {
    width: 120px;
  }
  .w150_Sp {
    width: 150px;
  }
  .w160_Sp {
    width: 160px;
  }
  .w180_Sp {
    width: 180px;
  }
  .w200_Sp {
    width: 200px;
  }
  .w220_Sp {
    width: 220px;
  }
  .w250_Sp {
    width: 250px;
  }
  .w300_Sp {
    width: 300px;
  }
  .w350_Sp {
    width: 350px;
  }
  .w400_Sp {
    width: 400px;
  }
  .w450_Sp {
    width: 450px;
  }
  .w500_Sp {
    width: 500px;
  }
  .w30per_Sp {
    width: 30%;
  }
  .w50per_Sp {
    width: 50%;
  }
  .w60per_Sp {
    width: 60%;
  }
  .w70per_Sp {
    width: 70%;
  }
  .w80per_Sp {
    width: 80%;
  }
  .w100per_Sp {
    width: 100%;
  }
}
.color_red01 {
  color: var(--default-red);
}

.color_orange01 {
  color: var(--default-orange);
}

.color_blue01 {
  color: var(--default-blue);
}

.color_blue02 {
  color: var(--default-blue02);
}

.color_white01 {
  color: var(--default-white);
}

.foS10 {
  font-size: 0.625rem;
  line-height: 1.4;
}

.foS11 {
  font-size: 0.6875rem;
  line-height: 1.4;
}

.foS12 {
  font-size: 0.75rem;
  line-height: 1.4;
}

.foS13 {
  font-size: 0.8125rem;
  line-height: 1.6;
}

.foS14 {
  font-size: 0.875rem;
  line-height: 1.6;
}

.foS15 {
  font-size: 0.9375rem;
}

.foM16 {
  font-size: 1rem;
}

.foL17 {
  font-size: 1.0625rem;
}

.foL18 {
  font-size: 1.125rem;
}

.foL19 {
  font-size: 1.1875rem;
  line-height: 1.6;
}

.foL20 {
  font-size: 1.25rem;
  line-height: 1.6;
}

.foL21 {
  font-size: 1.3125rem;
  line-height: 1.6;
}

.foL22 {
  font-size: 1.375rem;
  line-height: 1.5;
}

.foL24 {
  font-size: 1.5rem;
  line-height: 1.5;
}

.foL26 {
  font-size: 1.625rem;
  line-height: 1.5;
}

.foL28 {
  font-size: 1.75rem;
  line-height: 1.5;
}

.foL30 {
  font-size: 1.875rem;
  line-height: 1.5;
}

.foL32 {
  font-size: 2rem;
  line-height: 1.4;
}

.foL34 {
  font-size: 2.125rem;
  line-height: 1.4;
}

.foL36 {
  font-size: 2.25rem;
  line-height: 1.4;
}

.foL38 {
  font-size: 2.375rem;
  line-height: 1.4;
}

.foL40 {
  font-size: 2.5rem;
  line-height: 1.4;
}

.foL44 {
  font-size: 2.75rem;
  line-height: 1.4;
}

.foL48 {
  font-size: 3rem;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .foS10_Sp {
    font-size: 0.625rem;
    line-height: 1.4;
  }
  .foS11_Sp {
    font-size: 0.6875rem;
    line-height: 1.4;
  }
  .foS12_Sp {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  .foS13_Sp {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .foS14_Sp {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .foS15_Sp {
    font-size: 0.9375rem;
  }
  .foM16_Sp {
    font-size: 1rem;
  }
  .foL17_Sp {
    font-size: 1.0625rem;
  }
  .foL18_Sp {
    font-size: 1.125rem;
  }
  .foL19_Sp {
    font-size: 1.1875rem;
    line-height: 1.6;
  }
  .foL20_Sp {
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .foL21_Sp {
    font-size: 1.3125rem;
    line-height: 1.6;
  }
  .foL22_Sp {
    font-size: 1.375rem;
    line-height: 1.5;
  }
  .foL24_Sp {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .foL26_Sp {
    font-size: 1.625rem;
    line-height: 1.5;
  }
  .foL28_Sp {
    font-size: 1.75rem;
    line-height: 1.5;
  }
  .foL30_Sp {
    font-size: 1.875rem;
    line-height: 1.5;
  }
  .foL32_Sp {
    font-size: 2rem;
    line-height: 1.4;
  }
  .foL34_Sp {
    font-size: 2.125rem;
    line-height: 1.4;
  }
  .foL36_Sp {
    font-size: 2.25rem;
    line-height: 1.4;
  }
  .foL38_Sp {
    font-size: 2.375rem;
    line-height: 1.4;
  }
  .foL40_Sp {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  .foL44_Sp {
    font-size: 2.75rem;
    line-height: 1.4;
  }
  .foL48_Sp {
    font-size: 3rem;
    line-height: 1.4;
  }
}
@media all and (min-width: 768px) {
  .foS10_Pc {
    font-size: 0.625rem;
    line-height: 1.4;
  }
  .foS11_Pc {
    font-size: 0.6875rem;
    line-height: 1.4;
  }
  .foS12_Pc {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  .foS13_Pc {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .foS14_Pc {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .foS15_Pc {
    font-size: 0.9375rem;
  }
  .foM16_Pc {
    font-size: 1rem;
  }
  .foL17_Pc {
    font-size: 1.0625rem;
  }
  .foL18_Pc {
    font-size: 1.125rem;
  }
  .foL19_Pc {
    font-size: 1.1875rem;
    line-height: 1.6;
  }
  .foL20_Pc {
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .foL21_Pc {
    font-size: 1.3125rem;
    line-height: 1.6;
  }
  .foL22_Pc {
    font-size: 1.375rem;
    line-height: 1.5;
  }
  .foL24_Pc {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .foL26_Pc {
    font-size: 1.625rem;
    line-height: 1.5;
  }
  .foL28_Pc {
    font-size: 1.75rem;
    line-height: 1.5;
  }
  .foL30_Pc {
    font-size: 1.875rem;
    line-height: 1.5;
  }
  .foL32_Pc {
    font-size: 2rem;
    line-height: 1.4;
  }
  .foL34_Pc {
    font-size: 2.125rem;
    line-height: 1.4;
  }
  .foL36_Pc {
    font-size: 2.25rem;
    line-height: 1.4;
  }
  .foL38_Pc {
    font-size: 2.375rem;
    line-height: 1.4;
  }
  .foL40_Pc {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  .foL44_Pc {
    font-size: 2.75rem;
    line-height: 1.4;
  }
  .foL48_Pc {
    font-size: 3rem;
    line-height: 1.4;
  }
}
.asterisk-16 {
  padding-left: 1rem;
}

.asterisk-16::before {
  content: "※";
  margin-left: -1rem;
}

.asterisk-15 {
  padding-left: 0.9375rem;
}

.asterisk-15::before {
  content: "※";
  margin-left: -0.9375rem;
}

.asterisk-14 {
  padding-left: 0.875rem;
}

.asterisk-14::before {
  content: "※";
  margin-left: -0.875rem;
}

.cke_editable {
  min-width: auto;
  padding: 20px;
  width: calc(100% - 40px);
}

/* ==========================================================================
サマリー
========================================================================== */
.pagesummary {
  margin-bottom: 42px;
}
.pagesummary ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-left: 0px !important;
}
.pagesummary ul li {
  width: calc(50% - 14px);
  border-bottom: 1px solid #c8c8c8;
}
.pagesummary ul li:before {
  display: none !important;
}
.pagesummary ul li a {
  position: relative;
  display: block;
  color: #000;
  font-size: 0.9375rem;
  padding: 16.5px 16px 16.5px 0;
}
@media screen and (max-width: 767px) {
  .pagesummary ul li a {
    font-size: 0.8125rem;
  }
}
.pagesummary ul li a:before {
  display: block;
  content: "";
  position: absolute;
  width: 15px;
  height: 9px;
  background: url(../common/ico_arrow08.png) no-repeat;
  background-size: contain;
  top: 50%;
  margin-top: -4.5px;
  right: 0;
  transition: 0.3s;
}
.pagesummary ul li a:hover:before {
  margin-top: -2px;
}

/* ==========================================================================
見出し
========================================================================== */
/*------------------------------------------------------------　h2見出し　*/
.h2_title01 {
  position: relative;
  margin: 0px 0px 20px;
  padding: 18px 42px;
  font-size: 1.5rem;
  font-weight: 500;
  background-color: #ffddd3;
}
@media screen and (max-width: 767px) {
  .h2_title01 {
    margin-left: 0px;
    font-size: 1.125rem;
    padding-left: 24px;
    line-height: 1.6rem;
  }
}
.h2_title01:before {
  display: block;
  content: "";
  position: absolute;
  width: 11px;
  height: 3px;
  background-color: #a00b0b;
  top: 50%;
  margin-top: -1.5px;
  left: 22px;
}
@media screen and (max-width: 767px) {
  .h2_title01:before {
    left: 0;
  }
}
.h2_title01:after {
  display: block;
  content: "";
  position: absolute;
  width: calc(100% + 60px);
  top: -30px;
  left: -30px;
  border-top: solid 10px #f5f8fb;
}
@media screen and (max-width: 767px) {
  .h2_title01 {
    font-size: 20px;
    padding-left: 24px;
  }
}

/*------------------------------------------------------------　h3見出し　*/
.h3_title01 {
  position: relative;
  margin-top: 14px;
  margin-bottom: 24px;
  padding-left: 4px;
  padding-bottom: 5px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  border-bottom: 1px solid #dddddd;
}
.h3_title01:before {
  display: block;
  content: "";
  position: absolute;
  width: 60px;
  height: 1px;
  background-color: #bb2535;
  bottom: -1px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .h3_title01 {
    font-size: 17px;
    padding-left: 4px;
  }
}

.h3_title02 {
  margin-top: 14px;
  /* margin-bottom: 24px; */
  padding-left: 20px;
  background: #c0392b;
  color: #fff;
  padding: 10px;
  font-size: 20px;
}

/*------------------------------------------------------------　h4見出し　*/
.h4_title01 {
  font-weight: 500;
  margin-bottom: 12px;
  padding-bottom: 6px;
  color: #a00b0b;
  font-size: 1.125rem;
  border-bottom: solid 1px #a00b0b;
}

.h4_title02 {
  font-weight: 500;
  margin-bottom: 12px;
  padding-bottom: 6px;
  color: #a00b0b;
  font-size: 1.125rem;
}

/* 見出し END  =============================================================== *


/* ==========================================================================
ボタン・リンク・SNS
========================================================================== */
.cke_editable a,
.edit-area a {
  text-decoration: none;
  color: #a00b0b;
}

.edit-area .link_btn,
.link_btn {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 1rem;
  background-color: #f0f4f8;
  color: #bb2535;
  padding: 26px 65px 26px 20px;
  margin-bottom: 20px;
  transition: 0.3s;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .edit-area .link_btn,
.link_btn {
    padding: 16px 50px 16px 18px;
  }
}
.edit-area .link_btn:before,
.link_btn:before {
  position: absolute;
  display: block;
  content: "";
  height: 1px;
  background-color: #000;
  bottom: -4px;
  width: calc(100% - 10px);
  right: 0;
  left: 0;
  margin: auto;
}
.edit-area .link_btn:after,
.link_btn:after {
  position: absolute;
  display: block;
  content: "";
  width: 35px;
  height: 35px;
  background: url(../common/ico_arrow06.png) no-repeat;
  background-size: contain;
  top: 50%;
  margin-top: -17.5px;
  right: 12px;
  transition: 0.3s;
}
.edit-area .link_btn:hover,
.link_btn:hover {
  transform: translateX(3px);
}
.edit-area .link_btn:hover:after,
.link_btn:hover:after {
  right: 17px;
}

/*------------------------------------------------------ ボタンカラー*/
/* サブ */
.edit-area .link_btn.link_btn-secondary,
.cke_editable .link_btn.link_btn-secondary {
  background-color: #febebe;
  color: #000;
}

.link_btn.link_btn-secondary,
.link_btn.link_btn-secondary {
  background-color: #febebe;
  color: #000;
}

/* サブ03 */
.edit-area .link_btn.link_btn-dark,
.cke_editable .link_btn.link_btn-dark {
  background-color: #bb2535;
  color: #fff;
}

.link_btn.link_btn-dark,
.link_btn.link_btn-dark {
  background-color: #bb2535;
  color: #fff;
}

/*------------------------------------------------------ ボタンサイズ*/
/* 大 */
.edit-area .link_btn.link_btn-large,
.cke_editable .link_btn.link_btn-large {
  font-size: 1.25rem;
  display: block;
  text-align: center;
  font-weight: 500;
}

.link_btn.link_btn-large,
.link_btn.link_btn-large {
  font-size: 1.25rem;
  display: block;
  text-align: center;
  font-weight: 500;
}

.edit-area .link_btn.link_btn-secondary.link_btn-large,
.cke_editable .link_btn.link_btn-secondary.link_btn-large {
  background-color: #febebe;
  color: #000;
}

.link_btn.link_btn-secondary.link_btn-large,
.link_btn.link_btn-secondary.link_btn-large {
  background-color: #febebe;
  color: #000;
}

.edit-area .link_btn.link_btn-dark.link_btn-large,
.cke_editable .link_btn.link_btn-dark.link_btn-large {
  background-color: #bb2535;
  color: #fff;
}

.link_btn.link_btn-dark.link_btn-large,
.link_btn.link_btn-dark.link_btn-large {
  background-color: #bb2535;
  color: #fff;
}

/* 小 */
.edit-area .link_btn.link_btn-small:after,
.cke_editable .link_btn.link_btn-small:after {
  position: absolute;
  display: block;
  content: "";
  width: 35px;
  height: 35px;
  background: url(../common/ico_arrow10.png) no-repeat;
  background-size: contain;
  top: 50%;
  margin-top: -17.5px;
  right: 20px;
}

.link_btn.link_btn-small:after,
.link_btn.link_btn-small:after {
  position: absolute;
  display: block;
  content: "";
  width: 35px;
  height: 35px;
  background: url(../common/ico_arrow10.png) no-repeat;
  background-size: contain;
  top: 50%;
  margin-top: -17.5px;
  right: 20px;
}

/* 編集パーツに追加　ダウンロードリンクボタン */
.link_btn.link_btn_dl {
  width: 100%;
  background-color: #bb2535;
  color: #fff;
  border: solid 1px #000;
  font-weight: 500;
}
.link_btn.link_btn_dl:after {
  position: absolute;
  display: block;
  content: "";
  width: 35px;
  height: 35px;
  background: url(../common/ico_arrow11.png) no-repeat;
  background-size: contain;
  top: 50%;
  margin-top: -17.5px;
  right: 20px;
  transition: 0.3s;
}

/* ------------------------------PDFマーク */
.txtLink01-pdf {
  padding-left: 30px;
  background: url(../common/ico_pdf01.png) no-repeat left center;
  background-size: 19px auto;
}

/* ------------------------------ダウンロードマーク */
.txtLink01-dl {
  padding-left: 30px;
  background: url(../common/ico_dl01.png) no-repeat left center;
  background-size: 19px auto;
}

/* ------------------------------WORDマーク */
.txtLink01-word {
  padding-left: 30px;
  background: url(../common/ico_word01.png) no-repeat left center;
  background-size: 19px auto;
}

/* ------------------------------EXCELマーク */
.txtLink01-excel {
  padding-left: 30px;
  background: url(../common/ico_excel01.png) no-repeat left center;
  background-size: 19px auto;
}

/* ------------------------------PowerPointマーク */
.txtLink01-power {
  padding-left: 30px;
  background: url(../common/ico_power01.png) no-repeat left center;
  background-size: 19px auto;
}

/* ボタン・リンク END  =============================================================== */
/*絵文字*/
.cke_editable img,
.edit-area img {
  margin: auto;
  display: inline;
}

.ico_20 {
  margin: inherit;
}

/* ==========================================================================
リスト
========================================================================== */
.edit-area ol,
.edit-area ul,
.cke_editable ol,
.cke_editable ul,
.list_style {
  position: relative;
  margin-left: 25px;
}

.edit-area ol,
.cke_editable ol {
  counter-reset: item;
  list-style-type: none;
  margin-left: 0;
}

.edit-area ol li,
.cke_editable ol li {
  list-style-type: none;
  margin-bottom: 5px;
  position: relative;
  padding: 4px 0 4px 30px;
}

.edit-area ol li:before,
.cke_editable ol li:before {
  counter-increment: item;
  content: counter(item);
  display: block;
  position: absolute;
  top: 0.4em;
  left: 0;
  font-weight: bold;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 0.875rem;
  /* 14px */
}

.edit-area ul li,
.cke_editable ul li {
  list-style-type: none;
  margin-bottom: 5px;
}

.edit-area ul li:before,
.cke_editable ul li:before,
.list_style li:before {
  content: "";
  box-sizing: border-box;
  display: inline-block;
  margin: 0 10px 0 -17px;
  height: 8px;
  width: 8px;
  border-radius: 100%;
  background: #000;
}

.edit-area .list_none,
.cke_editable .list_none {
  counter-reset: item;
  list-style: none;
  padding: 0;
  margin-left: 0 !important;
}
.edit-area .list_none li::before,
.cke_editable .list_none li::before {
  display: none;
}

.edit-area .list_arrow01 li,
.cke_editable .list_arrow01 li {
  margin-bottom: 24px;
}
.edit-area .list_arrow01 li:after,
.cke_editable .list_arrow01 li:after {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
  right: 0;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 12px 0 12px;
  border-color: #000 transparent transparent transparent;
}
.edit-area .list_arrow01 li:last-of-type,
.cke_editable .list_arrow01 li:last-of-type {
  margin-bottom: 0;
}
.edit-area .list_arrow01 li:last-of-type::after,
.cke_editable .list_arrow01 li:last-of-type::after {
  display: none;
}

/* リスト END  =============================================================== */
/* ==========================================================================
テーブル※適宜変更してください。
========================================================================== */
.cke_editable th,
.edit-area table th {
  background: #f0f4f8;
}

.cke_editable table td,
.cke_editable table th,
.edit-area table td,
.edit-area table th {
  padding: 10px;
  border: 1px solid #d5d5d5;
}

.cke_editable table,
table {
  border-collapse: initial !important;
  border-spacing: 0 !important;
}
@media screen and (max-width: 767px) {
  .cke_editable table,
table {
    font-size: 14px;
  }
}

/* テーブル END  =============================================================== */
/* ==========================================================================
　画像
========================================================================== */
.cke_editable img,
img {
  max-width: 100%;
  height: auto !important;
  vertical-align: bottom;
}

.newsImg03,
.newsImg02,
.newsImg01 {
  margin: 10px 0;
}

.newsImg03 ul,
.newsImg02 ul,
.newsImg01 ul {
  margin: 0;
}

@media all and (min-width: 768px) {
  .newsImg03 ul,
.newsImg02 ul {
    display: flex;
    justify-content: space-between;
  }
  .newsImg03 ul li {
    width: calc(33.3333333333% - 10px);
  }
  .newsImg02 ul li {
    width: calc(50% - 10px);
  }
}
.newsImg03 ul li,
.newsImg02 ul li,
.newsImg01 ul li {
  list-style: none !important;
  text-align: center;
  padding: 0;
}

.newsImg03 ul li:before,
.newsImg02 ul li:before,
.newsImg01 ul li:before {
  display: none !important;
}

/* ------------------------------------------------------------絵文字 */
.cke_editable .ico_20,
.ico_20 {
  display: inline-block;
  width: auto;
  height: 20px !important;
  padding: 0 4px;
  vertical-align: middle;
  margin-bottom: 3px !important;
}

/* 画像 END  =============================================================== */
/* ==========================================================================
囲い
========================================================================== */
.div_info01 {
  padding: 16px;
  margin: 15px 0;
  border-radius: 2px;
  background: #f0f4f8;
}

.div_info02 {
  padding: 16px;
  margin: 15px 0;
  border-radius: 2px;
  border: 1px solid #5f5f5f;
  background: #f0f4f8;
}

.div_info01-02 {
  padding: 16px;
  margin: 15px 0;
  border-radius: 2px;
  background: #eff8ff;
}

/* 囲い END  =============================================================== */
/* ==========================================================================
　境界線
========================================================================== */
hr.div_hr01 {
  display: block;
  margin: 15px 0;
  border: none;
  border-bottom: dashed 1px #cfcfcf;
}

/*管理画面側*/
.cke_editable .ckeditor_divline {
  background: url(../common/ckeditor_divline.gif) no-repeat;
}

/* 境界線 END  =============================================================== */
/* ==========================================================================
ckエディター
========================================================================== */
.cke_editable .float_L_Pc,
.float_L_Pc {
  float: left;
}
@media screen and (max-width: 767px) {
  .cke_editable .float_L_Pc,
.float_L_Pc {
    float: none;
  }
}

.cke_editable .float_R_Pc,
.float_R_Pc {
  float: right;
}
@media screen and (max-width: 767px) {
  .cke_editable .float_R_Pc,
.float_R_Pc {
    float: none;
  }
}

/*------------------------------------------------------------ニュース表示(日付)*/
.day-color01 {
  color: #000000;
}

/*黒*/
.day-color02 {
  color: #e03e3e;
}

/*赤*/
.day-color03 {
  color: #005692;
}

/*青*/
.day-color04 {
  color: #099809;
}

/*緑*/
.day-color05 {
  color: #e77be6;
}

/*ピンク*/
.day-color06 {
  color: #666666;
}

/*グレー*/
.day-bold {
  font-weight: bold;
}

/*-----------------------------------------------------------ニュース表示(タイトル)*/
.title-size-small {
  font-size: 0.8125rem;
}

/* 13px */
.title-size-middle {
  font-size: 0.9375rem;
}

/* 15px */
.title-size-big {
  font-size: 1.25rem;
}

/* 20px */
.title-color01 {
  color: #000000;
}

/*黒*/
.title-color02 {
  color: #e03e3e;
}

/*赤*/
.title-color03 {
  color: #005692;
}

/*青*/
.title-color04 {
  color: #099809;
}

/*緑*/
.title-color05 {
  color: #e77be6;
}

/*ピンク*/
.title-color06 {
  color: #666666;
}

/*グレー*/
.title-bold {
  font-weight: bold;
}

/*-----------------------------------------------------------文字サイズ*/
span.op_large {
  text-decoration: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: 1.25rem;
}

span.op_large02 {
  text-decoration: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: 1.4375rem;
}

span.op_mideamu {
  text-decoration: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: 0.9375rem;
}

span.op_small {
  display: inline-block;
  line-height: 1.8;
  text-decoration: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: 0.75rem;
}

/*-----------------------------------------------------------文字の下付上付*/
sub {
  font-size: 75.5%;
  vertical-align: bottom;
}

sup {
  font-size: 75.5%;
  vertical-align: top;
}

/*-----------------------------------------------------------他装飾*/
.cke_editable .text_attention,
.text_attention {
  padding: 0 0 0 25px;
  background: url(../common/ico_att_mark01.png) no-repeat 0 3px;
  background-size: 20px auto;
}

.g-map {
  width: 100% !important;
}

.cke_editable .ckeditor_divline {
  background: url(../images/ckeditor_divline.gif) no-repeat;
}

/*ソーシャルボタン領域*/
.Social {
  display: none;
}

.detail_news_social {
  display: flex;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 40px;
}

.detail_news_social ul {
  display: flex;
  justify-content: center;
  margin-left: 0 !important;
}

.detail_news_social ul li {
  margin-left: 10px !important;
  list-style: none !important;
}
.detail_news_social ul li:first-child {
  margin-left: 0 !important;
}

.detail_news_social ul li::before {
  display: none;
}

.detail_news_social li a {
  vertical-align: bottom;
  display: inline-block;
  width: 34px;
  height: 34px;
  background: #1a63ac url("../images/logo_fb01.png") no-repeat center;
  background-size: auto 18px;
  border-radius: 100px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.1s ease;
}

.detail_news_social li a.tw {
  background: #57aae8 url("../images/logo_tw01.png") no-repeat center;
  background-size: auto 15px;
}

.detail_news_social li a.line {
  background: #00b900 url("../images/logo_line02.png") no-repeat center;
  background-size: auto 20px;
}

.detail_news_social li:hover a {
  transform: scale(1.1);
}

/*ソーシャルボタン領域END*/
/* ckエディター END  =============================================================== */
/* ==========================================================================
  Youtube
========================================================================== */
/* テキスト END  =============================================================== */
/* ==========================================================================
  テキスト
========================================================================== */
/* ------------------------------------------------------------ テキストインデント */
.text_mark {
  margin-left: 1em;
  text-indent: -1em;
}

.text_marks {
  margin-left: 0.857em;
  text-indent: -0.857em;
}

/* ------------------------------------------------------------ テキスト寄せ */
.text_center,
.text_center_Pc {
  text-align: center;
}

.text_right,
.text_right_Pc {
  text-align: right;
}

.text_left,
.text_left_Pc {
  text-align: left;
}

/* テキスト END  =============================================================== */
/* ==========================================================================
  編集パーツ用　番号付属リスト・チェックリスト
   ========================================================================== */
.list_num01 {
  counter-reset: item;
  list-style: none;
  padding: 0;
  margin-left: 0 !important;
}

.list_num01 li {
  position: relative;
  padding: 4px 0 4px 35px;
  margin-bottom: 10px;
  list-style: none !important;
}

.list_num01 li:before {
  counter-increment: item;
  content: counter(item);
  display: block;
  position: absolute;
  top: 0em;
  left: 0;
  font-weight: bold;
  width: 24px;
  height: 24px;
  line-height: 18px;
  border-radius: 100%;
  text-align: center;
  font-size: 0.75rem;
  background: #000;
  color: #fff;
}

.edit-area .list_check,
.cke_editable .list_check {
  list-style: none;
  padding: 0;
  position: relative;
  margin-left: 0 !important;
}

.edit-area li {
  position: relative;
  margin-bottom: 10px;
}

.list_check li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 10px;
  list-style: none !important;
}

.edit-area .list_check li:before,
.cke_editable .list_check li:before {
  box-sizing: border-box;
  position: absolute;
  content: "";
  display: block;
  top: 0.4em;
  left: 0.2em;
  height: 10px;
  width: 6px;
  transform: rotate(45deg);
  border-radius: 0;
  margin: 0;
  background: none;
  border-bottom: solid 3px #555;
  border-right: solid 3px #555;
}

.cke_editable .lay-grid > .col-1,
.cke_editable .lay-grid > .col-2,
.cke_editable .lay-grid > .col-3,
.cke_editable .lay-grid > .col-4,
.cke_editable .lay-grid > .col-5,
.cke_editable .lay-grid > .col-6,
.cke_editable .lay-grid > .col-7,
.cke_editable .lay-grid > .col-8,
.cke_editable .lay-grid > .col-9,
.cke_editable .lay-grid > .col-10,
.cke_editable .lay-grid > .col-11,
.cke_editable .lay-grid > .col-12 {
  padding: 10px;
  border: dashed 1px #dedacd;
  border-radius: 4px;
}

.lay-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.lay-grid > .col-1,
.lay-grid > .col-2,
.lay-grid > .col-3,
.lay-grid > .col-4,
.lay-grid > .col-5,
.lay-grid > .col-6,
.lay-grid > .col-7,
.lay-grid > .col-8,
.lay-grid > .col-9,
.lay-grid > .col-10,
.lay-grid > .col-11,
.lay-grid > .col-12 {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.lay-grid > .col-1 {
  width: calc(8.3333333333% - 20px);
}

.lay-grid > .col-2 {
  width: calc(16.6666666667% - 20px);
}

.lay-grid > .col-3 {
  width: calc(25% - 20px);
}

.lay-grid > .col-4 {
  width: calc(33.3333333333% - 20px);
}

.lay-grid > .col-5 {
  width: calc(41.6666666667% - 20px);
}

.lay-grid > .col-6 {
  width: calc(50% - 20px);
}

.lay-grid > .col-7 {
  width: calc(58.3333333333% - 20px);
}

.lay-grid > .col-8 {
  width: calc(66.6666666667% - 20px);
}

.lay-grid > .col-9 {
  width: calc(75% - 20px);
}

.lay-grid > .col-10 {
  width: calc(83.3333333333% - 20px);
}

.lay-grid > .col-11 {
  width: calc(91.6666666667% - 20px);
}

.lay-grid > .col-12 {
  width: calc(100% - 20px);
}

.lay-grid > .col-lg-1,
.lay-grid > .col-lg-2,
.lay-grid > .col-lg-3,
.lay-grid > .col-lg-4,
.lay-grid > .col-lg-5,
.lay-grid > .col-lg-6,
.lay-grid > .col-lg-7,
.lay-grid > .col-lg-8,
.lay-grid > .col-lg-9,
.lay-grid > .col-lg-10,
.lay-grid > .col-lg-11,
.lay-grid > .col-lg-12 {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
}

@media all and (min-width: 768px) {
  .lay-grid > .col-lg-1 {
    width: calc(8.3333333333% - 20px);
  }
  .lay-grid > .col-lg-2 {
    width: calc(16.6666666667% - 20px);
  }
  .lay-grid > .col-lg-3 {
    width: calc(25% - 20px);
  }
  .lay-grid > .col-lg-4 {
    width: calc(33.3333333333% - 20px);
  }
  .lay-grid > .col-lg-5 {
    width: calc(41.6666666667% - 20px);
  }
  .lay-grid > .col-lg-6 {
    width: calc(50% - 20px);
  }
  .lay-grid > .col-lg-7 {
    width: calc(58.3333333333% - 20px);
  }
  .lay-grid > .col-lg-8 {
    width: calc(66.6666666667% - 20px);
  }
  .lay-grid > .col-lg-9 {
    width: calc(75% - 20px);
  }
  .lay-grid > .col-lg-10 {
    width: calc(83.3333333333% - 20px);
  }
  .lay-grid > .col-lg-11 {
    width: calc(91.6666666667% - 20px);
  }
  .lay-grid > .col-lg-12 {
    width: calc(100% - 20px);
  }
  .card-box__item--lg-last {
    order: 1;
  }
}
.card-box {
  margin-top: 20px;
}

.card-box__item--fast {
  margin-top: 20px;
}

/* ==========================================================================
 アコーディオン
========================================================================== */
.parts_accordion_box {
  margin: 15px 0;
}
.parts_accordion_box .trigger {
  position: relative;
  border: solid 1px #1169e2;
  color: #fff;
  background: #1186e8;
  padding: 28px 30px 24px 60px;
  line-height: 1.4;
  font-weight: 500;
  cursor: pointer;
}
@media all and (min-width: 768px) {
  .parts_accordion_box .trigger {
    font-size: 1.0625rem;
    padding: 17px 15px 17px 55px;
  }
}
.parts_accordion_box .trigger:before {
  content: "";
  display: block;
  position: absolute;
  left: 10px;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  border-radius: 50%;
  box-sizing: border-box;
  border: solid 1px #1169e2;
  background: url("../common/ico-open-plus-r.svg") no-repeat center center, #fff;
  background-size: 14px auto, auto;
}
@media all and (min-width: 768px) {
  .parts_accordion_box .trigger:before {
    right: 15px;
    width: 36px;
    height: 36px;
    background-size: 17px auto, auto;
  }
}
.parts_accordion_box .trigger::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  height: 1px;
  background: #1169e2;
}
.parts_accordion_box .trigger.active:before {
  background: url("../common/ico-open-minus-r.svg") no-repeat center center, #fff;
  background-size: 14px 2px, auto;
}
@media all and (min-width: 768px) {
  .parts_accordion_box .trigger.active:before {
    background-size: 17px 2px, auto;
  }
}
.parts_accordion_box .acordion_tree {
  position: relative;
  padding: 20px;
  box-shadow: inset 0px 0px 0px 10px #e1efff;
  background: #fff;
  border: solid 1px #1169e2;
  border-top: none;
  z-index: 1;
}
@media all and (min-width: 768px) {
  .parts_accordion_box .acordion_tree {
    padding: 27px 30px;
    box-shadow: inset 2px 0px 0px 15px #e1efff;
  }
}

.layout_top {
  flex: 1;
  display: flex;
}
@media screen and (max-width: 767px) {
  .layout_top {
    display: block;
  }
}

.mainCont {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mainCont .menu_sublink {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  padding: 6px 13px 8px;
  background-color: rgba(63, 51, 51, 0.9);
}
@media screen and (max-width: 767px) {
  .mainCont .menu_sublink {
    display: none;
  }
}
.mainCont .menu_sublink a {
  position: relative;
  color: #fff;
  font-size: 13px;
  padding-left: 14px;
}
.mainCont .menu_sublink .subl_access {
  padding-right: 13px;
}
.mainCont .menu_sublink .subl_access:before {
  position: absolute;
  content: "";
  display: block;
  width: 9px;
  height: 13px;
  background: url(../common/ico_map01.png) no-repeat;
  background-size: contain;
  top: 50%;
  margin-top: -6.5px;
  left: 0px;
}
.mainCont .menu_sublink .subl_access:after {
  position: absolute;
  content: "/";
  display: block;
  color: #fff;
  font-size: 13px;
  top: -1px;
  right: 1px;
}
.mainCont .menu_sublink .subl_contact:before {
  position: absolute;
  content: "";
  display: block;
  width: 11px;
  height: 10px;
  background: url(../common/ico_mail01.png) no-repeat;
  background-size: contain;
  top: 50%;
  margin-top: -3px;
  left: 0px;
}

#Top {
  counter-reset: number 0;
}
#Top h2 {
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
}
#Top .h2_top {
  position: relative;
  line-height: 24px;
  padding-left: 60px;
}
@media screen and (max-width: 767px) {
  #Top .h2_top {
    padding-left: 24px;
  }
}
#Top .h2_top:before {
  position: absolute;
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background-color: #d40000;
  top: 40px;
  left: 0px;
}
@media screen and (max-width: 767px) {
  #Top .h2_top:before {
    width: 15px;
  }
}
#Top .h2_top:after {
  position: absolute;
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: #d40000;
  border-radius: 4px;
  top: 39px;
  left: 46px;
}
@media screen and (max-width: 767px) {
  #Top .h2_top:after {
    left: 18px;
  }
}
#Top .h2_top span {
  color: #cf1126;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
}
#Top #SlideArea {
  position: relative;
}
@media screen and (max-width: 767px) {
  #Top #SlideArea .slide_wrap li {
    width: 200%;
    max-height: 450px;
    overflow: hidden;
    margin: 0 -150px;
  }
}
#Top #SlideArea .slide_wrap img {
  width: -webkit-fill-available;
  width: -moz-available;
}
#Top #SlideArea .txt_mv {
  position: absolute;
  display: flex;
  align-items: start;
  margin: 0 20px;
  border-top-right-radius: 60px;
  padding: 26px 47px 24px 43px;
  background-color: rgba(255, 255, 255, 0.8);
  bottom: 24px;
}
@media screen and (max-width: 767px) {
  #Top #SlideArea .txt_mv {
    margin-left: 0px;
    margin-right: 8px;
    bottom: 8px;
  }
}
@media screen and (max-width: 550px) {
  #Top #SlideArea .txt_mv {
    padding: 20px 16px 16px 16px;
    bottom: 0px;
  }
}
#Top #SlideArea .txt_mv .txt_mv_wrap h1 {
  font-size: 33px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #Top #SlideArea .txt_mv .txt_mv_wrap h1 {
    font-size: 24px;
  }
}
#Top #SlideArea .txt_mv .txt_mv_wrap p {
  position: relative;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  #Top #SlideArea .txt_mv .txt_mv_wrap p {
    font-size: 14px;
    padding-top: 16px;
  }
}
#Top #SlideArea .txt_mv .txt_mv_wrap p:before {
  position: absolute;
  content: "";
  display: block;
  width: calc(100% - 10px);
  height: 1px;
  background-color: #fff;
  top: 2px;
  left: 10px;
}
#Top #SlideArea .txt_mv .txt_mv_wrap p:after {
  position: absolute;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-color: #cf1126;
  border-radius: 20px;
  top: 0;
  left: 0;
}
#Top #SlideArea .txt_mv .link_mv {
  display: contents;
}
#Top #SlideArea .txt_mv .link_mv img {
  width: 166px;
  margin-left: 20px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  #Top #SlideArea .txt_mv .link_mv img {
    position: absolute;
    width: 128px;
    margin-top: 0px;
    padding-left: 0px;
    right: 30px;
    top: -70px;
  }
}
#Top #SlideArea .txt_mv .link_mv:hover img {
  transform: scale(1.125);
}
#Top .news_important {
  background-color: #cf1126;
  padding: 14px 50px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #Top .news_important {
    display: block;
    padding: 12px 8px;
  }
}
#Top .news_important .important_head {
  width: 30%;
}
@media screen and (max-width: 767px) {
  #Top .news_important .important_head {
    width: 100%;
  }
}
#Top .news_important .important_head h2 {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", serif;
  margin-right: 60px;
}
@media screen and (max-width: 767px) {
  #Top .news_important .important_head h2 {
    margin-right: 0px;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
  }
}
#Top .news_important .important_body {
  width: 70%;
  height: 57px;
  overflow-y: scroll;
  scrollbar-color: #cccccc #cf1126;
  scrollbar-width: thin;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #Top .news_important .important_body {
    width: 100%;
  }
}
#Top .news_important .important_body a {
  position: relative;
  display: block;
  color: #333;
  border-bottom: 1px solid #cf1126;
  padding: 10px 30px 9px 10px;
  transition: 0.3s;
}
#Top .news_important .important_body a:before {
  display: block;
  position: absolute;
  content: "";
  width: 10px;
  height: 11px;
  background: url(../common/ico_arrow01.png) no-repeat;
  background-size: contain;
  top: 50%;
  margin-top: -5.5px;
  right: 40px;
  transition: 0.3s;
}
#Top .news_important .important_body a:hover:before {
  right: 37px;
}
#Top .news_important .important_body a:last-child {
  border-bottom: none;
}
#Top #NewsArea {
  margin-top: 50px;
}
#Top #NewsArea .news_wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #Top #NewsArea .news_wrap {
    display: block;
  }
}
#Top #NewsArea .news_wrap .news_info {
  width: 30%;
}
@media screen and (max-width: 767px) {
  #Top #NewsArea .news_wrap .news_info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-right: 8px;
  }
}
#Top #NewsArea .news_wrap .news_info a {
  display: block;
  width: 184px;
  color: #333333;
  font-size: 15px;
  border: 1px solid #d40000;
  background-color: #fff;
  box-shadow: 3px 3px 10px rgba(212, 0, 0, 0.2);
  border-radius: 30px;
  padding: 3px 47px 3px 37px;
  margin-top: 24px;
  margin-left: 26px;
  font-weight: 500;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  #Top #NewsArea .news_wrap .news_info a {
    width: 140px;
    padding: 3px 24px;
    margin-left: 0px;
  }
}
#Top #NewsArea .news_wrap .news_info a:hover {
  background-color: #d40000;
  color: #fff;
}
#Top #NewsArea .news_wrap .news_block {
  width: 70%;
  height: 240px;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  #Top #NewsArea .news_wrap .news_block {
    width: 95%;
    margin: 20px 8px 0;
  }
}
#Top #NewsArea .news_wrap .news_block a {
  position: relative;
  display: block;
}
#Top #NewsArea .news_wrap .news_block a:hover:after {
  right: 37px;
}
@media screen and (max-width: 767px) {
  #Top #NewsArea .news_wrap .news_block a {
    display: flex;
  }
}
#Top #NewsArea .news_wrap .news_block a:after {
  display: block;
  position: absolute;
  content: "";
  width: 10px;
  height: 11px;
  background: url(../common/ico_arrow01.png) no-repeat;
  background-size: contain;
  top: 50%;
  margin-top: -5.5px;
  right: 40px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  #Top #NewsArea .news_wrap .news_block a:after {
    display: none;
  }
}
#Top #NewsArea .news_wrap .news_block .news_detail {
  position: relative;
  border-bottom: 1px solid #bcbcbc;
  padding: 34px 0 24px 20px;
}
@media screen and (max-width: 767px) {
  #Top #NewsArea .news_wrap .news_block .news_detail {
    width: auto;
    padding: 0px;
    border-top: 0px;
    border-bottom: 1px solid #bcbcbc;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #Top #NewsArea .news_wrap .news_block .news_detail {
    display: flex;
  }
}
#Top #NewsArea .news_wrap .news_block .news_detail:before {
  display: block;
  position: absolute;
  content: "";
  width: 90px;
  height: 1px;
  background-color: #cf1126;
  bottom: -1px;
  right: 0;
}
@media screen and (max-width: 767px) {
  #Top #NewsArea .news_wrap .news_block .news_detail:before {
    display: none;
  }
}
#Top #NewsArea .news_wrap .news_block .news_detail article {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #Top #NewsArea .news_wrap .news_block .news_detail article {
    display: block;
    padding: 18px 0 18px 10px;
  }
}
#Top #NewsArea .news_wrap .news_block .news_detail span {
  color: #333333;
}
#Top #NewsArea .news_wrap .news_block .news_detail .date {
  padding-right: 17px;
}
@media screen and (max-width: 767px) {
  #Top #NewsArea .news_wrap .news_block .news_detail .date {
    display: inline;
    margin-left: 0px;
    margin-right: 12px;
    font-size: 0.875rem;
    padding: 0px;
  }
}
#Top #NewsArea .news_wrap .news_block .news_detail .thumb {
  position: relative;
  margin-right: 20px;
  padding-right: 24px;
  border-right: 1px solid #ebe8e8;
  left: 0;
  float: left;
}
@media screen and (max-width: 767px) {
  #Top #NewsArea .news_wrap .news_block .news_detail .thumb {
    padding-right: 14px;
    margin-right: 10px;
    margin: 18px 10px 18px 20px;
    height: 60px;
  }
}
#Top #NewsArea .news_wrap .news_block .news_detail .thumb img {
  width: 60px !important;
  height: 60px !important;
  border: 1px solid #cf1126;
}
@media screen and (max-width: 767px) {
  #Top #NewsArea .news_wrap .news_block .news_detail .thumb img {
    display: block;
    min-width: 60px;
  }
}
#Top #NewsArea .news_wrap .news_block .news_detail .new {
  color: #cf1126;
  padding-right: 17px;
  font-size: 13px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #Top #NewsArea .news_wrap .news_block .news_detail .new {
    display: inline;
    margin-right: 15px;
    font-size: 11px;
    letter-spacing: 2px;
    padding-right: 0px;
  }
}
#Top #NewsArea .news_wrap .news_block .news_detail .cate {
  background-color: #f0f4f8;
  padding: 2px 24px;
  font-size: 13px;
  margin-right: 10px;
  border-radius: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #Top #NewsArea .news_wrap .news_block .news_detail .cate {
    display: inline;
    margin-right: 15px;
    font-size: 11px;
    letter-spacing: normal;
    padding: 0px 15px;
  }
}
#Top #NewsArea .news_wrap .news_block .news_detail .text {
  width: 100%;
  padding-right: 60px;
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  #Top #NewsArea .news_wrap .news_block .news_detail .text {
    display: block;
    margin-top: 4px;
    margin-left: 0px;
    padding-right: 0px;
    overflow: hidden;
  }
}
#Top #NewsArea .news_wrap .news_block .news_detail:last-child {
  border-bottom: 1px solid #bcbcbc;
}
#Top #ContentArea {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea {
    margin-top: 48px;
  }
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_wrap {
    position: relative;
    padding-top: 54px;
  }
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_wrap .h2_top {
    position: absolute;
    top: 100px;
  }
}
#Top #ContentArea .content_list_wrap {
  margin-top: 60px;
  margin-bottom: 100px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_list_wrap {
    margin-top: 0px;
    margin-bottom: 45px;
    padding: 0;
  }
}
#Top #ContentArea .content_list_wrap ul {
  background-color: rgba(242, 245, 249, 0.9);
  border-top-right-radius: 30px;
  padding: 40px 30px 7px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_list_wrap ul {
    padding: 137px 16px 7px 23px;
  }
}
#Top #ContentArea .content_list_wrap ul li {
  position: relative;
  counter-increment: number 1;
  content: counter(number) " ";
  background-color: #fff;
  border-top-right-radius: 30px;
  box-shadow: 3px 3px 10px rgba(212, 0, 0, 0.2);
  margin-left: 25px;
  margin-right: 25px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_list_wrap ul li {
    width: 45%;
    margin-left: 7px;
    margin-right: 7px;
  }
}
#Top #ContentArea .content_list_wrap ul li:before {
  position: absolute;
  display: block;
  content: counter(number, decimal-leading-zero);
  top: 0px;
  left: 11px;
  font-size: 28px;
  font-weight: 600;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_list_wrap ul li:before {
    font-size: 18px;
  }
}
#Top #ContentArea .content_list_wrap ul li a {
  position: relative;
  display: block;
  min-width: 247px;
  text-align: center;
  transition: 0.3s;
}
#Top #ContentArea .content_list_wrap ul li a:hover {
  opacity: 0.6;
  transform: translate(0, 5px);
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_list_wrap ul li a {
    min-width: auto;
  }
}
#Top #ContentArea .content_list_wrap ul li a span {
  color: #030000;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_list_wrap ul li a span {
    font-size: 14px;
  }
}
#Top #ContentArea .content_list_wrap ul li:nth-child(1) a {
  background: url(../images/pic_top_menu01.png) no-repeat;
  background-size: 107px 79px;
  background-position: top 66px center;
  padding: 170px 70px 32px;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_list_wrap ul li:nth-child(1) a {
    padding: 110px 0 18px;
    background-size: 67px 50px;
    background-position: top 40px center;
  }
}
#Top #ContentArea .content_list_wrap ul li:nth-child(1) a:before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #e13549 0%, #eb5955 80%, #ba4844 81%);
  bottom: -13px;
  left: 0;
}
#Top #ContentArea .content_list_wrap ul li:nth-child(1) a:after {
  display: block;
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  background-color: #fff;
  border-top: 1px solid #e03649;
  border-left: 1px solid #e03649;
  border-bottom-right-radius: 80px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_list_wrap ul li:nth-child(1) a:after {
    width: 52px;
    height: 52px;
  }
}
#Top #ContentArea .content_list_wrap ul li:nth-child(1):before {
  color: #eb0d0d;
}
#Top #ContentArea .content_list_wrap ul li:nth-child(2) a {
  background: url(../images/pic_top_menu02.png) no-repeat;
  background-size: 114px 91px;
  background-position: top 56px center;
  padding: 170px 28px 32px;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_list_wrap ul li:nth-child(2) a {
    padding: 110px 0 18px;
    background-size: 72px 62px;
    background-position: top 34px center;
  }
}
#Top #ContentArea .content_list_wrap ul li:nth-child(2) a:before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #3a8714 0%, #62a71b 80%, #519513 81%);
  bottom: -13px;
  left: 0;
}
#Top #ContentArea .content_list_wrap ul li:nth-child(2) a:after {
  display: block;
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  background-color: #fff;
  border-top: 1px solid #65a63a;
  border-left: 1px solid #65a63a;
  border-bottom-right-radius: 80px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_list_wrap ul li:nth-child(2) a:after {
    width: 52px;
    height: 52px;
  }
}
#Top #ContentArea .content_list_wrap ul li:nth-child(2):before {
  color: #3a8714;
}
#Top #ContentArea .content_list_wrap ul li:nth-child(3) a {
  background: url(../images/pic_top_menu03.png) no-repeat;
  background-size: 107px 107px;
  background-position: top 54px center;
  padding: 170px 18px 32px;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_list_wrap ul li:nth-child(3) a {
    padding: 110px 0 18px;
    background-size: 68px 68px;
    background-position: top 34px center;
  }
}
#Top #ContentArea .content_list_wrap ul li:nth-child(3) a:before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #2b86ad 0%, #4ea7b5 80%, #3f858e 81%);
  bottom: -13px;
  left: 0;
}
#Top #ContentArea .content_list_wrap ul li:nth-child(3) a:after {
  display: block;
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  background-color: #fff;
  border-top: 1px solid #59a6c1;
  border-left: 1px solid #59a6c1;
  border-bottom-right-radius: 80px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_list_wrap ul li:nth-child(3) a:after {
    width: 52px;
    height: 52px;
    border-bottom-right-radius: 40px;
  }
}
#Top #ContentArea .content_list_wrap ul li:nth-child(3):before {
  color: #2b86ad;
}
#Top #ContentArea .content_list_wrap ul li:nth-child(4) a {
  background: url(../images/pic_top_menu04.png) no-repeat;
  background-size: 102px 104px;
  background-position: top 50px center;
  padding: 170px 28px 32px;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_list_wrap ul li:nth-child(4) a {
    padding: 110px 0 18px;
    background-size: 64px 66px;
    background-position: top 30px center;
  }
}
#Top #ContentArea .content_list_wrap ul li:nth-child(4) a:before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #efbe0a 0%, #f5d20d 80%, #c1a70a 81%);
  bottom: -13px;
  left: 0;
}
#Top #ContentArea .content_list_wrap ul li:nth-child(4) a:after {
  display: block;
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  background-color: #fff;
  border-top: 1px solid #f3cf28;
  border-left: 1px solid #f3cf28;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_list_wrap ul li:nth-child(4) a:after {
    width: 52px;
    height: 52px;
    border-bottom-right-radius: 40px;
  }
}
#Top #ContentArea .content_list_wrap ul li:nth-child(4):before {
  color: #f3cb18;
}
#Top #ContentArea .content_list_wrap ul li:nth-child(5) a {
  background: url(../images/pic_top_menu05.png) no-repeat;
  background-size: 84px 125px;
  background-position: top 36px center;
  padding: 170px 40px 32px;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_list_wrap ul li:nth-child(5) a {
    padding: 110px 0 18px;
    background-size: 52px 79px;
    background-position: top 23px center;
  }
}
#Top #ContentArea .content_list_wrap ul li:nth-child(5) a:before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #c636a4 0%, #da5aad 80%, #ac4988 81%);
  bottom: -13px;
  left: 0;
}
#Top #ContentArea .content_list_wrap ul li:nth-child(5) a:after {
  display: block;
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  background-color: #fff;
  border-top: 1px solid #c140ac;
  border-left: 1px solid #c140ac;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_list_wrap ul li:nth-child(5) a:after {
    width: 52px;
    height: 52px;
    border-bottom-right-radius: 40px;
  }
}
#Top #ContentArea .content_list_wrap ul li:nth-child(5):before {
  color: #c636a4;
}
#Top #ContentArea .content_list_wrap ul li:nth-child(6) a {
  background: url(../images/pic_top_menu06.png) no-repeat;
  background-size: 83px 114px;
  background-position: top 50px center;
  padding: 170px 70px 32px;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_list_wrap ul li:nth-child(6) a {
    padding: 110px 0 18px;
    background-size: 54px 74px;
    background-position: top 30px center;
  }
}
#Top #ContentArea .content_list_wrap ul li:nth-child(6) a:before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #ee7d13 0%, #f4a019 80%, #c08014 81%);
  bottom: -40px;
  left: 0;
}
#Top #ContentArea .content_list_wrap ul li:nth-child(6) a:after {
  display: block;
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  background-color: #fff;
  border-top: 1px solid #f09129;
  border-left: 1px solid #f09129;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_list_wrap ul li:nth-child(6) a:after {
    width: 52px;
    height: 52px;
    border-bottom-right-radius: 40px;
  }
}
#Top #ContentArea .content_list_wrap ul li:nth-child(6):before {
  color: #ee7d13;
}
#Top #ContentArea .content_block {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
}
#Top #ContentArea .content_block .block01 {
  position: relative;
  width: 578px;
  margin: 0 20px 0 auto;
  padding: 50px;
  background-color: #fff;
  box-sizing: border-box;
  top: 80px;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_block .block01 {
    width: 100%;
    margin-top: 45px;
    top: 228px;
    margin-left: 17px;
    padding: 42px 33px;
  }
}
#Top #ContentArea .content_block .block02 {
  position: relative;
  width: 578px;
  margin: 120px 20px 0 auto;
  padding: 50px;
  background-color: #fff;
  box-sizing: border-box;
  top: 120px;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_block .block02 {
    width: 100%;
    margin-top: 45px;
    top: 200px;
    margin-left: 17px;
    padding: 42px 33px;
  }
}
#Top #ContentArea .content_block .block02 a span {
  position: relative;
}
#Top #ContentArea .content_block .block02 a:nth-child(2) span:before {
  display: block;
  content: "";
  position: absolute;
  width: 23px;
  height: 25px;
  background: url(../common/ico_lock01.png) no-repeat;
  background-size: contain;
  top: 0;
  right: -30px;
}
#Top #ContentArea .content_block .block02 a:nth-child(3) span:before {
  display: block;
  content: "";
  position: absolute;
  width: 24px;
  height: 30px;
  background: url(../common/ico_doc02.png) no-repeat;
  background-size: contain;
  top: -4px;
  right: -32px;
}
#Top #ContentArea .content_block .h3_top {
  position: relative;
  font-size: 24px;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 20px;
  padding-left: 30px;
}
#Top #ContentArea .content_block .h3_top:before {
  display: block;
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #f11212;
  border-radius: 10px;
  top: 20px;
  left: 10px;
}
#Top #ContentArea .content_block .h3_top span {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 400;
  font-size: 20px;
  color: #cf1414;
  padding-left: 8px;
}
#Top #ContentArea .content_block a {
  position: relative;
  display: block;
  padding: 30px 72px 30px 35px;
  border-bottom: 1px solid #a7a7a7;
  color: #333333;
  transition: 0.3s;
}
#Top #ContentArea .content_block a:before {
  display: block;
  content: "";
  position: absolute;
  width: 90px;
  height: 1px;
  background-color: #cf1126;
  bottom: -1px;
  right: 0;
}
#Top #ContentArea .content_block a:after {
  display: block;
  content: "";
  position: absolute;
  width: 56px;
  height: 56px;
  background-color: #fff;
  border: 1px solid #cf1126;
  border-radius: 30px;
  background-image: url(../common/ico_arrow01.png);
  background-repeat: no-repeat;
  background-size: 10px 11px;
  background-position: top 50% left 50%;
  top: 50%;
  margin-top: -28px;
  right: 17px;
  box-shadow: 3px 3px 10px rgba(212, 0, 0, 0.2);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_block a:after {
    width: 50px;
    height: 50px;
  }
}
#Top #ContentArea .content_block a:hover {
  text-shadow: 2px 1px 4px rgba(153, 153, 153, 0.4);
}
#Top #ContentArea .content_block a:hover:after {
  box-shadow: 2px 2px 9px rgba(212, 0, 0, 0.4);
  transform: translate(2px, 1px);
}
#Top #ContentArea .blockwrap01:before {
  display: block;
  content: "";
  position: absolute;
  width: 340px;
  height: 380px;
  background: url(../images/img_top02.jpg) no-repeat;
  background-size: contain;
  top: 0;
  left: 50px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .blockwrap01:before {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .blockwrap02 {
    margin-top: 260px;
  }
}
#Top #ContentArea .blockwrap02:before {
  display: block;
  content: "";
  position: absolute;
  width: 340px;
  height: 380px;
  background: url(../images/img_top03.jpg) no-repeat;
  background-size: contain;
  top: 0;
  left: 50px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .blockwrap02:before {
    left: 0;
  }
}
#Top #ContentArea .content_contact {
  margin-top: 130px;
  background: url(../images/img_top04.jpg) no-repeat;
  background-size: cover;
  padding: 30px 30px 24px;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_contact {
    margin-top: 228px;
    padding: 10px 8px;
    background-position: top 30% left 85%;
  }
}
#Top #ContentArea .content_contact .contact_wrap {
  display: block;
  position: relative;
  border-top-right-radius: 60px;
  padding: 60px 33px 60px 30px;
  color: #333333;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_contact .contact_wrap {
    border-top-right-radius: 30px;
  }
}
#Top #ContentArea .content_contact .contact_wrap:hover:before {
  box-shadow: 2px 2px 9px rgba(212, 0, 0, 0.4);
  transform: translate(2px, 1px);
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_contact .contact_wrap {
    padding: 30px 24px 54px;
  }
}
#Top #ContentArea .content_contact .contact_wrap:before {
  display: block;
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: #fff;
  border: 1px solid #cf1126;
  border-radius: 70px;
  background-image: url(../common/ico_arrow01.png);
  background-repeat: no-repeat;
  background-size: 16px 17px;
  background-position: top 50% left 50%;
  top: 50%;
  margin-top: -35px;
  right: 30px;
  box-shadow: 3px 3px 10px rgba(212, 0, 0, 0.2);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_contact .contact_wrap:before {
    border: 0px;
    width: 30px;
    height: 30px;
    right: 50%;
    margin-right: -15px;
    top: auto;
    bottom: 11px;
    background-size: 6px 6px;
  }
}
#Top #ContentArea .content_contact .contact_wrap .h3_top {
  position: relative;
  font-size: 24px;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_contact .contact_wrap .h3_top {
    text-align: center;
    line-height: 26px;
  }
}
#Top #ContentArea .content_contact .contact_wrap .h3_top:before {
  display: block;
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #f11212;
  border-radius: 10px;
  top: 20px;
  left: -10px;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_contact .contact_wrap .h3_top:before {
    display: none;
  }
}
#Top #ContentArea .content_contact .contact_wrap .h3_top:after {
  position: absolute;
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background-color: #d40000;
  top: 22.5px;
  left: -60px;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_contact .contact_wrap .h3_top:after {
    display: none;
  }
}
#Top #ContentArea .content_contact .contact_wrap .h3_top span {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 400;
  font-size: 20px;
  color: #cf1414;
  padding-left: 8px;
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_contact .contact_wrap .h3_top span {
    padding-left: 0px;
  }
}
@media screen and (max-width: 767px) {
  #Top #ContentArea .content_contact .contact_wrap p {
    text-align: center;
    font-size: 12px;
  }
}
#Top #BannerArea {
  margin-top: 80px;
}
#Top #BannerArea .banner_wrap {
  padding: 0 20px 10px;
}
#Top #BannerArea .banner_wrap ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 940px;
  margin: 0 auto;
}
#Top #BannerArea .banner_wrap ul li {
  border: solid 1px;
  width: calc(33.33% - 10px);
  margin-right: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #Top #BannerArea .banner_wrap ul li {
    width: auto;
    width: calc(50% - 10px);
    margin: 10px auto 0;
  }
}
#Top #BannerArea .banner_wrap ul li img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#Top #BannerArea .banner_wrap ul li:nth-child(3n) {
  margin-right: 0px;
}
@media screen and (max-width: 767px) {
  #Top #BannerArea .banner_wrap ul li:nth-child(3n) {
    margin-right: auto;
  }
}
#Top #BannerArea .banner_wrap ul li:last-child {
  margin-right: 0px;
}
@media screen and (max-width: 767px) {
  #Top #BannerArea .banner_wrap ul li:last-child {
    margin-right: auto;
    margin-bottom: 0px;
  }
}
#Top #TextBannerArea {
  margin: 50px auto;
}
@media screen and (max-width: 767px) {
  #Top #TextBannerArea {
    margin: 40px auto;
  }
}
#Top #TextBannerArea ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 940px;
  margin: 0 30px;
}
#Top #TextBannerArea ul li {
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #Top #TextBannerArea ul li {
    width: 100%;
    margin: 0;
    margin-bottom: 18px;
  }
}
#Top #TextBannerArea ul li:last-child {
  margin-right: 0px;
}
@media screen and (max-width: 767px) {
  #Top #TextBannerArea ul li:last-child {
    margin-bottom: 0px;
  }
}
#Top #TextBannerArea ul a {
  position: relative;
  display: flex;
  align-items: center;
  width: 262px;
  height: 58px;
  padding-left: 34px;
  border: 1px solid #f11212;
  background-color: #fdf1f1;
  box-shadow: 3px 3px 10px rgba(212, 0, 0, 0.2);
  transition: 0.3s;
}
#Top #TextBannerArea ul a:hover {
  transform: translate(1px, 1px);
  box-shadow: 4px 4px 11px rgba(212, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  #Top #TextBannerArea ul a {
    width: 100%;
  }
}
#Top #TextBannerArea ul a:before {
  display: block;
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background: url(../common/ico_arrow04.png) no-repeat;
  background-size: contain;
  top: 50%;
  margin-top: -4.5px;
  left: 16px;
}
@media screen and (max-width: 767px) {
  #Top #TextBannerArea ul a:before {
    width: 18px;
    height: 18px;
    background: url(../common/ico_arrow05.png) no-repeat;
    background-size: contain;
    margin-top: -9px;
    left: 8px;
  }
}
#Top #TextBannerArea ul a:after {
  display: block;
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: url(../common/ico_arrow03.png) no-repeat;
  background-size: contain;
  bottom: 8px;
  right: 7px;
}
#Top #TextBannerArea ul a span {
  color: #333333;
  line-height: 18px;
}

.block_contents {
  justify-content: space-between;
}

.l-flex-container {
  padding: 10px 20px 0;
  background: #f5f8fb;
}
@media screen and (max-width: 767px) {
  .l-flex-container {
    padding: 10px 8px 0;
  }
}

#content .contents_head {
  position: relative;
  height: 342px;
  background: url(../images/tit_detail01.jpg) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  #content .contents_head {
    height: 170px;
  }
}
#content .contents_head:before {
  position: absolute;
  display: block;
  content: "";
  width: calc(100% - 33px);
  height: calc(100% - 45px);
  border: 1px solid #cf1126;
  top: 22px;
  left: 17px;
  z-index: 1;
}
#content .contents_head.head_request {
  background: url(../images/tit_detail02.jpg) no-repeat;
  background-size: cover;
}
#content .contents_head .h1_titlearea {
  padding-top: 130px;
  margin: 0 10px;
}
@media screen and (max-width: 767px) {
  #content .contents_head .h1_titlearea {
    padding-top: 50px;
  }
}
#content .contents_head .h1_titlearea h1 {
  display: inline-block;
  padding: 16px 38px;
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #content .contents_head .h1_titlearea h1 {
    font-size: 1.125rem;
    padding: 16px 20px;
    line-height: 1.6rem;
  }
}
#content .head_news {
  position: relative;
  height: 214px;
  background: linear-gradient(to right, #fbdddd, #ffffff 35%, #ffefef);
}
@media screen and (max-width: 767px) {
  #content .head_news {
    height: 190px;
  }
}
#content .head_news:after {
  display: block;
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 100px solid transparent;
  border-bottom: 100px solid #fce2e3;
  border-right: 0;
  border-left: 100px solid transparent;
  right: 0;
  bottom: 0;
}
#content .head_news .h1_titlearea {
  padding-top: 63px;
}
#content .tit_news {
  max-width: 1020px;
  margin: 20px auto 0;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  #content .tit_news {
    padding: 0 10px 10px;
  }
}
#content .tit_news .day {
  margin-bottom: 10px;
}
#content .tit_news .day span {
  background: #eee;
  border-radius: 30px;
  padding: 5px 15px;
  font-size: 0.9em;
  margin-right: 10px;
}
#content .tit_news .cate_detail span {
  color: #cf1126;
  text-decoration: underline;
}
#content .tit_news h2 {
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  #content .tit_news h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
#content .edit-area {
  max-width: 1020px;
  padding: 20px 30px 60px;
  background: #fff;
  margin: 0 auto;
  min-height: 435px;
}
@media screen and (max-width: 767px) {
  #content .edit-area {
    margin: 10px auto 0;
    padding: 10px 10px 30px;
  }
}
#content .edit-area .passward_wrap {
  margin-top: 50px;
}
#content .edit-area .passward_wrap p {
  font-weight: bold;
}
#content .edit-area .passward_wrap input.passward {
  width: 320px;
  padding: 8px;
  border: 1px solid #000;
}
@media screen and (max-width: 767px) {
  #content .edit-area .passward_wrap input.passward {
    width: 100%;
  }
}
#content .edit-area .passward_wrap input.button {
  width: 100px;
  padding: 8px;
  border: 1px solid #cf1126;
  background-color: #cf1126;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #content .edit-area .passward_wrap input.button {
    margin-top: 10px;
    width: 80%;
  }
}
#content .edit-area .passward_wrap .pass_err {
  width: 80%;
  margin: 20px auto;
  background-color: #eee;
  padding: 8px 12px;
}
@media screen and (max-width: 767px) {
  #content .edit-area .passward_wrap .pass_err {
    width: 100%;
    font-size: 0.875rem;
  }
}
#content .news-area {
  width: 1000px;
  margin: 0px auto;
  padding: 50px 40px 60px;
}
@media screen and (max-width: 767px) {
  #content .news-area {
    width: 100%;
    padding: 40px 16px 50px;
  }
}
#content .news-area .news_select_cate .select_cate_head {
  position: relative;
  font-size: 1.125rem;
  margin-bottom: 10px;
  padding-left: 30px;
}
#content .news-area .news_select_cate .select_cate_head::before {
  position: absolute;
  content: "";
  display: block;
  width: 15px;
  height: 2px;
  background-color: #d40000;
  top: 50%;
  left: 0px;
}
#content .news-area .news_select_cate .select_cate_head:after {
  position: absolute;
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: #d40000;
  border-radius: 4px;
  top: 50%;
  margin-top: -1px;
  left: 18px;
}
#content .news-area .news_select_cate .select_cate_body li {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
}
#content .news-area .news_select_cate .select_cate_body li a {
  cursor: pointer;
  font-size: 0.8125rem;
  position: relative;
  padding: 8px 15px;
  color: #333;
  border: 1px solid #333;
  background: #fff;
  display: block;
  transition: all 0.3s;
  transition: 0.3s;
}
#content .news-area .news_select_cate .select_cate_body li a:hover {
  color: #fff;
  background-color: #cf1126;
}
#content .news-area .news_body a {
  position: relative;
  display: block;
  transition: 0.3s;
}
#content .news-area .news_body a:hover {
  background-color: #fff6f7;
}
#content .news-area .news_body a:hover:after {
  right: 33px;
}
@media screen and (max-width: 767px) {
  #content .news-area .news_body a {
    display: flex;
  }
}
#content .news-area .news_body a:after {
  display: block;
  position: absolute;
  content: "";
  width: 10px;
  height: 11px;
  background: url(../common/ico_arrow01.png) no-repeat;
  background-size: contain;
  top: 50%;
  margin-top: -5.5px;
  right: 40px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  #content .news-area .news_body a:after {
    display: none;
  }
}
#content .news-area .news_body .news_detail {
  position: relative;
  border-bottom: 1px solid #bcbcbc;
  padding: 24px 0 24px 20px;
}
@media screen and (max-width: 767px) {
  #content .news-area .news_body .news_detail {
    width: 100%;
    padding: 0px;
    border-top: 0px;
    border-bottom: 1px solid #bcbcbc;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #content .news-area .news_body .news_detail {
    display: flex;
  }
}
#content .news-area .news_body .news_detail:before {
  display: block;
  position: absolute;
  content: "";
  width: 90px;
  height: 1px;
  background-color: #cf1126;
  bottom: -1px;
  right: 0;
}
@media screen and (max-width: 767px) {
  #content .news-area .news_body .news_detail:before {
    display: none;
  }
}
#content .news-area .news_body .news_detail article {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #content .news-area .news_body .news_detail article {
    display: block;
    padding: 18px 0 18px 10px;
  }
}
#content .news-area .news_body .news_detail span {
  color: #333333;
}
#content .news-area .news_body .news_detail .date {
  padding-right: 17px;
}
@media screen and (max-width: 767px) {
  #content .news-area .news_body .news_detail .date {
    display: inline;
    margin-left: 0px;
    margin-right: 12px;
    font-size: 0.875rem;
    padding: 0px;
  }
}
#content .news-area .news_body .news_detail .thumb {
  position: relative;
  margin-right: 20px;
  padding-right: 24px;
  border-right: 1px solid #ebe8e8;
  left: 0;
  float: left;
}
@media screen and (max-width: 767px) {
  #content .news-area .news_body .news_detail .thumb {
    padding-right: 14px;
    margin-right: 10px;
    margin: 18px 10px 18px 20px;
    height: 60px;
  }
}
#content .news-area .news_body .news_detail .thumb img {
  width: 60px !important;
  height: 60px !important;
  border: 1px solid #cf1126;
}
@media screen and (max-width: 767px) {
  #content .news-area .news_body .news_detail .thumb img {
    display: block;
    min-width: 60px;
  }
}
#content .news-area .news_body .news_detail .new {
  color: #cf1126;
  padding-right: 17px;
  font-size: 13px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #content .news-area .news_body .news_detail .new {
    display: inline;
    margin-right: 15px;
    font-size: 11px;
    letter-spacing: 2px;
    padding-right: 0px;
  }
}
#content .news-area .news_body .news_detail .cate {
  background-color: #f0f4f8;
  padding: 2px 24px;
  margin-right: 10px;
  font-size: 13px;
  border-radius: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #content .news-area .news_body .news_detail .cate {
    display: inline;
    margin-right: 15px;
    font-size: 11px;
    letter-spacing: normal;
    padding: 0px 15px;
  }
}
#content .news-area .news_body .news_detail .text {
  width: 100%;
  padding-right: 60px;
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  #content .news-area .news_body .news_detail .text {
    display: block;
    margin-top: 4px;
    margin-left: 0px;
    padding-right: 0px;
    overflow: hidden;
  }
}
#content .news-area .news_count_txt {
  font-size: 0.875rem;
  margin-top: 30px;
}
#content .news-area .news_paging {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 10px 0 0px;
}
#content .news-area .news_paging p {
  width: 25%;
}
#content .news-area .news_paging p a {
  padding: 15px 0;
  text-align: center;
  color: #333;
  display: block;
  text-decoration: none;
  transition: 0.3s;
  background-color: #fff;
  border: 1px solid #cf1126;
  border-right: 0;
  box-sizing: border-box;
  transition: 0.3s;
}
#content .news-area .news_paging p a:hover {
  background-color: #ffebed;
}
#content .news-area .news_paging p:nth-of-type(4) a {
  border-right: 1px solid #cf1126;
}
#content .passward_wrap .err_text {
  width: 75%;
  margin: 26px auto 10px;
  padding: 12px 10px;
  background-color: #eee;
  color: #f01;
}
@media screen and (max-width: 767px) {
  #content .passward_wrap .err_text {
    width: 100%;
  }
}
#content .nav_page {
  max-width: 1020px;
  background-color: #f5f8fb;
}
#content .nav_page ul {
  display: flex;
  margin: 10px auto;
  padding: 0 16px;
  align-items: center;
  overflow: scroll;
  white-space: nowrap;
}
#content .nav_page ul li {
  position: relative;
  font-size: 0.75rem;
  margin: 0 15px;
}
#content .nav_page ul li:before {
  display: block;
  content: "";
  position: absolute;
  width: 5px;
  height: 7px;
  background: url(../common/ico_arrow09.png) no-repeat;
  background-size: contain;
  top: 50%;
  margin-top: -3.5px;
  right: -17px;
  transition: 0.3s;
}
#content .nav_page ul li a {
  color: #333;
}
#content .nav_page ul li:last-child:before {
  display: none;
}

.cke_editable .content_list_wrap,
#content .content_list_wrap {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .cke_editable .content_list_wrap,
#content .content_list_wrap {
    margin-top: 0px;
    margin-bottom: 45px;
    padding: 0;
  }
}
.cke_editable .content_list_wrap ul,
#content .content_list_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: 0;
}
.cke_editable .content_list_wrap ul li,
#content .content_list_wrap ul li {
  position: relative;
  counter-increment: number 1;
  content: counter(number) " ";
  background-color: #fff;
  display: flex;
  align-items: stretch;
  box-shadow: 3px 3px 10px rgba(212, 0, 0, 0.2);
  margin: 10px 10px 20px;
}
.cke_editable .content_list_wrap ul li:hover,
#content .content_list_wrap ul li:hover {
  opacity: 0.6;
  transform: translate(0, 5px);
}
@media screen and (max-width: 767px) {
  .cke_editable .content_list_wrap ul li,
#content .content_list_wrap ul li {
    margin: 5px;
  }
}
.cke_editable .content_list_wrap ul li:before,
#content .content_list_wrap ul li:before {
  position: absolute;
  display: block;
  content: counter(number, decimal-leading-zero);
  top: 0px;
  left: 11px;
  font-size: 28px;
  font-weight: 600;
  z-index: 1;
  margin: 0;
  height: 0;
  width: 0;
}
@media screen and (max-width: 767px) {
  .cke_editable .content_list_wrap ul li:before,
#content .content_list_wrap ul li:before {
    font-size: 18px;
  }
}
.cke_editable .content_list_wrap ul li a,
#content .content_list_wrap ul li a {
  position: relative;
  padding: 180px 20px 42px;
  display: block;
  min-width: 200px;
  text-align: center;
  font-size: 15px;
  transition: 0.3s;
}
.cke_editable .content_list_wrap ul li a:after,
#content .content_list_wrap ul li a:after {
  display: block;
  content: "";
  position: absolute;
  z-index: 1;
  width: 36px;
  height: 36px;
  background-image: url(../common/ico_arrow07.png);
  background-repeat: no-repeat;
  background-size: 10px 11px;
  background-position: top 50% left 50%;
  bottom: 10px;
  right: 10px;
}
@media screen and (max-width: 767px) {
  .cke_editable .content_list_wrap ul li a:after,
#content .content_list_wrap ul li a:after {
    background-size: 7px 8px;
    bottom: 7px;
    right: 3px;
  }
}
.cke_editable .content_list_wrap ul li a:hover:after,
#content .content_list_wrap ul li a:hover:after {
  transform: rotate(360deg);
}
@media screen and (max-width: 767px) {
  .cke_editable .content_list_wrap ul li a,
#content .content_list_wrap ul li a {
    min-width: 120px;
    width: 150px;
    padding: 110px 20px 18px;
    font-size: 16px;
  }
}
.cke_editable .content_list_wrap ul li a span,
#content .content_list_wrap ul li a span {
  color: #030000;
}
@media screen and (max-width: 767px) {
  .cke_editable .content_list_wrap ul li a span,
#content .content_list_wrap ul li a span {
    font-size: 14px;
  }
}
.cke_editable .content_list_wrap ul li:nth-child(1) a,
#content .content_list_wrap ul li:nth-child(1) a {
  background: url(../images/pic_top_menu01.png) no-repeat;
  background-size: 107px 79px;
  background-position: top 66px center;
  border: solid 1px #e13549;
  border-bottom: solid 6px #e13549;
}
@media screen and (max-width: 767px) {
  .cke_editable .content_list_wrap ul li:nth-child(1) a,
#content .content_list_wrap ul li:nth-child(1) a {
    background-size: 67px 50px;
    background-position: top 40px center;
  }
}
.cke_editable .content_list_wrap ul li:nth-child(1):before,
#content .content_list_wrap ul li:nth-child(1):before {
  color: #eb0d0d;
}
.cke_editable .content_list_wrap ul li:nth-child(2) a,
#content .content_list_wrap ul li:nth-child(2) a {
  background: url(../images/pic_top_menu02.png) no-repeat;
  background-size: 114px 91px;
  background-position: top 56px center;
  border: solid 1px #3a8714;
  border-bottom: solid 6px #3a8714;
}
@media screen and (max-width: 767px) {
  .cke_editable .content_list_wrap ul li:nth-child(2) a,
#content .content_list_wrap ul li:nth-child(2) a {
    background-size: 72px 62px;
    background-position: top 34px center;
  }
}
.cke_editable .content_list_wrap ul li:nth-child(2):before,
#content .content_list_wrap ul li:nth-child(2):before {
  color: #3a8714;
}
.cke_editable .content_list_wrap ul li:nth-child(3) a,
#content .content_list_wrap ul li:nth-child(3) a {
  background: url(../images/pic_top_menu03.png) no-repeat;
  background-size: 107px 107px;
  background-position: top 54px center;
  border: solid 1px #2b86ad;
  border-bottom: solid 6px #2b86ad;
}
@media screen and (max-width: 767px) {
  .cke_editable .content_list_wrap ul li:nth-child(3) a,
#content .content_list_wrap ul li:nth-child(3) a {
    background-size: 68px 68px;
    background-position: top 34px center;
  }
}
.cke_editable .content_list_wrap ul li:nth-child(3):before,
#content .content_list_wrap ul li:nth-child(3):before {
  color: #2b86ad;
}
.cke_editable .content_list_wrap ul li:nth-child(4) a,
#content .content_list_wrap ul li:nth-child(4) a {
  background: url(../images/pic_top_menu04.png) no-repeat;
  background-size: 102px 104px;
  background-position: top 50px center;
  border: solid 1px #f3cb18;
  border-bottom: solid 6px #f3cb18;
}
@media screen and (max-width: 767px) {
  .cke_editable .content_list_wrap ul li:nth-child(4) a,
#content .content_list_wrap ul li:nth-child(4) a {
    background-size: 64px 66px;
    background-position: top 30px center;
  }
}
.cke_editable .content_list_wrap ul li:nth-child(4):before,
#content .content_list_wrap ul li:nth-child(4):before {
  color: #f3cb18;
}
.cke_editable .content_list_wrap ul li:nth-child(5) a,
#content .content_list_wrap ul li:nth-child(5) a {
  background: url(../images/pic_top_menu05.png) no-repeat;
  background-size: 84px 125px;
  background-position: top 36px center;
  border: solid 1px #c636a4;
  border-bottom: solid 6px #c636a4;
}
@media screen and (max-width: 767px) {
  .cke_editable .content_list_wrap ul li:nth-child(5) a,
#content .content_list_wrap ul li:nth-child(5) a {
    background-size: 52px 79px;
    background-position: top 23px center;
  }
}
.cke_editable .content_list_wrap ul li:nth-child(5):before,
#content .content_list_wrap ul li:nth-child(5):before {
  color: #c636a4;
}
.cke_editable .content_list_wrap ul li:nth-child(6) a,
#content .content_list_wrap ul li:nth-child(6) a {
  background: url(../images/pic_top_menu06.png) no-repeat;
  background-size: 83px 114px;
  background-position: top 50px center;
  border: solid 1px #ee7d13;
  border-bottom: solid 6px #ee7d13;
}
@media screen and (max-width: 767px) {
  .cke_editable .content_list_wrap ul li:nth-child(6) a,
#content .content_list_wrap ul li:nth-child(6) a {
    background-size: 54px 74px;
    background-position: top 30px center;
  }
}
.cke_editable .content_list_wrap ul li:nth-child(6):before,
#content .content_list_wrap ul li:nth-child(6):before {
  color: #ee7d13;
}
.cke_editable ._box,
#content ._box {
  position: relative;
  padding-left: 50px !important;
}
.cke_editable ._box .num,
#content ._box .num {
  position: absolute;
  left: 15px;
  top: 10px;
  font-size: 1.75rem;
  font-weight: 600;
  border-bottom: 2px solid #cf1126;
  line-height: 1.2;
  padding: 0 5px;
}
@media screen and (max-width: 767px) {
  .cke_editable ._box .num,
#content ._box .num {
    font-size: 1rem;
    top: 45%;
    transform: translateY(-50%);
  }
}
.cke_editable ._box .box_inner,
#content ._box .box_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  justify-content: space-between;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .cke_editable ._box .box_inner,
#content ._box .box_inner {
    gap: 5px;
    align-items: center;
    display: flex;
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .cke_editable ._box .box_inner .box_inner_img,
#content ._box .box_inner .box_inner_img {
    width: 130px;
    min-width: 130px;
  }
}
.cke_editable ._box .box_inner img,
#content ._box .box_inner img {
  width: 100%;
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .cke_editable ._box .box_inner img,
#content ._box .box_inner img {
    width: 120px;
  }
}

input[type=email],
input[type=tel],
input[type=text],
input[type=url],
dd textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--default-gray);
  background: var(--base-gray-default);
}

::-moz-placeholder {
  color: var(--default-gray);
}

:-ms-input-placeholder {
  color: var(--default-gray);
}

::placeholder {
  color: var(--default-gray);
}

.form .intro {
  letter-spacing: 0.06em;
}

@media all and (min-width: 768px) {
  .form-Item input[type=text].w250_Pc {
    width: 250px;
  }
}

.form-Item label.block,
.form-Item .label_confirm {
  display: block;
  margin-bottom: 5px;
  color: var(--base-gray-dark);
  font-size: 0.875rem;
}

.form_explanation {
  margin-top: 3px;
  font-size: 0.875rem;
  color: var(--default-gray-brown);
}

.privacyArea {
  margin: 25px auto;
  padding: 10px 20px;
  border: solid 4px var(--base-gray-light);
  letter-spacing: 0.04em;
}
@media all and (min-width: 768px) {
  .privacyArea {
    margin: 25px auto;
  }
}

.privacyArea dl {
  padding: 8px 6px;
  text-align: center;
  background: var(--base-gray-default);
}
@media all and (min-width: 768px) {
  .privacyArea dl {
    padding: 15px 10px 5px;
  }
}

.privacyArea a {
  text-decoration: underline;
}

.form-Item {
  padding: 25px 0;
}
@media all and (min-width: 768px) {
  .form-Item {
    display: grid;
    grid-template-columns: 240px 1fr;
    align-items: start;
  }
}

.form-Item + .form-Item {
  border-top: 1px solid var(--default-gray-light);
}

.form-Item dt {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
  color: #000;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .form-Item dt {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }
}
@media all and (min-width: 768px) {
  .form-Item dt {
    margin-top: 15px;
    padding-right: 10px;
  }
}

.form-Item dd {
  letter-spacing: 0.04em;
}

.label_checkbox input[type=checkbox] {
  display: none;
}

.label_checkbox label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  cursor: pointer;
}

.label_checkbox label::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #fff;
  border: 1px solid var(--default-gray);
}

.label_checkbox input[type=checkbox]:checked + label::after {
  position: absolute;
  content: "";
  top: 7px;
  left: 3px;
  width: 20px;
  height: 6px;
  border-left: 3px solid #333;
  border-bottom: 3px solid #333;
  transform: rotate(-45deg);
}

.label_checkbox input[type=checkbox]:checked + label::before {
  background: var(--base-pink-default);
  border: solid 1px #FF2E2E;
}

/* 必須&任意マーク */
.form-Item .ico {
  text-align: center;
  font-size: 0.6875rem;
  display: inline-block;
  color: #fff;
  line-height: 1;
  line-height: 1;
  padding: 6px 6px;
  vertical-align: middle;
  text-decoration: none;
  white-space: nowrap;
}
.form-Item .ico.required {
  background-color: var(--default-red);
}
.form-Item .ico.optional {
  color: #333;
  background-color: var(--default-gray-light);
}

.form-Item ul.radio_area {
  margin-left: -25px;
  margin-top: 10px;
}

li.radio {
  list-style: none;
}

.radio {
  position: relative;
  margin: 0 0 0.7rem;
  padding-left: 18px;
}
@media screen and (max-width: 767px) {
  .radio:last-child {
    margin-bottom: 0;
  }
}

.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}

.radio input[type=radio] + .radio-label:before {
  content: "";
  background: var(--base-gray-default);
  border-radius: 100%;
  border: 1px solid var(--default-gray-light);
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: 0.2em;
  margin-right: 0.5em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}

.radio input[type=radio]:checked + .radio-label:before {
  background-color: var(--default-blue);
  box-shadow: inset 0 0 0 4px var(--base-gray-default);
}

.radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: var(--default-blue);
}

.radio input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px var(--base-gray-default);
  border-color: var(--default-gray-light);
  background: var(--default-gray-light);
}

.radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

/* PCのみ横並びの場合 */
@media all and (min-width: 768px) {
  .radio_area_short {
    display: flex;
  }
}

.select_area {
  position: relative;
  display: inline-block;
  border: 1px solid var(--default-gray);
  vertical-align: middle;
  background: var(--base-gray-default);
}
@media screen and (max-width: 767px) {
  .select_area {
    width: 100%;
  }
}
.select_area::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 20px;
  right: 16px;
  width: 0;
  height: 0;
  border-width: 9px 6px 0 6px;
  border-style: solid;
  border-color: var(--default-gray) transparent transparent transparent;
  pointer-events: none;
}

.select_area select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 11px 15px;
  padding-right: 2.5em;
  border: none;
  outline: 0;
  background: var(--base-gray-default);
  text-indent: 0.01px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .select_area select {
    width: 100%;
  }
}

.ajax_err p {
  position: relative;
  margin-top: 8px;
  padding: 8px 15px 8px;
  display: inline-block;
  color: var(--default-red-dark);
  line-height: 1.6;
  font-size: fo(14);
  border-radius: 5px;
  border: solid 1px var(--default-red-dark);
  background: var(--base-pink-default);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}
@media all and (min-width: 768px) {
  .ajax_err p {
    margin-top: 10px;
    padding: 10px 40px 10px;
    font-size: 0.9375rem;
  }
}

.ajax_err p:before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50px;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid var(--default-red-dark);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.ajax_err p:after {
  content: "";
  position: absolute;
  top: -9px;
  left: 50px;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid var(--base-pink-default);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.ajax_err p.arw_center:before {
  left: 50%;
  transform: translateX(50%);
}

.ajax_err p.arw_center:after {
  left: 50%;
  transform: translateX(50%);
}

.l-form-btnArea {
  margin: 20px auto 50px;
}

.l-form-actbtn {
  padding: 0;
}
@media all and (min-width: 768px) {
  .l-form-actbtn {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
  }
}
.l-form-actbtn li {
  list-style: none;
}

@media screen and (max-width: 767px) {
  .l-form-actbtn li + li {
    margin-top: 15px;
  }
}
@media all and (min-width: 768px) {
  .l-form-actbtn li + li {
    margin-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .btn_form {
    width: 100%;
  }
}

.btn_form a {
  display: block;
  padding: 20px;
  text-align: center;
  color: #fff;
  border-radius: 40px;
}
@media all and (min-width: 768px) {
  .btn_form a {
    width: 420px;
  }
}
.btn_form a:hover {
  text-decoration: none;
  background: var(--default-blue);
}

.btn_form.send {
  background: var(--default-black);
  border-radius: 40px;
}
.btn_form.back {
  background: var(--default-gray);
  border-radius: 40px;
}

@media all and (min-width: 768px) {
  .form-address {
    display: flex;
  }
}

#Ready-text {
  margin: 15px auto;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 500;
}

.form-Contents.conlayout {
  margin-top: 20px;
}
@media all and (min-width: 768px) {
  .form-Contents.conlayout .form-Item dt {
    margin-top: 0 !important;
  }
}/*# sourceMappingURL=style.css.map */