@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          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: inline-block;
}

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

strong {
  font-weight: bolder;
}

textarea {
  resize: vertical;
}

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

:root {
  --default-black: #000;
  --default-white: #fff;
  --default-orrange: #ED6B00;
  --default-green: #0AB48D;
  --default-green-light: #55D0B4;
  --bg-orrange: #FFEBE2;
  --bg-yellow: #FDFAEF;
  --base-pink:#ffc0cb;
  --default-red-dark:#a41919 ;
}

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

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

a {
  text-decoration: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

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

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

#Header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1001;
}
#Header .header__wrapper {
  border-top: 4px solid var(--default-orrange);
  background: var(--default-white);
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.16);
}
#Header .header__wrapper .l-header {
  max-width: 1120px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1120px) {
  #Header .header__wrapper .l-header {
    max-width: 1080px;
  }
}
@media screen and (max-width: 767px) {
  #Header .header__wrapper .l-header {
    width: 100%;
  }
}
#Header .header__wrapper .l-header .header-block {
  padding: 20px 0;
  /* ハンバーガーボタン */
  /* ハンバーガーボタン クリック */
}
@media screen and (max-width: 1120px) {
  #Header .header__wrapper .l-header .header-block {
    padding: 18px 15px;
    background: var(--default-white);
    position: relative;
    z-index: 1000;
  }
}
#Header .header__wrapper .l-header .header-block .header__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 24px;
}
@media screen and (max-width: 1120px) {
  #Header .header__wrapper .l-header .header-block .header__detail {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
  }
}
#Header .header__wrapper .l-header .header-block .header__detail .header__logo {
  display: block;
  color: #000;
  font-size: 1.75rem;
  font-weight: 600;
  cursor: pointer;
}
@media screen and (max-width: 1120px) {
  #Header .header__wrapper .l-header .header-block .header__detail .header__logo {
    font-size: 0.9375rem;
  }
}
#Header .header__wrapper .l-header .header-block .header__detail .header__logo-title {
  padding: 0 120px 0 90px;
  position: relative;
  line-height: 1.4rem;
}
@media screen and (max-width: 1120px) {
  #Header .header__wrapper .l-header .header-block .header__detail .header__logo-title {
    padding: 0 0 0 60px;
    line-height: 1rem;
  }
}
#Header .header__wrapper .l-header .header-block .header__detail .header__logo-title::before {
  content: "";
  display: inline-block;
  width: 83px;
  height: 68px;
  background: url(../common/ico_logo.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1120px) {
  #Header .header__wrapper .l-header .header-block .header__detail .header__logo-title::before {
    width: 52px;
    height: 42px;
  }
}
#Header .header__wrapper .l-header .header-block .header__detail .header__logo-title::after {
  content: "";
  display: inline-block;
  width: 118px;
  height: 56px;
  background: url(../common/img_logo-deco.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1120px) {
  #Header .header__wrapper .l-header .header-block .header__detail .header__logo-title::after {
    display: none;
  }
}
#Header .header__wrapper .l-header .header-block .header__detail .header__logo-title span {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--default-orrange);
}
@media screen and (max-width: 1120px) {
  #Header .header__wrapper .l-header .header-block .header__detail .header__logo-title span {
    font-size: 0.75rem;
  }
}
#Header .header__wrapper .l-header .header-block .header__contact-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1120px) {
  #Header .header__wrapper .l-header .header-block .header__contact-pc {
    display: none;
  }
}
#Header .header__wrapper .l-header .header-block .header__contact-pc .contact-pc__title {
  display: inline-block;
}
#Header .header__wrapper .l-header .header-block .header__contact-pc .contact-pc__title a {
  display: block;
  text-align: left;
  padding: 5px 16px 5px 54px;
  background: var(--bg-white);
  border-radius: 5px;
  border: 2px solid var(--default-orrange);
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--default-orrange);
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#Header .header__wrapper .l-header .header-block .header__contact-pc .contact-pc__title a::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 18px;
  background: url(../common/ico_mail.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 15px;
}
#Header .header__wrapper .l-header .header-block .header__contact-pc .contact-pc__title a:hover {
  background: var(--bg-orrange);
}
#Header .header__wrapper .l-header .header-block .header__contact-pc .contact-pc__number a {
  display: block;
  margin-bottom: 5px;
  padding-left: 26px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--default-orrange);
  position: relative;
}
#Header .header__wrapper .l-header .header-block .header__contact-pc .contact-pc__number a::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 21px;
  background: url("../common/ico_tel-orrange.svg") no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
}
#Header .header__wrapper .l-header .header-block .header__contact-pc .contact-pc__number p {
  text-align: right;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
#Header .header__wrapper .l-header .header-block .nav-btn {
  display: none;
}
@media screen and (max-width: 1120px) {
  #Header .header__wrapper .l-header .header-block .nav-btn {
    display: block;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1000;
  }
}
#Header .header__wrapper .l-header .header-block .nav-btn span {
  display: none;
}
@media screen and (max-width: 1120px) {
  #Header .header__wrapper .l-header .header-block .nav-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--default-orrange);
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
    display: block;
    position: relative;
    z-index: 1000;
  }
  #Header .header__wrapper .l-header .header-block .nav-btn span:nth-of-type(1) {
    top: 0;
  }
  #Header .header__wrapper .l-header .header-block .nav-btn span:nth-of-type(2) {
    margin-top: 7px;
  }
  #Header .header__wrapper .l-header .header-block .nav-btn span:nth-of-type(3) {
    margin-top: 7px;
  }
}
#Header .header__wrapper .l-header .header-block .nav-btn p {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--default-orrange);
}
#Header .header__wrapper .l-header .header-block .nav-btn.open span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
          transform: translateY(9px) rotate(-45deg);
}
#Header .header__wrapper .l-header .header-block .nav-btn.open span:nth-of-type(2) {
  display: none;
}
#Header .header__wrapper .l-header .header-block .nav-btn.open span:nth-of-type(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#Header .header__wrapper .l-header .header-block .nav-btn.open p {
  display: none;
}
@media screen and (max-width: 1120px) {
  #Header .header__wrapper .l-header .header-block .header__menu {
    display: none;
  }
}
#Header .header__wrapper .l-header .header-block .header__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
#Header .header__wrapper .l-header .header-block .header__menu-list li {
  margin-right: 34px;
}
#Header .header__wrapper .l-header .header-block .header__menu-list li:last-child {
  margin-right: 0;
}
#Header .header__wrapper .l-header .header-block .header__menu-list li a {
  display: block;
  height: 100%;
  color: var(--default-black);
  font-size: 1.0625rem;
  font-weight: 400;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#Header .header__wrapper .l-header .header-block .header__menu-list li a:hover {
  color: var(--default-orrange);
}
#Header .header__wrapper .l-header .header-block .header__menu-list li .list_down {
  padding-right: 24px;
}
#Header .header__wrapper .l-header .header-block .header__menu-list li .list_down::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../common/ico_arrow_orrange-down.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 0;
}
#Header .header__wrapper .l-header .header-block .header__menu-list li .list_recruit {
  color: var(--default-green);
  font-weight: 600;
}
#Header .header__wrapper .l-header .header-block .header__menu-list li .list_recruit:hover {
  color: var(--default-green);
}
#Header .header__wrapper .l-header .header-block .header__menu-list li .down-menu {
  display: none;
  position: absolute;
  top: 48px;
  z-index: 100;
}
#Header .header__wrapper .l-header .header-block .header__menu-list li .down-menu__inner {
  padding: 20px 20px 20px 30px;
  border-top: 3px solid var(--default-orrange);
  border-radius: 0 0 10px 10px;
  background: var(--default-white);
}
#Header .header__wrapper .l-header .header-block .header__menu-list li .down-menu__inner li {
  margin-bottom: 15px;
}
#Header .header__wrapper .l-header .header-block .header__menu-list li .down-menu__inner li:last-child {
  margin-bottom: 0;
}
#Header .header__wrapper .l-header .header-block .header__menu-list li .down-menu__inner li a {
  display: block;
  padding-left: 18px;
  font-size: 0.9375rem;
  position: relative;
}
#Header .header__wrapper .l-header .header-block .header__menu-list li .down-menu__inner li a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--default-orrange);
  border-radius: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 0;
}
#Header .header__wrapper .header__menu-sp {
  display: none;
}
@media screen and (max-width: 1120px) {
  #Header .header__wrapper .header__menu-sp {
    border-top: 4px solid var(--default-orrange);
    display: block;
    position: fixed;
    z-index: -1;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    background-color: var(--bg-yellow);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    overflow: auto;
  }
  #Header .header__wrapper .header__menu-sp .menu_sp_content {
    padding: 90px 10px 15px;
  }
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_list_sp {
    padding: 10px;
    background: var(--default-white);
    border-radius: 10px;
    margin-bottom: 30px;
  }
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_list_sp .h_list_head_sp {
    padding: 15px 5px;
    border-bottom: 1px solid #CCC;
    position: relative;
    z-index: 10;
  }
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_list_sp .h_list_head_sp:last-child {
    margin-bottom: 10px;
  }
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_list_sp .h_list_head_sp .h_list_menu {
    display: block;
    position: relative;
    font-weight: 500;
    color: var(--default-black);
    cursor: pointer;
  }
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_list_sp .h_list_head_sp .h_list_menu::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: var(--default-orrange);
    border-radius: 100%;
  }
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_list_sp .h_list_head_sp .h_list_menu span {
    display: block;
    padding-right: 24px;
    position: relative;
  }
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_list_sp .h_list_head_sp .h_list_menu span::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 11px;
    width: 2px;
    height: 10px;
    background: var(--default-white);
  }
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_list_sp .h_list_head_sp .h_list_menu span::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 7px;
    width: 10px;
    height: 2px;
    background: var(--default-white);
  }
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_list_sp .h_list_head_sp .h_list_nomenu::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: url(../common/ico_arrow_orrange-right.svg) no-repeat;
    background-size: contain;
    border-radius: 100%;
  }
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_list_sp .h_list_head_sp .h_list_nomenu span::before {
    display: none;
  }
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_list_sp .h_list_head_sp .h_list_nomenu span::after {
    display: none;
  }
}
@media screen and (max-width: 1120px) and (max-width: 1120px) {
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_list_sp .h_list_head_sp .h_list_menu.active span::before {
    display: none;
  }
}
@media screen and (max-width: 1120px) {
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_list_sp .h_list_head_sp .menu_sub_sp {
    padding-top: 12px;
    padding-left: 30px;
  }
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_list_sp .h_list_head_sp .menu_sub_sp li {
    margin-bottom: 15px;
  }
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_list_sp .h_list_head_sp .menu_sub_sp li:last-child {
    margin-bottom: 0;
  }
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_list_sp .h_list_head_sp .menu_sub_sp li a {
    display: block;
    padding-left: 15px;
    position: relative;
    font-size: 0.875rem;
    color: #000;
  }
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_list_sp .h_list_head_sp .menu_sub_sp li a::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--default-orrange);
    border-radius: 100%;
    -webkit-transition: 2s all;
    transition: 2s all;
  }
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_sp__contact {
    padding: 20px 10px;
    border: 2px solid var(--default-orrange);
    border-radius: 10px;
    background: var(--default-white);
    text-align: center;
  }
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_sp__contact-tel {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
  }
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_sp__contact-tel .contact-tel__title {
    display: inline-block;
    padding-left: 40px;
    margin-bottom: 10px;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--default-orrange);
    position: relative;
  }
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_sp__contact-tel .contact-tel__title::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url(../common/ico_tel-white.svg) no-repeat;
    background-size: contain;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 0;
  }
}
@media screen and (max-width: 1120px) and (max-width: 767px) {
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_sp__contact-tel .contact-tel__title::before {
    width: 34px;
    height: 34px;
  }
}
@media screen and (max-width: 1120px) {
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_sp__contact-tel .contact-tel__number {
    font-weight: 400;
  }
}
@media screen and (max-width: 1120px) and (max-width: 767px) {
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_sp__contact-tel .contact-tel__number p:last-child {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 1120px) {
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_sp__contact-tel .contact-tel__number p a {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--default-orrange);
  }
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_sp__contact-access .contact-access__title {
    display: inline-block;
    padding-left: 50px;
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--default-green);
    position: relative;
  }
}
@media screen and (max-width: 1120px) and (max-width: 767px) {
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_sp__contact-access .contact-access__title {
    padding-left: 40px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 1120px) {
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_sp__contact-access .contact-access__title::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url(../common/ico_pin_white.svg) no-repeat;
    background-size: contain;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 0;
  }
}
@media screen and (max-width: 1120px) and (max-width: 767px) {
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_sp__contact-access .contact-access__title::before {
    width: 34px;
    height: 34px;
  }
}
@media screen and (max-width: 1120px) {
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_sp__contact-access .contact-access__title span a {
    display: inline-block;
    padding: 6px 8px;
    margin-left: 10px;
    background: var(--default-green);
    border-radius: 3px;
    font-size: 0.75rem;
    line-height: 1;
    color: var(--default-white);
    vertical-align: middle;
  }
  #Header .header__wrapper .header__menu-sp .menu_sp_content .menu_sp__contact-access .contact-access__detail {
    font-weight: 400;
  }
}
@media screen and (max-width: 1120px) {
  #Header .header__wrapper .header__menu-sp.open {
    opacity: 1;
    visibility: visible;
  }
}

#Footer .sectionRecruit {
  background: url("../images/bg_recruit.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #Footer .sectionRecruit {
    height: 410px;
    background: url("../images/bg_recruit-Sp.jpg") no-repeat;
    background-size: cover;
    background-position: center;
  }
}
#Footer .sectionRecruit::before {
  content: "";
  display: inline-block;
  width: 350px;
  height: 350px;
  background: rgba(254, 254, 254, 0.7);
  background-size: cover;
  border-radius: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 0;
  pointer-events: none;
}
#Footer .sectionRecruit .contents-block {
  height: 100%;
  text-align: center;
}
#Footer .sectionRecruit .contents-block .recruit__contents {
  display: block;
  height: 100%;
  padding: 50px 0 60px;
}
@media screen and (max-width: 767px) {
  #Footer .sectionRecruit .contents-block .recruit__contents {
    padding: 110px 0 60px;
  }
}
#Footer .sectionRecruit .contents-block .recruit__contents h2 {
  display: inline-block;
  padding-bottom: 64px;
  margin-bottom: 0;
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--default-green);
  position: relative;
}
@media screen and (max-width: 767px) {
  #Footer .sectionRecruit .contents-block .recruit__contents h2 {
    font-size: 2.125rem;
  }
}
#Footer .sectionRecruit .contents-block .recruit__contents h2::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 32px;
  background: url(../common/ico_recruit.svg) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
#Footer .sectionRecruit .contents-block .recruit__contents p {
  display: block;
  letter-spacing: 0.06em;
  font-weight: 400;
  line-height: 1.875rem;
  color: var(--default-black);
  position: relative;
  z-index: 1;
}
#Footer .footer__wrap {
  background: var(--bg-yellow);
}
#Footer .footer__wrap .footer__menu {
  padding: 40px 0;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  #Footer .footer__wrap .footer__menu {
    display: none;
  }
}
#Footer .footer__wrap .footer__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#Footer .footer__wrap .footer__menu-list li {
  width: 250px;
  margin-right: 34px;
  margin-bottom: 20px;
  padding-left: 14px;
}
#Footer .footer__wrap .footer__menu-list li a {
  display: block;
  margin-bottom: 10px;
  font-size: 1.125rem;
  color: var(--default-orrange);
  position: relative;
}
#Footer .footer__wrap .footer__menu-list li a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: var(--default-orrange);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -12px;
  margin: auto 0;
}
#Footer .footer__wrap .footer__menu-list li ul li {
  margin-right: 0;
  margin-bottom: 8px;
  position: relative;
}
#Footer .footer__wrap .footer__menu-list li ul li::before {
  content: "-";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2px;
  margin: auto 0;
}
#Footer .footer__wrap .footer__menu-list li ul li a {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  color: var(--default-black);
}
#Footer .footer__wrap .footer__menu-list li ul li a::before {
  display: none;
}
#Footer .footer__wrap .footer__detail {
  padding: 40px 0;
}
#Footer .footer__wrap .footer__detail .footer__detail-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #Footer .footer__wrap .footer__detail .footer__detail-wrap {
    display: block;
  }
}
#Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__logo {
  display: block;
  color: #000;
  font-size: 1.4375rem;
  font-weight: 600;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__logo {
    margin-bottom: 36px;
    font-size: 1.125rem;
  }
}
#Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__logo-title {
  padding: 0 0 0 90px;
  position: relative;
  line-height: 1.4rem;
}
@media screen and (max-width: 767px) {
  #Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__logo-title {
    padding: 0 0 0 60px;
    line-height: 1rem;
  }
}
#Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__logo-title::before {
  content: "";
  display: inline-block;
  width: 83px;
  height: 68px;
  background: url(../common/ico_logo.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  #Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__logo-title::before {
    width: 52px;
    height: 42px;
  }
}
#Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__logo-title span {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--default-orrange);
}
@media screen and (max-width: 767px) {
  #Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__logo-title span {
    font-size: 0.75rem;
  }
}
#Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  #Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__contact {
    display: block;
  }
}
#Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__contact-tel {
  padding-right: 30px;
  border-right: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  #Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__contact-tel {
    padding-right: 0;
    margin-bottom: 20px;
    border: none;
  }
}
#Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__contact-tel .contact-tel__title {
  display: block;
  margin-bottom: 10px;
  padding-left: 50px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--default-black);
  position: relative;
}
@media screen and (max-width: 767px) {
  #Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__contact-tel .contact-tel__title {
    padding-left: 40px;
    font-size: 1.125rem;
  }
}
#Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__contact-tel .contact-tel__title::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(../common/ico_tel-white.svg) no-repeat;
  background-size: contain;
  border-radius: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  #Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__contact-tel .contact-tel__title::before {
    width: 34px;
    height: 34px;
  }
}
#Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__contact-tel .contact-tel__number {
  font-weight: 400;
}
#Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__contact-tel .contact-tel__number p span {
  font-weight: 500;
  color: var(--default-orrange);
}
@media screen and (max-width: 767px) {
  #Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__contact-tel .contact-tel__number p:last-child {
    font-size: 0.875rem;
  }
}
#Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__contact-tel .contact-tel__number p a {
  color: var(--default-black);
}
#Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__contact-access {
  padding-left: 30px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  #Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__contact-access {
    padding-left: 0;
  }
}
#Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__contact-access .contact-access__title {
  display: block;
  margin-bottom: 10px;
  padding-left: 50px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--default-black);
  position: relative;
}
@media screen and (max-width: 767px) {
  #Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__contact-access .contact-access__title {
    padding-left: 40px;
    font-size: 1.125rem;
  }
}
#Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__contact-access .contact-access__title::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(../common/ico_pin_white.svg) no-repeat;
  background-size: contain;
  border-radius: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  #Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__contact-access .contact-access__title::before {
    width: 34px;
    height: 34px;
  }
}
#Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__contact-access .contact-access__title span a {
  display: inline-block;
  padding: 6px 8px;
  margin-left: 10px;
  background: var(--default-green);
  border-radius: 3px;
  font-size: 0.75rem;
  line-height: 1;
  color: var(--default-white);
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  #Footer .footer__wrap .footer__detail .footer__detail-wrap .footer__contact-access .contact-access__detail {
    font-size: 0.875rem;
  }
}
#Footer .copyright {
  display: block;
  padding: 10px 0;
  text-align: right;
  background: var(--default-orrange);
  color: var(--default-white);
  font-size: 0.75rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  #Footer .copyright {
    padding: 5px 0;
    text-align: center;
    font-size: 0.625rem;
  }
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font: var(--font_base);
  color: var(--default-black);
  font-weight: 500;
  letter-spacing: 0.06em;
  background: #fff;
  overflow-x: hidden;
}

html, body {
  height: 100%;
}

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

.l-container {
  max-width: 1120px;
  margin: 0 auto;
}
@media (min-width: 769px) and (max-width: 1120px) {
  .l-container {
    max-width: inherit;
    margin: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    max-width: inherit;
    margin: 0 15px;
  }
}

.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-align: center;
}
@media screen and (max-width: 767px) {
  .text_center {
    text-align: center;
  }
}

.text_center_Pc {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .text_center_Pc {
    text-align: left;
  }
}

.text_center_Sp {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .text_center_Sp {
    text-align: center;
  }
}

.more-btn a {
  display: inline-block;
  padding: 17px 90px 17px 80px;
  background: var(--default-green);
  border-radius: 10px;
  color: var(--default-white);
  -webkit-box-shadow: 3px 3px 0px var(--default-green-light);
          box-shadow: 3px 3px 0px var(--default-green-light);
  cursor: pointer !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .more-btn a {
    width: 100%;
    padding: 17px 44px 17px 30px;
    text-align: center;
  }
}
.more-btn a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../common/ico_arrow_whitegreen-right.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 20px;
  pointer-events: none;
}
.more-btn a:hover {
  -webkit-box-shadow: unset;
          box-shadow: unset;
  -webkit-transform: translate(3px, 3px);
          transform: translate(3px, 3px);
}

.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 {
    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 {
    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_red_default {
  color: var(--default-red);
}

.color_brown_default {
  color: var(--default-brown);
}

.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;
}

.edit-area {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 400;
}

.clearfix {
  overflow: hidden;
}

/*アコーディオンのオプション表示削除*/
.dis_none {
  display: none !important;
}

.cke_editable .dis_none {
  display: block !important;
}

.cke_editable {
  margin: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden;
}

.cke_editable .cke-accordion_start,
.cke_editable .cke-accordion_end {
  position: relative;
  padding: 10px 10px 10px 10px;
  border: dashed 1px #dedacd;
  border-radius: 4px;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

/* ------------------------------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  =============================================================== */
/* ==========================================================================
タイトル
========================================================================== */
.h2_title01 {
  margin-bottom: 24px;
  padding: 16px 20px 16px 30px;
  font-size: 1.75rem;
  background: var(--bg-yellow);
  position: relative;
}
@media screen and (max-width: 767px) {
  .h2_title01 {
    font-size: 1.375rem;
    padding: 16px 20px;
    margin-bottom: 20px;
  }
}
.h2_title01::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 100%;
  background: var(--default-orrange);
  position: absolute;
  top: 0;
  left: 0;
}

.h3_title01 {
  margin-bottom: 16px;
  padding-bottom: 16px;
  font-size: 1.25rem;
  color: var(--default-orrange);
  position: relative;
}
@media screen and (max-width: 767px) {
  .h3_title01 {
    margin-bottom: 10px;
    padding-bottom: 12px;
    font-size: 1.125rem;
  }
}
.h3_title01::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  border-bottom: 2px dotted var(--default-orrange);
  position: absolute;
  bottom: 0;
  left: 0;
}

/* ==========================================================================
ボタン
========================================================================== */
.link_btn {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 25px 54px 25px 25px;
  margin: 0 8px 8px 0;
  background: var(--bg-orrange);
  color: var(--default-orrange);
  font-size: 1.25rem;
  font-weight: 500;
  -webkit-box-shadow: 3px 3px 0px 0 var(--default-orrange);
          box-shadow: 3px 3px 0px 0 var(--default-orrange);
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .link_btn {
    padding: 15px 42px 15px 20px;
    font-size: 1rem;
  }
}
.link_btn::after {
  content: "";
  background: url(../common/ico_arrow_orrange-right.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 5px;
  position: absolute;
  right: 24px;
  top: 50%;
  bottom: 50%;
  margin: auto 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (max-width: 767px) {
  .link_btn::after {
    right: 16px;
  }
}
.link_btn:hover::after {
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
}
.link_btn-large {
  display: block;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .link_btn-large {
    font-size: 1.125rem;
  }
}
.link_btn-small {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .link_btn-small {
    font-size: 0.875rem;
  }
}
.link_btn-secondary {
  color: var(--default-black);
  background: var(--default-white);
  border: 2px solid var(--default-orrange);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.link_btn-secondary::after {
  content: "";
  background: url(../common/ico_window.svg) no-repeat;
  width: 1em;
  height: 1em;
  background-size: contain;
  display: inline-block;
  margin-left: 5px;
  position: absolute;
  right: 24px;
  top: 50%;
  bottom: 50%;
  margin: auto 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.link_btn-dark {
  background: var(--default-orrange);
  color: var(--default-white);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.link_btn-dark::after {
  content: "";
  background: url(../common/ico_arrow_whiteorrange-right.svg) no-repeat;
  width: 1em;
  height: 1em;
  background-size: contain;
  display: inline-block;
  margin-left: 5px;
  position: absolute;
  right: 24px;
  top: 50%;
  bottom: 50%;
  margin: auto 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

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

.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 16px;
}
.edit-area ol li ul li,
.cke_editable ol li ul li {
  line-height: 1.2;
}

.edit-area ol li::marker {
  display: none;
}

.edit-area ol li:before,
.cke_editable ol li:before {
  counter-increment: item;
  content: counter(item);
  display: block;
  position: absolute;
  top: 0.08em;
  left: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--default-orrange);
  /* 14px */
}

.edit-area ul li,
.cke_editable ul li {
  list-style-type: none;
  margin-bottom: 5px;
  position: relative;
  padding: 4px 0 4px 16px;
  counter-reset: item;
}

.edit-area ul li:before,
.cke_editable ul li:before,
.list_style li:before {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  position: absolute;
  height: 8px;
  width: 8px;
  top: 0.9em;
  left: 0px;
  border-radius: 100%;
  background: var(--default-black);
  vertical-align: middle;
  line-height: 1;
}

/* リスト END  =============================================================== */
/* ==========================================================================
テキストリンク
========================================================================== */
/* ==========================================================================
テーブル※適宜変更してください。
========================================================================== */
.edit-area table, .cke_editable table {
  border-spacing: 0;
  border: 1px solid #888;
}
.edit-area table th, .cke_editable table th {
  background: var(--bg-orrange);
  padding: 10px;
  border: 1px solid #888;
}
.edit-area table td, .cke_editable table td {
  background: var(--bg-white);
  padding: 10px;
  border: 1px solid #888;
}

table {
  border-collapse: initial !important;
  border-spacing: 0 !important;
}

.table__addr .td_no {
  max-width: 5em;
}
@media screen and (max-width: 767px) {
  .table__scroll {
    overflow: auto;
  }
  .table__scroll table {
    width: 100%;
    white-space: nowrap;
  }
}

/* テーブル END  =============================================================== */
/* 右寄せ 左寄せ  =============================================================== */
.float_R {
  float: right;
}

.float_L {
  float: left;
}

@media all and (min-width: 768px) {
  .float_R_Pc {
    float: right;
  }
  .float_L_Pc {
    float: left;
  }
}
@media screen and (max-width: 767px) {
  .float_R_Sp {
    float: right;
  }
  .float_L_Sp {
    float: left;
  }
}
/* 右寄せ 左寄せ  =============================================================== */
/* ==========================================================================
　画像
========================================================================== */
.edit-area img, .cke_editable 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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .newsImg03 ul li {
    width: calc(33.3333333333% - 10px) !important;
  }
  .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;
}

/* ------------------------------------------------------------絵文字 */
.ico_20 {
  width: 20px;
  height: 20px;
  margin: 0 2px;
  vertical-align: middle;
  margin-bottom: 3px;
}

/* 画像 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;
}

/*公開画面側*/
.edit-area .ckeditor_divline {
  display: none;
}

/* 境界線 END  =============================================================== */
/* ==========================================================================
ckエディター
========================================================================== */
.pagesummary {
  border-radius: 5px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.pagesummary .tit {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--default-orrange);
  font-weight: 500;
}
.pagesummary ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .pagesummary ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.pagesummary ul li {
  list-style: none;
  margin-bottom: 10px;
  margin-right: 15px;
  padding: 0;
}
.pagesummary ul li::before {
  display: none;
}
@media screen and (max-width: 767px) {
  .pagesummary ul li {
    margin-right: 0;
  }
}
.pagesummary ul li a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  color: #000;
  background: #eee;
  font-size: 0.875rem;
  padding: 6px 12px 6px 30px;
  border-radius: 100vh;
  position: relative;
}
@media screen and (max-width: 767px) {
  .pagesummary ul li a {
    width: 100%;
  }
}
.pagesummary ul li a::before {
  position: absolute;
  content: "";
  height: 7px;
  width: 7px;
  left: 10px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
  display: inline-block;
  top: 50%;
}

.div_info01 {
  padding: 30px;
  margin: 15px 0;
  background: var(--default-white);
  border: 2px dotted var(--default-orrange);
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .div_info01 {
    padding: 15px;
    margin: 10px 0;
  }
}
.div_info02 {
  padding: 30px;
  margin: 15px 0;
  background: var(--bg-orrange);
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .div_info02 {
    padding: 15px;
    margin: 10px 0;
  }
}

/*------------------------------------------------------------お知らせ表示(日付)*/
.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;
}

/*-----------------------------------------------------------他装飾*/
.g-map {
  width: 100% !important;
}

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

.detail_news_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 20px;
}

.detail_news_social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 0 !important;
}

.detail_news_social ul li {
  margin-left: 10px !important;
  list-style: none !important;
  padding-left: 0 !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;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}

.detail_news_social li a.tw {
  background: #000 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 {
  -webkit-transform: scale(1.1);
          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;
}

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

.edit-area .list_num01 li,
.cke_editable .list_num01 li {
  position: relative;
  padding: 4px 0 4px 34px;
  margin-bottom: 10px;
  list-style: none !important;
}

.edit-area .list_num01 li:before,
.cke_editable .list_num01 li:before {
  counter-increment: item !important;
  content: counter(item) !important;
  display: block;
  position: absolute;
  left: 0;
  font-weight: bold;
  text-align: center;
  color: var(--default-white) !important;
  background: var(--default-green);
  width: 26px;
  height: 26px;
  margin-top: 4px;
  border-radius: 100%;
  font-weight: 500 !important;
  line-height: 1.35;
}

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

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

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

.list_check li:before,
.cke_editable .list_check li:before {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  position: absolute !important;
  content: "" !important;
  display: block !important;
  top: 0.7em !important;
  left: 0.2em !important;
  height: 10px !important;
  width: 6px !important;
  -webkit-transform: rotate(45deg) !important;
          transform: rotate(45deg) !important;
  border-radius: 0 !important;
  margin: 0 !important;
  background: none !important;
  border-bottom: solid 3px var(--default-green) !important;
  border-right: solid 3px var(--default-green) !important;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      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 {
  -webkit-box-sizing: border-box;
          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 {
  -webkit-box-sizing: border-box;
          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 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.card-box {
  margin-top: 20px;
}

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

/* ==========================================================================
  お客様向け
========================================================================== */
.im-client__table table {
  width: 100%;
}
.im-client__table table tr {
  display: -ms-grid;
  display: grid;
}
.im-client__table table tr td {
  border: none;
  padding: 0;
}
.im-client__table table tr td img {
  width: 100%;
}
@media all and (min-width: 768px) {
  .im-client__table.-cell4 table tr {
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px 10px;
  }
}
@media screen and (max-width: 767px) {
  .im-client__table.-cell4 table tr {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 10px 10px;
  }
}
@media all and (min-width: 768px) {
  .im-client__table.-cell2 table tr {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 10px 10px;
  }
}
@media screen and (max-width: 767px) {
  .im-client__table.-cell2 table tr {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px 10px;
  }
}
.im-client__table.-border-n table {
  border: none;
}

/* テキスト END  =============================================================== */
/* ==========================================================================
  アコーディオン
========================================================================== */
.parts_accordion_box {
  border: solid 1px var(--default-orrange);
  border-radius: 5px;
  margin-bottom: 20px;
}
.parts_accordion_box .trigger {
  position: relative;
  padding: 20px 96px 20px 20px;
  background-color: var(--bg-orrange);
  font-size: 1.25rem;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .parts_accordion_box .trigger {
    padding: 15px 60px 15px 20px;
    font-size: 1rem;
  }
}
.parts_accordion_box .trigger.active {
  border-radius: 5px 5px 0 0;
}
.parts_accordion_box .trigger.active::before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 20px;
  display: block;
  content: "";
  background: url(../common/ico_minus_white.svg) no-repeat;
  background-size: contain;
  width: 34px;
  height: 34px;
}
@media screen and (max-width: 767px) {
  .parts_accordion_box .trigger.active::before {
    right: 15px;
    width: 30px;
    height: 30px;
  }
}
.parts_accordion_box .trigger.active::after {
  display: none;
}
.parts_accordion_box .trigger::before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 20px;
  display: block;
  content: "";
  background: url(../common/ico_plus_white.svg) no-repeat;
  background-size: contain;
  width: 34px;
  height: 34px;
}
@media screen and (max-width: 767px) {
  .parts_accordion_box .trigger::before {
    right: 15px;
    width: 30px;
    height: 30px;
  }
}
.parts_accordion_box .acordion_tree {
  padding: 20px;
  border-top: 1px solid var(--default-orrange);
  background-color: var(--bg-white);
  border-radius: 0 0 5px 5px;
}

.dis_none {
  display: none;
}

.cke_editable .cke-accordion_start, .cke_editable .cke-accordion_end {
  position: relative;
  padding: 30px 10px 10px 10px;
  border: dashed 1px #dedacd;
  border-radius: 4px;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.top_h2title {
  margin-bottom: 50px;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  color: var(--default-black);
}
@media screen and (max-width: 767px) {
  .top_h2title {
    font-size: 1.125rem;
  }
}
.top_h2title span {
  font-size: 1.3125rem;
  font-weight: 500;
  color: var(--default-orrange);
}
@media screen and (max-width: 767px) {
  .top_h2title span {
    font-size: 1rem;
  }
}

/* 準備中ページ */
#ready {
  padding: 240px 0 60px 0;
}
@media screen and (max-width: 767px) {
  #ready {
    padding: 200px 15px 60px 15px;
  }
}
#ready .ready_title {
  margin-bottom: 30px;
  text-align: center;
  font-size: 2.4rem;
  padding: 0 5px;
  color: var(--default-orrange);
}
@media screen and (max-width: 767px) {
  #ready .ready_title {
    font-size: 2rem;
  }
}
#ready .ready_comment {
  text-align: center;
}
@media screen and (max-width: 767px) {
  #ready .ready_comment {
    text-align: left;
  }
}

.main {
  padding-top: 146px;
}
@media screen and (max-width: 1120px) {
  .main {
    padding-top: 70px;
  }
}

#mainTop {
  position: relative;
}
#mainTop::before {
  content: "";
  display: inline-block;
  width: 65%;
  height: 870px;
  background: var(--bg-yellow);
  border-radius: 0 0 20px 0;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #mainTop::before {
    display: none;
  }
}
#mainTop #mv {
  margin-bottom: 100px;
}
@media screen and (max-width: 1120px) {
  #mainTop #mv {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  #mainTop #mv {
    margin-bottom: 36px;
    margin-right: auto;
    overflow: hidden;
  }
}
#mainTop #mv .contents-block {
  position: relative;
}
@media screen and (max-width: 767px) {
  #mainTop #mv .contents-block {
    position: relative;
  }
  #mainTop #mv .contents-block::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    background: var(--bg-yellow);
    border-radius: 0 0 20px 0;
    position: absolute;
    top: 80px;
    left: 0;
    z-index: -1;
  }
}
#mainTop #mv .contents-block .mv__img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 980px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  #mainTop #mv .contents-block .mv__img {
    position: static;
    width: 100%;
    margin-bottom: 20px;
    margin-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  #mainTop #mv .contents-block .mv__img img {
    min-height: auto !important;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0 0 0 20px;
  }
}
#mainTop #mv .contents-block .l-container {
  min-height: 720px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #mainTop #mv .contents-block .l-container {
    min-height: auto;
  }
}
#mainTop #mv .contents-block .l-container .mv__message {
  display: inline-block;
  position: relative;
  top: 175px;
  left: 0;
  z-index: 101;
}
@media screen and (max-width: 767px) {
  #mainTop #mv .contents-block .l-container .mv__message {
    position: static;
    padding-bottom: 30px;
  }
}
#mainTop #mv .contents-block .l-container .mv__message p {
  display: inline-block;
  margin-bottom: 12px;
  padding: 12px 10px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  #mainTop #mv .contents-block .l-container .mv__message p {
    margin-bottom: 8px;
    padding: 6px;
    font-size: 1.0625rem;
  }
}
#mainTop #mv .contents-block .l-container .mv__message p span {
  display: inline-block;
  margin: 0 4px 0 2px;
  font-size: 2.75rem;
  color: var(--default-orrange);
}
@media screen and (max-width: 767px) {
  #mainTop #mv .contents-block .l-container .mv__message p span {
    margin: 0 2px;
    font-size: 1.25rem;
  }
}
#mainTop #mv .contents-block .l-container .scroll_down {
  position: absolute;
  bottom: 0px;
  left: 40px;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  #mainTop #mv .contents-block .l-container .scroll_down {
    width: 17px;
    height: 140px;
    left: auto;
    right: -5px;
  }
}
#mainTop #mv .contents-block .l-container .scroll_down a {
  display: inline-block;
  padding-bottom: 90px;
  position: relative;
  color: var(--default-orrange);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.2em;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 1010;
}
@media screen and (max-width: 767px) {
  #mainTop #mv .contents-block .l-container .scroll_down a {
    padding-bottom: 76px;
    font-size: 0.625rem;
  }
}
#mainTop #mv .contents-block .l-container .scroll_down a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--default-orrange);
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  z-index: 1002;
}
@media screen and (max-width: 767px) {
  #mainTop #mv .contents-block .l-container .scroll_down a::before {
    width: 5px;
    height: 5px;
  }
}
#mainTop #mv .contents-block .l-container .scroll_down a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 2px;
  height: 80px;
  background: #BEBEBE;
  z-index: 1001;
}
@media screen and (max-width: 767px) {
  #mainTop #mv .contents-block .l-container .scroll_down a::after {
    height: 70px;
    width: 1px;
  }
}
@-webkit-keyframes circlemove {
  0% {
    bottom: 70px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes circlemove {
  0% {
    bottom: 70px;
  }
  100% {
    bottom: 0px;
  }
}
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
#mainTop #sectionNews .contents-block {
  margin-bottom: 70px;
}
#mainTop #sectionNews .contents-block .News__title {
  position: relative;
}
#mainTop #sectionNews .contents-block .News__title h2 {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionNews .contents-block .News__title h2 {
    margin-bottom: 16px;
    text-align: left;
  }
}
#mainTop #sectionNews .contents-block .News__title .more-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: center;
  margin-top: 0;
}
#mainTop #sectionNews .contents-block .News__title .more-btn a {
  background: var(--default-orrange);
  -webkit-box-shadow: 3px 3px 0px #FFC898;
          box-shadow: 3px 3px 0px #FFC898;
  padding: 12px 60px 12px 34px;
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionNews .contents-block .News__title .more-btn a {
    padding: 10px 40px 10px 24px;
    font-size: 0.75rem;
  }
}
#mainTop #sectionNews .contents-block .News__title .more-btn a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../common/ico_arrow_whiteorrange-right.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 20px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionNews .contents-block .News__title .more-btn a::before {
    width: 14px;
    height: 14px;
    right: 12px;
  }
}
#mainTop #sectionNews .contents-block .News__title .more-btn a:hover {
  -webkit-box-shadow: unset;
          box-shadow: unset;
  -webkit-transform: translate(3px, 3px);
          transform: translate(3px, 3px);
}
#mainTop #sectionNews .contents-block .News__contents {
  padding: 16px 50px 20px 50px;
  border: 2px solid var(--default-orrange);
  background: var(--default-white);
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionNews .contents-block .News__contents {
    padding: 10px 10px 20px 10px;
  }
}
#mainTop #sectionNews .contents-block .News__contents .news__list {
  height: 220px;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionNews .contents-block .News__contents .news__list {
    height: 160px;
  }
}
#mainTop #sectionNews .contents-block .News__contents .news__list article {
  font-weight: 500;
  padding: 24px 0;
  position: relative;
  border-bottom: 2px #ccc solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionNews .contents-block .News__contents .news__list article {
    padding: 13px 0;
  }
}
#mainTop #sectionNews .contents-block .News__contents .news__list article .news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionNews .contents-block .News__contents .news__list article .news__item {
    font-size: 0.875rem;
  }
}
#mainTop #sectionNews .contents-block .News__contents .news__list article .news__item-time {
  margin-bottom: 12px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionNews .contents-block .News__contents .news__list article .news__item-time {
    margin-bottom: 10px;
  }
}
#mainTop #sectionNews .contents-block .News__contents .news__list article .news__item-time .news_date {
  margin-right: 12px;
}
#mainTop #sectionNews .contents-block .News__contents .news__list article .news__item-time .tag__new {
  color: var(--default-white) !important;
  background: var(--default-orrange) !important;
  font-size: 0.75rem;
  font-weight: 500;
  margin-right: 10px;
  padding: 2px 8px;
  border-radius: 3px;
}
#mainTop #sectionNews .contents-block .News__contents .news__list article .news__item-time .tag__category {
  display: inline-block;
  color: var(--default-orrange) !important;
  background: var(--default-white) !important;
  border: 1px solid var(--default-orrange);
  margin-right: 12px;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionNews .contents-block .News__contents .news__list article .news__item-time .tag__category {
    margin-right: 8px;
    padding: 2px 4px;
    font-size: 0.625rem;
  }
}
#mainTop #sectionNews .contents-block .News__contents .news__list article .news__item-thum {
  max-width: 80px;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionNews .contents-block .News__contents .news__list article .news__item-thum {
    display: none;
  }
}
#mainTop #sectionNews .contents-block .News__contents .news__list article .news__item-txt {
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#mainTop #sectionNews .contents-block .News__contents .news__list a {
  color: #000;
  display: block;
}
#mainTop #sectionNews .contents-block .News__contents .news__list a:hover .news__item-txt {
  color: var(--default-blue);
}
#mainTop #sectionAbout {
  overflow-x: hidden;
}
#mainTop #sectionAbout .contents-block {
  margin-bottom: 90px;
}
#mainTop #sectionAbout .contents-block .About__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionAbout .contents-block .About__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#mainTop #sectionAbout .contents-block .About__contents-img {
  min-width: 410px;
  margin-right: 60px;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionAbout .contents-block .About__contents-img {
    margin: 0 calc(50% - 50vw) 20px;
    width: 100vw;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
#mainTop #sectionAbout .contents-block .About__contents-detail h2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionAbout .contents-block .About__contents-detail h2 {
    margin-bottom: 24px;
  }
}
#mainTop #sectionAbout .contents-block .About__contents-detail p {
  margin-bottom: 30px;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 2.5rem;
}
#mainTop #sectionAbout .contents-block .About__contents-detail .more-btn {
  text-align: right;
}
#mainTop #sectionPlace {
  background: url("../images/bg_place01.jpg") no-repeat;
  background-size: cover;
}
#mainTop #sectionPlace .contents-block {
  padding: 55px 0;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionPlace .contents-block {
    padding: 40px 0;
  }
}
#mainTop #sectionPlace .contents-block .Place__contents {
  padding: 30px 0;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionPlace .contents-block .Place__contents {
    padding: 30px 10px;
  }
}
#mainTop #sectionPlace .contents-block .Place__contents h2 {
  margin-bottom: 24px;
}
#mainTop #sectionPlace .contents-block .Place__contents h2 .place_sub {
  display: block;
  color: var(--default-black);
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionPlace .contents-block .Place__contents h2 .place_sub {
    font-size: 0.875rem;
  }
}
#mainTop #sectionPlace .contents-block .Place__contents p {
  margin-bottom: 30px;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 2.25rem;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionPlace .contents-block .Place__contents p {
    text-align: left;
    font-size: 0.875rem;
    line-height: 2rem;
  }
}
#mainTop #sectionPlace .contents-block .Place__contents .more-btn {
  text-align: center;
  position: relative;
  z-index: 1;
}
#mainTop #sectionBusinessActivities .contents-block {
  background: var(--bg-yellow);
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionBusinessActivities .contents-block {
    padding: 40px 0 50px;
  }
}
#mainTop #sectionBusinessActivities .contents-block .BusinessActivities__contents h2 {
  margin-bottom: 40px;
  font-size: 2.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionBusinessActivities .contents-block .BusinessActivities__contents h2 {
    margin-bottom: 30px;
    font-size: 1.5rem;
  }
}
#mainTop #sectionBusinessActivities .contents-block .BusinessActivities__contents .activities__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionBusinessActivities .contents-block .BusinessActivities__contents .activities__list {
    margin-bottom: 30px;
  }
}
#mainTop #sectionBusinessActivities .contents-block .BusinessActivities__contents .activities__list li {
  width: calc(33.3333333333% - 23px);
  margin-right: 34px;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionBusinessActivities .contents-block .BusinessActivities__contents .activities__list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
#mainTop #sectionBusinessActivities .contents-block .BusinessActivities__contents .activities__list li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionBusinessActivities .contents-block .BusinessActivities__contents .activities__list li:last-child {
    margin-bottom: 0;
  }
}
#mainTop #sectionBusinessActivities .contents-block .BusinessActivities__contents .activities__list li a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#mainTop #sectionBusinessActivities .contents-block .BusinessActivities__contents .activities__list li a p {
  width: 100%;
  height: 164px;
}
#mainTop #sectionBusinessActivities .contents-block .BusinessActivities__contents .activities__list li a p img {
  display: inline-block;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px 5px 0 0;
}
#mainTop #sectionBusinessActivities .contents-block .BusinessActivities__contents .activities__list li a h3 {
  padding: 16px 84px 16px 40px;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.125rem;
  color: var(--default-orrange);
  background: var(--default-white);
  border-radius: 0 0 5px 5px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionBusinessActivities .contents-block .BusinessActivities__contents .activities__list li a h3 {
    padding: 16px 10px;
    text-align: left;
  }
}
#mainTop #sectionBusinessActivities .contents-block .BusinessActivities__contents .activities__list li a h3 span {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--default-black);
}
#mainTop #sectionBusinessActivities .contents-block .BusinessActivities__contents .activities__list li a h3::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 100%;
  background: var(--default-orrange);
  border-radius: 0 0 5px 0;
  position: absolute;
  top: 0;
  right: 0;
}
#mainTop #sectionBusinessActivities .contents-block .BusinessActivities__contents .activities__list li a h3::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(../common/ico_arrow_white-right.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 22px;
}
#mainTop #sectionBusinessActivities .contents-block .BusinessActivities__contents .activities__list li a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionBusinessActivities .contents-block .BusinessActivities__contents .meal-point {
    width: 100%;
  }
  #mainTop #sectionBusinessActivities .contents-block .BusinessActivities__contents .meal-point a {
    display: block;
    width: 100%;
    height: 100%;
  }
  #mainTop #sectionBusinessActivities .contents-block .BusinessActivities__contents .meal-point a img {
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#mainTop #sectionCommunityActivities .contents-block {
  background: var(--bg-yellow);
  padding: 0 0 100px 0;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionCommunityActivities .contents-block {
    padding: 0 0 50px 0;
  }
}
#mainTop #sectionCommunityActivities .contents-block .CommunityActivities__contents h2 {
  margin-bottom: 40px;
  font-size: 2.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionCommunityActivities .contents-block .CommunityActivities__contents h2 {
    margin-bottom: 30px;
    font-size: 1.5rem;
  }
}
#mainTop #sectionCommunityActivities .contents-block .CommunityActivities__contents .activities__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#mainTop #sectionCommunityActivities .contents-block .CommunityActivities__contents .activities__list li {
  width: calc(50% - 20px);
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionCommunityActivities .contents-block .CommunityActivities__contents .activities__list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
#mainTop #sectionCommunityActivities .contents-block .CommunityActivities__contents .activities__list li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionCommunityActivities .contents-block .CommunityActivities__contents .activities__list li:last-child {
    margin-bottom: 0;
  }
}
#mainTop #sectionCommunityActivities .contents-block .CommunityActivities__contents .activities__list li a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#mainTop #sectionCommunityActivities .contents-block .CommunityActivities__contents .activities__list li a p {
  width: 100%;
  height: 164px;
}
#mainTop #sectionCommunityActivities .contents-block .CommunityActivities__contents .activities__list li a p img {
  display: inline-block;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px 5px 0 0;
}
#mainTop #sectionCommunityActivities .contents-block .CommunityActivities__contents .activities__list li a h3 {
  padding: 16px 84px 16px 40px;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.125rem;
  font-weight: 500;
  color: var(--default-black);
  background: var(--default-white);
  border-radius: 0 0 5px 5px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #mainTop #sectionCommunityActivities .contents-block .CommunityActivities__contents .activities__list li a h3 {
    padding: 16px 10px;
    text-align: left;
    font-size: 1rem;
  }
}
#mainTop #sectionCommunityActivities .contents-block .CommunityActivities__contents .activities__list li a h3::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 100%;
  background: var(--default-orrange);
  border-radius: 0 0 5px 0;
  position: absolute;
  top: 0;
  right: 0;
}
#mainTop #sectionCommunityActivities .contents-block .CommunityActivities__contents .activities__list li a h3::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(../common/ico_arrow_white-right.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 22px;
}
#mainTop #sectionCommunityActivities .contents-block .CommunityActivities__contents .activities__list li a:hover {
  opacity: 0.8;
}
#mainTop #textBanner .contents-block {
  padding: 60px 0 100px 0;
}
@media screen and (max-width: 767px) {
  #mainTop #textBanner .contents-block {
    padding: 40px 0 60px 0;
  }
}
#mainTop #textBanner .contents-block h2 {
  font-size: 2.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #mainTop #textBanner .contents-block h2 {
    margin-bottom: 30px;
    font-size: 1.625rem;
  }
}
#mainTop #textBanner .contents-block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px 16px;
}
#mainTop #textBanner .contents-block ul li {
  width: calc(33.3333333333% - 11px);
}
@media screen and (max-width: 767px) {
  #mainTop #textBanner .contents-block ul li {
    width: 100%;
  }
}
#mainTop #textBanner .contents-block ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 35px 0 20px;
  min-height: 80px;
  border-radius: 10px;
  background: var(--bg-orrange);
  border: 2px solid rgba(237, 107, 0, 0);
  -webkit-box-shadow: 3px 3px 0px var(--default-orrange);
          box-shadow: 3px 3px 0px var(--default-orrange);
  font-weight: 400;
  color: var(--default-black);
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  #mainTop #textBanner .contents-block ul li a {
    padding: 0 35px 0 10px;
    min-height: 64px;
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}
#mainTop #textBanner .contents-block ul li a::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("../common/ico_window.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 20px;
}
#mainTop #textBanner .contents-block ul li a:hover {
  -webkit-box-shadow: unset;
          box-shadow: unset;
  -webkit-transform: translate(3px, 3px);
          transform: translate(3px, 3px);
  border: 2px solid var(--default-orrange);
}

#titleArea {
  height: 280px;
  background: url(../images/bg_titlearea.jpg) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  #titleArea {
    height: 160px;
    background-position: center center;
  }
}
#titleArea .titleArea-container {
  max-width: 1120px;
  margin: 0 auto;
  height: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 767px) and (max-width: 1080px) {
  #titleArea .titleArea-container {
    max-width: inherit;
    margin: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  #titleArea .titleArea-container {
    max-width: inherit;
    margin: 0 10px;
    height: 160px;
  }
}
#titleArea .titleArea-container .pageTitle {
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  color: var(--default-black);
  font-size: 2.25rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  #titleArea .titleArea-container .pageTitle {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.25rem;
  }
}

#Contents {
  padding: 0 0 120px 0;
}
@media screen and (max-width: 767px) {
  #Contents {
    padding: 0 0 80px 0;
  }
}
#Contents p {
  line-height: 1.8;
}

.pan-menu {
  margin: 60px 0 20px;
}
@media screen and (max-width: 767px) {
  .pan-menu {
    margin: 15px 0;
  }
}
.pan-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pan-menu ul li {
  margin-right: 40px;
  margin-bottom: 5px;
  font-size: 0.875rem;
  color: #6A6A6A;
  position: relative;
}
@media screen and (max-width: 767px) {
  .pan-menu ul li {
    margin-right: 36px;
    font-size: 13px;
  }
}
.pan-menu ul li:last-child {
  margin-right: 0;
}
.pan-menu ul li:last-child::before {
  display: none;
}
.pan-menu ul li::before {
  content: "";
  display: inline-block;
  position: absolute;
  right: -20px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #6A6A6A;
  border-right: 1px solid #6A6A6A;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.pan-menu ul li a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #6A6A6A;
}
.pan-menu ul li a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.pagelink {
  margin-bottom: 40px;
  background: var(--bg-yellow);
}
.pagelink .l-container {
  padding: 60px 0 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .pagelink .l-container {
    padding: 70px 0 40px;
  }
}
.pagelink .pagelink-title {
  margin-bottom: 20px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  position: absolute;
  top: -28px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .pagelink .pagelink-title {
    font-size: 1.25rem;
    display: block;
    top: -30px;
  }
}
.pagelink .pagelink-title span {
  display: inline-block;
  padding-left: 16px;
  color: var(--default-orrange);
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .pagelink .pagelink-title span {
    padding-left: 10px;
    font-size: 0.875rem;
  }
}
.pagelink ul {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pagelink ul li {
  width: calc(33.3333333333% - 14px);
  margin-right: 20px;
  margin-bottom: 10px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .pagelink ul li {
    width: 100%;
    margin-right: 0;
  }
}
.pagelink ul li:nth-child(3n) {
  margin-right: 0px;
}
.pagelink ul li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 80px;
  padding: 0 45px 0 20px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--default-black);
  font-weight: 500;
  border: solid 2px var(--default-orrange);
  background: var(--default-white);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .pagelink ul li a {
    width: 100%;
    min-height: 70px;
    margin-right: 0;
    font-size: 0.9375rem;
  }
}
.pagelink ul li a::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 21px;
  background: url(../common/ico_arrow_orrange-right.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pagelink ul li a:hover {
  background: var(--bg-orrange);
}
.pagelink ul li a:hover::before {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

.pagelink ul li .now {
  background: var(--bg-orrange);
}

.home-btn__area {
  margin: 40px 0 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .home-btn__area {
    margin: 30px 15px 40px;
  }
}
.home-btn__area a {
  display: inline-block;
  padding: 24px 100px;
  background: var(--default-white);
  color: var(--default-black);
  border: 2px solid var(--default-orrange);
  border-radius: 5px;
  font-size: 1.125rem;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .home-btn__area a {
    width: 100%;
    font-size: 1rem;
    padding: 16px 0;
  }
}
.home-btn__area a span {
  display: inline-block;
  padding-left: 30px;
  position: relative;
}
.home-btn__area a span::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../common/ico_home_orrange.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 0;
}
.home-btn__area a:hover {
  background: var(--bg-orrange);
}

#NotFound__page #Contents {
  padding: 0;
}

#Password__page {
  margin-bottom: 20px;
}
#Password__page #Contents {
  padding: 0;
}
#Password__page #Contents .input-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  #Password__page #Contents .input-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#Password__page #Contents .input-box .input-area {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  #Password__page #Contents .input-box .input-area {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
#Password__page #Contents .input-box .input-area input {
  width: 100%;
}
#Password__page #Contents .input-box .input-submit {
  display: inline-block;
}
#Password__page #Contents .input-box .input-submit a {
  display: block;
  padding: 3px 8px;
  background-color: var(--default-orrange);
  color: var(--default-white);
  font-size: 0.9375rem;
  border-radius: 2px;
  cursor: pointer;
}

/* ==========================================================================
お知らせ一覧ページ
========================================================================== */
#NewslistArea {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #NewslistArea {
    margin-bottom: 80px;
  }
}
#NewslistArea .news__list {
  padding: 40px 50px 70px 50px;
  background: var(--bg-yellow);
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  #NewslistArea .news__list {
    padding: 20px 10px;
  }
}
#NewslistArea .news__list article {
  font-weight: 500;
  padding: 24px 0;
  position: relative;
  border-bottom: 2px #ccc solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  #NewslistArea .news__list article {
    padding: 13px 0;
  }
}
#NewslistArea .news__list article .news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  #NewslistArea .news__list article .news__item {
    font-size: 0.875rem;
  }
}
#NewslistArea .news__list article .news__item-time {
  margin-bottom: 12px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #NewslistArea .news__list article .news__item-time {
    margin-bottom: 10px;
  }
}
#NewslistArea .news__list article .news__item-time .news_date {
  margin-right: 12px;
}
#NewslistArea .news__list article .news__item-time .tag__new {
  color: var(--default-white) !important;
  background: var(--default-orrange) !important;
  font-size: 0.75rem;
  font-weight: 500;
  margin-right: 10px;
  padding: 2px 8px;
  border-radius: 3px;
}
#NewslistArea .news__list article .news__item-time .tag__category {
  display: inline-block;
  color: var(--default-orrange) !important;
  background: var(--default-white) !important;
  border: 1px solid var(--default-orrange);
  margin-right: 12px;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  #NewslistArea .news__list article .news__item-time .tag__category {
    margin-right: 8px;
    padding: 2px 4px;
    font-size: 0.625rem;
  }
}
#NewslistArea .news__list article .news__item-thum {
  max-width: 80px;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  #NewslistArea .news__list article .news__item-thum {
    display: none;
  }
}
#NewslistArea .news__list article .news__item-txt {
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#NewslistArea .news__list a {
  color: #000;
  display: block;
}
#NewslistArea .news__list a:hover .news__item-txt {
  color: var(--default-blue);
}
#NewslistArea .news__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #NewslistArea .news__count {
    margin-bottom: 30px;
  }
}
#NewslistArea .news__count-txt {
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #NewslistArea .news__count-txt {
    margin-bottom: 10px;
    font-size: 0.9375rem;
  }
}
#NewslistArea .news__count-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0px;
}
#NewslistArea .news__count-list .newscount-btn a {
  text-decoration: none;
  color: var(--default-black);
  font-weight: 600;
  text-align: center;
  padding: 0 20px 0 7px;
  height: 36px;
  line-height: 36px;
  display: block;
  margin-right: 10px;
  letter-spacing: 0.1em;
  font-size: 1.063rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}
#NewslistArea .news__count-list .newscount-btn a::before {
  display: inline-block;
  content: "/";
  color: var(--default-black) !important;
  position: absolute;
  top: 0;
  right: 0;
}
#NewslistArea .news__count-list .newscount-btn:first-child a {
  padding: 0 20px 0 0;
}
#NewslistArea .news__count-list .newscount-btn:last-child a {
  padding: 0 0 0 7px;
  margin-right: 0;
}
#NewslistArea .news__count-list .newscount-btn:last-child a::before {
  display: none !important;
}
#NewslistArea .news__count-list .prev_btn a, #NewslistArea .news__count-list .next_btn a {
  color: var(--default-black);
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#NewslistArea .news__count-list .next_btn a, #NewslistArea .news__count-list .last_btn a {
  color: var(--default-orrange);
}
#NewslistArea .NewsCategory {
  margin-bottom: 25px;
}
#NewslistArea .NewsCategory ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#NewslistArea .NewsCategory ul li {
  margin-right: 16px;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  #NewslistArea .NewsCategory ul li {
    margin-right: 8px;
    margin-bottom: 8px;
  }
}
#NewslistArea .NewsCategory ul li:last-child {
  margin-right: 0;
}
#NewslistArea .NewsCategory ul li a {
  display: block;
  padding: 20px 80px;
  background: var(--default-orrange);
  border-radius: 5px;
  color: var(--default-white);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #NewslistArea .NewsCategory ul li a {
    padding: 8px 15px;
    font-size: 0.875rem;
  }
}

/* ==========================================================================
お知らせ中身ページ
========================================================================== */
.news__title {
  margin-bottom: 40px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .news__title {
    margin-bottom: 20px;
  }
}
.news__title-date {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .news__title-date {
    font-size: 1rem;
  }
}
.news__title-txt {
  font-size: 2.125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--default-orrange);
}
@media screen and (max-width: 767px) {
  .news__title-txt {
    font-size: 1.5rem;
  }
}

.news_detail__container {
  padding: 0 0 60px 0 !important;
  border-bottom: 1px solid #ddd;
}

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);
}

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

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

:-ms-input-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: -ms-grid;
    display: grid;
    -ms-grid-columns: 240px 1fr;
    grid-template-columns: 240px 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

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

.form-Item dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          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;
  -webkit-transform: rotate(-45deg);
  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;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.radio input[type=radio]:checked + .radio-label:before {
  background-color: var(--default-blue);
  -webkit-box-shadow: inset 0 0 0 4px var(--base-gray-default);
          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 {
  -webkit-box-shadow: inset 0 0 0 4px var(--base-gray-default);
          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: -webkit-box;
    display: -ms-flexbox;
    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);
  background-color: #fff0f5;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
          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%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.ajax_err p.arw_center:after {
  left: 50%;
  -webkit-transform: translateX(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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            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: -webkit-box;
    display: -ms-flexbox;
    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 */