body {
  color: #111;
  font-family: "YakuHanJP", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: .1rem;
  background: #333132;
  color: #fff;
}

a {
  color: #e60032;
  text-decoration: none;
  transition: all .3s ease
}

a:hover {
  color: #ff1a4c
}

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

#header {
  position: fixed;
  z-index: 4;
  width: 100%;
  background-color: gray
}

#header .inner {
  position: relative;
  padding: 0 12px;
  height: 74px
}

#header .inner #logo {
  padding-top: 12px;
  width: 300px
}

#header .inner #navi {
  position: absolute;
  top: 0;
  right: 100px;
  text-align: center
}

#header .inner #navi ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap
}

#header .inner #navi ul li {
  position: relative;
  box-sizing: border-box;
  padding: 20px 15px
}

#header .inner #navi ul li a {
  display: block;
  position: relative;
  font-weight: 400
}

#header .inner #navi ul li a span {
  color: #fff;
  font-family: "YakuHanJP", "Roboto", sans-serif;
  transition: all .3s ease;
  text-transform: uppercase
}

#header .inner #navi ul li a:hover {
  -webkit-animation-duration: 1s;
  -webkit-animation-name: flash;
  animation-duration: 1s;
  animation-name: flash
}

#nav-toggle {
  position: fixed;
  top: 20px;
  right: 25px;
  height: 32px;
  cursor: pointer
}

#nav-toggle>div {
  position: relative;
  width: 36px
}

#nav-toggle span {
  width: 100%;
  height: 1px;
  left: 0;
  display: block;
  background: #fff;
  position: absolute;
  transition: transform .6s ease-in-out, top .5s ease
}

#nav-toggle span:nth-child(1) {
  top: 0
}

#nav-toggle span:nth-child(2) {
  top: 14px
}

#nav-toggle span:nth-child(3) {
  top: 28px
}

#nav-toggle:hover span:nth-child(1) {
  top: 4px
}

#nav-toggle:hover span:nth-child(3) {
  top: 23px
}

.open #nav-toggle span {
  background: #fff
}

.open #nav-toggle span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg)
}

.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%
}

.open #nav-toggle span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg)
}

#nav-toggle {
  z-index: 1000
}

#container {
  z-index: 900
}

#gloval-nav {
  background: gray;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "YakuHanJP", "Roboto", sans-serif;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease
}

#gloval-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  transition: color .6s ease
}

#gloval-nav a:hover {
  color: #666
}

#gloval-nav ul {
  list-style: none
}

#gloval-nav ul li {
  opacity: 0;
  transform: translateX(200px);
  transition: transform .6s ease, opacity .2s ease
}

#gloval-nav ul li:nth-child(2) {
  transition-delay: .15s
}

#gloval-nav ul li:nth-child(3) {
  transition-delay: .3s
}

#gloval-nav ul li:nth-child(4) {
  transition-delay: .45s
}

#gloval-nav ul li:nth-child(5) {
  transition-delay: .6s
}

#gloval-nav ul li:nth-child(6) {
  transition-delay: .75s
}

#gloval-nav ul li:nth-child(7) {
  transition-delay: .9s
}

.open {
  overflow: hidden
}

.open #gloval-nav {
  visibility: visible;
  opacity: 1
}

.open #gloval-nav li {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity .9s ease
}

#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999
}

#page-top a {
  display: block;
  background: #e60032;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center
}

#page-top a:hover {
  background: #ff1a4c
}

#page-top a:before {
  display: block;
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900;
  -webkit-animation: pagetop 1.5s infinite;
  animation: pagetop 1.5s infinite
}

@-webkit-keyframes pagetop {
  0% {
    transform: translate(0, 6px);
    opacity: 0
  }
  50% {
    opacity: 1
  }
  100% {
    transform: translate(0, -6px);
    opacity: 0
  }
}

@keyframes pagetop {
  0% {
    transform: translate(0, 6px);
    opacity: 0
  }
  50% {
    opacity: 1
  }
  100% {
    transform: translate(0, -6px);
    opacity: 0
  }
}

#footer {
  background-color: #111;
  color: #fff;
  padding: 60px 0;
  font-size: 1.4rem
}

#footer .inner {
  margin: 0 auto;
  width: 95%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap
}

#footer .inner .flogo {
  margin-bottom: 10px;
  width: 250px
}

#footer .inner .address {
  font-size: 1.2rem
}

#footer .inner .copyright {
  margin-top: 30px;
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase
}

.contact_box {
  position: relative;
  padding-bottom: 70px
}

.contact_box .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 1150px;
  padding: 50px;
  border: 1px solid #ccc
}

.contact_box .inner .contact_left, .contact_box .inner .contact_right {
  width: 50%
}

.contact_box .inner .contact_left {
  padding-right: 40px
}

.contact_box .inner .contact_right {
  padding-left: 40px;
  border-left: .5px solid #ccc
}

.contact_box .inner .contact_txt {
  color: #e60032;
  font-size: .8em
}

.contact_tel {
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-size: 4rem;
  text-align: center
}

.contact_tel a {
  color: #fff
}

.contact_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900;
  margin-right: 10px;
  color: #e60032
}

.day {
  font-size: 1.2rem;
  text-align: center
}

.contact_tel_s {
  color: #e60032;
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-size: 3rem;
  text-align: center
}

.contact_tel_s:before {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900;
  margin-right: 10px
}

.contact_btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 30px
}

.contact_btn li {
  width: 40%;
  margin: 0 2%
}

.contact_btn li a, .contact_btn li span {
  display: block;
  border: none;
  padding: .7em 0;
  text-align: center;
  font-size: 2rem;
  font-weight: 400
}

.contact_btn li a:before, .contact_btn li span:before {
  margin-right: 10px
}

.contact_btn li a.tel_btn, .contact_btn li span.tel_btn {
  background: #fff;
  color: #e60032
}

.contact_btn li a.tel_btn:before, .contact_btn li span.tel_btn:before {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900
}

.contact_btn li a.fax_btn, .contact_btn li span.fax_btn {
  background: #e60032;
  color: #fff
}

.contact_btn li a.fax_btn:before, .contact_btn li span.fax_btn:before {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900
}

.contact_btn li a.mail_btn, .contact_btn li span.mail_btn {
  background: #e60032;
  color: #fff
}

.contact_btn li a.mail_btn:hover, .contact_btn li span.mail_btn:hover {
  background: #ff1a4c
}

.contact_btn li a.mail_btn:before, .contact_btn li span.mail_btn:before {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900
}

.contact_btn.contact_btn_02 li {
  width: 100%;
  margin: 0 0 20px
}

.contact_btn.contact_btn_03 li a {
  font-size: 1.5rem
}

#slideshow {
  position: relative;
  overflow: hidden
}

#slideshow .next_contents {
  display: block;
  position: absolute;
  z-index: 2;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 60px
}

#slideshow .next_contents span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box
}

#slideshow .next_contents span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: "";
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  box-sizing: border-box
}

.swiper-slide {
  overflow: hidden
}

.slide-img {
  overflow: hidden;
  height: 100vh
}

.slide-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;"
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0
  }
  40% {
    opacity: 1
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0
  }
  100% {
    opacity: 0
  }
}

@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0
  }
  40% {
    opacity: 1
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0
  }
  100% {
    opacity: 0
  }
}

#catch {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 870px;
  transform: translate(-50%, -50%)
}

#catch #svg_after {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 870px;
  transform: translate(-50%, -50%)
}

.single {
  margin: 0 auto;
  width: 1150px;
  padding-bottom: 70px
}

.single_01 {
  margin: 0 auto;
  width: 80%;
  padding-bottom: 70px
}

.single_02 {
  margin: 0 auto;
  width: 1024px;
  padding-bottom: 70px
}

.single_03 {
  margin: 0 auto;
  width: 768px;
  padding-bottom: 70px
}

.single_04 {
  padding-bottom: 70px
}

.main_contents {
  padding-top: 50px
}

.bg_common {
  padding-top: 70px
}

.bg_b {
  margin-bottom: 70px
}

.bg_01 {
  position: relative;
  background-image: url(../img/bg_01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover
}

.bg_01:before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0
}

.bg_02 {
  background-image: url(../img/bg_02.jpg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain
}

.bg_03 {
  background-image: url(../img/bg_03.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover
}

.half {
  display: flex;
  justify-content: space-between
}

.half .child {
  width: 50%
}

.triple {
  display: flex;
  justify-content: space-between
}

.triple .child {
  width: 33.3%
}

.column2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: -3%
}

.column2 .child {
  width: 48.44%;
  margin: 0 3% 3% 0
}

.column2 .child:nth-child(2n) {
  margin: 0 0 3% 0
}

.column3 {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin-bottom: -3%
}

.column3 .child {
  width: 31.3%;
  margin: 0 3% 3% 0
}

.column3 .child:nth-child(3n) {
  margin: 0 0 3% 0
}

.column4 {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: -3%
}

.column4 .child {
  width: 22.7%;
  margin: 0 3% 3% 0
}

.column4 .child:nth-child(4n) {
  margin: 0 0 3% 0
}

.column5 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: -1%
}

.column5 .child {
  width: 19.2%;
  margin: 0 1% 1% 0
}

.column5 .child:nth-child(5n) {
  margin: 0 0 1% 0
}

.flex_type {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px
}

.flex_type:last-child {
  margin-bottom: 0
}

.flex_type_01 .flex_image {
  width: 35%
}

.flex_type_01 .flex_detail {
  width: 62%
}

.mtitle_big {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .2em
}

.mtitle_big span {
  display: block;
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-size: 4rem;
  text-transform: uppercase
}

.mtitle_big:after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background-color: #e60032;
  margin: 1em auto 0
}

.mtitle_middle {
  position: relative;
  background-image: url(../img/bg_mtitle_line.gif);
  background-repeat: repeat-x;
  background-position: bottom left;
  margin-bottom: 20px;
  padding-bottom: 15px;
  color: #e60032;
  font-size: 2.2rem;
  font-weight: 400
}

.mtitle_middle span {
  margin-left: 1em;
  font-size: .8em
}

.mtitle_small {
  position: relative;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 30px
}

.mtitle_small:before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #e60032;
  position: absolute;
  left: 0;
  bottom: -15px
}

.mtitle {
  position: relative;
  border-bottom: 2px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 5px;
  font-size: 2.2rem;
  font-weight: 400
}

.mtitle:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 2px;
  background-color: #e60032
}

.mtitle_top {
  margin-bottom: 20px;
  font-size: 2.3rem;
  font-weight: 400;
  letter-spacing: .2em
}

.mtitle_top span {
  display: block;
  margin-top: 10px;
  font-size: .7em
}

.mtitle_index {
  position: relative;
  z-index: 3;
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-size: 4.5em;
  display: inline-block;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: .2em;
  color: #333132;
}

.mtitle_index span {
  display: block
}

.mtitle_sub {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  font-size: 1.8rem;
  font-weight: 400
}

.mtitle_sub:before {
  content: "";
  background-color: #e60032;
  width: 10px;
  height: 4px;
  position: absolute;
  top: .6em;
  left: 0
}

.mtitle_blog {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 5px;
  font-weight: 400
}

.mtitle_week {
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: .5px solid #fff
}

.mtitle_week span {
  margin-right: 1em;
  color: #e60032;
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase
}

.mtitle_flow {
  margin-bottom: 15px;
  text-align: center;
  font-size: 2rem;
  font-weight: 500
}

.mtitle_flow i {
  margin: 0 .5em
}

.mtitle_flow span {
  display: inline-block;
  padding: .5em 2em;
  min-width: 50%;
  background-color: #eeece1;
  font-size: 1.5rem;
  color: #333132;
}

.mtitle_flow span.emphasis {
  background-color: #948a54;
  color: #fff;
  margin-right: .5em
}

.a_btn {
  margin-top: 20px
}

.a_btn a, .a_btn button {
  display: table;
  background: #fff;
  border: 1px solid #e60032;
  color: #e60032;
  padding: .3em 4em;
  border-radius: 100px;
  margin: 0 auto;
  font-family: "YakuHanJP", "Roboto", sans-serif;
  text-transform: uppercase
}

.a_btn a:after, .a_btn button:after {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900;
  margin-left: 10px
}

.a_btn a:hover, .a_btn button:hover {
  background: #e60032;
  color: #fff
}

.b_btn {
  display: block;
  margin-top: 30px;
  width: 300px;
  padding: 1em;
  text-align: center;
  color: #e60032;
  border: 1px solid #e60032;
  background-color: rgba(0, 0, 0, 0);
  position: relative;
  transition: .46s
}

.b_btn:hover {
  background-color: #e60032;
  color: #fff
}

.b_btn:hover .b_btn_icon {
  background-color: #fff;
  right: 26px;
  width: 30px
}

.b_btn:hover .b_btn_icon:before {
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff
}

.b_btn .b_btn_icon {
  position: absolute;
  top: calc(50% - 1px);
  right: -30px;
  width: 60px;
  height: 1px;
  transition: inherit;
  background-color: #e60032
}

.b_btn .b_btn_icon:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border-top: 4px solid rgba(0, 0, 0, 0);
  border-left: 4px solid #e60032;
  border-right: 4px solid rgba(0, 0, 0, 0);
  border-bottom: 4px solid #e60032;
  transition: inherit
}

.b_btn.b_btn_01 {
  margin: 30px auto 0
}

.b_btn.b_btn_white {
  color: #fff;
  border: 1px solid #fff
}

.b_btn.b_btn_white:hover {
  background-color: #fff;
  color: #e60032
}

.b_btn.b_btn_white:hover .b_btn_icon {
  background-color: #e60032
}

.b_btn.b_btn_white:hover .b_btn_icon:before {
  border-left: 4px solid #e60032;
  border-bottom: 4px solid #e60032
}

.b_btn.b_btn_white .b_btn_icon {
  background-color: #fff
}

.b_btn.b_btn_white .b_btn_icon:before {
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff
}

.c_btn {
  margin-top: 30px
}

.c_btn a, .c_btn button {
  display: block;
  position: relative;
  width: 320px;
  max-width: 100%;
  background: #111;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  font-weight: 400
}

.c_btn a:after, .c_btn button:after {
  position: absolute;
  right: 15px;
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900;
  transition: .2s
}

.c_btn a:hover:after, .c_btn button:hover:after {
  right: 10px
}

.c_btn.c_btn_01 {
  position: absolute;
  bottom: -8%
}

.c_btn.c_btn_02 a, .c_btn.c_btn_02 button {
  margin: 0 auto
}

.news_box {
  position: relative;
  z-index: 2;
  display: flex;
  background: #fff;
  margin: -5% auto 0;
  width: 90%
}

.news_box .news_ttile {
  background: #e60032;
  color: #fff;
  width: 230px;
  padding: 20px 0
}

.news_box .news_bx {
  width: 100%;
  box-sizing: border-box;
  padding: 20px
}

.ticker {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: 100%
}

.ticker ul {
  position: relative;
  width: 100%
}

.ticker ul li {
  position: relative;
  width: 100%
}

.news-date {
  margin-right: 1em
}

.news-top dt {
  float: left;
  width: 7em
}

.news-top dd {
  padding: 0 0 10px 8em;
  border-bottom: 1px dotted #aaa;
  margin: 0 0 10px
}

.news-top dd:last-child {
  margin: 0;
  border-bottom: none
}

.news-bl dt {
  float: left;
  width: 7em;
  margin-bottom: 10px;
  padding: 3px 5px;
  text-align: center
}

.news-bl dd {
  padding: 0 0 10px 9em;
  line-height: 1.6;
  border-bottom: .5px dotted #fff;
  margin: 0 0 10px
}

.news-bl dd:last-child {
  margin: 0;
  border-bottom: none
}

.tbl {
  width: 100%;
  background-color: #fff
}

.tbl th, .tbl td {
  vertical-align: middle;
  border: 1px solid #ccc;
  padding: 10px
}

.tbl th {
  background: #f8f8f8;
  font-weight: 400
}

.tbl_new {
  width: 100%;
  /* background-color: #fff; */
  /* color: #333132; */
}

.tbl_new tr th, .tbl_new tr td {
  vertical-align: top;
  padding: 15px;
  border-bottom: 1px solid #ccc
}

.tbl_new tr th {
  width: 20%;
  font-weight: 400
}

.tbl_menu {
  font-size: 1.4rem
}

.tbl_menu tr th {
  width: 55%;
  text-align: left
}

.tbl_menu tr td {
  text-align: right
}

.tbl_form tr th {
  text-align: left;
  width: 25%
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px
}

.company th, .company td {
  padding: 10px;
  vertical-align: middle
}

.company th {
  text-align: left;
  width: 20%;
  position: relative;
  background: gray;
  color: #fff;
  font-weight: 400
}

.company th::after {
  left: 100%;
  top: 50%;
  border: solid rgba(0, 0, 0, 0);
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #fff;
  border-width: 10px;
  border-left-color: gray;
  margin-top: -10px
}

.company td {
  background: #fff;
  padding-left: 20px
}

.tbl_company {
  width: 100%
}

.tbl_company th, .tbl_company td {
  vertical-align: middle
}

.tbl_company th {
  width: 15%;
  border-bottom: 1px solid #e60032;
  padding: 12px;
  font-weight: 400
}

.tbl_company td {
  padding: 22px;
  border-bottom: 1px solid #ddd;
  line-height: 1.8em
}

.tbl_01 th {
  width: 20%
}

.list_common li {
  padding-bottom: 10px;
  padding-left: 1rem;
  margin-bottom: 10px;
  border-bottom: 1px dotted #ccc
}

.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none
}

.list_common li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin: 0 5px 0 -1rem;
  color: #e60032;
  padding: 1px
}

.list_check li:before {
  content: "";
  color: #e60032
}

.list_note li {
  margin-bottom: 5px;
  padding-left: 1.5em
}

.list_note li:last-child {
  margin-bottom: 0
}

.list_note li:before {
  content: "※";
  margin: 0 5px 0 -1.5em;
  color: red
}

.list_disc li {
  margin-bottom: 5px;
  padding-left: 1.5em
}

.list_disc li:last-child {
  margin-bottom: 0
}

.list_disc li:before {
  content: "・";
  margin: 0 5px 0 -1.5em;
  color: #e60032
}

.list_line li {
  position: relative;
  display: inline-block;
  padding: 0 10px
}

.list_line li:after {
  position: absolute;
  right: 0;
  content: "/"
}

.list_line li:last-child:after {
  display: none
}

.list_macker {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  text-align: center;
  font-size: 1.1em;
  font-weight: 400
}

.list_macker li {
  width: 18.4%;
  margin: 0 2% 1% 0
}

.list_macker li:nth-child(5n) {
  margin: 0 0 1% 0
}

.rounded-list {
  counter-reset: li;
  padding-left: 1em;
  list-style: none
}

.rounded-list li {
  position: relative;
  padding: .4em .4em .4em 2em;
  margin: .5em 0;
  background: #fafafa;
  border-radius: .3em;
  transition: all .3s ease-out;
  box-sizing: border-box
}

.rounded-list li:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: -1.3em;
  top: 50%;
  margin-top: -1.3em;
  background: #e60032;
  color: #fff;
  height: 2em;
  width: 2em;
  line-height: 2em;
  border: .3em solid #fff;
  text-align: center;
  font-weight: 400;
  border-radius: 2em;
  transition: all .3s ease-out
}

.works-area {
  display: table;
  width: 100%;
  margin-bottom: 40px
}

.works-area .before-img, .works-area p, .works-area .after-img {
  display: table-cell;
  vertical-align: middle;
  text-align: center
}

.works-area .before-img, .works-area .after-img {
  background-color: #f8f8f8;
  width: 45%
}

.works-area p {
  padding: 0 2%
}

.works-area div img {
  width: auto;
  max-width: 4100px;
  height: 100%;
  max-height: 330px
}

.works-area:last-child {
  margin-bottom: 0
}

.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden
}

.ggmap iframe, .ggmap object, .ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.sns_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px
}

.sns_list li {
  width: 48.5%;
  margin-right: 3%
}

.sns_list li:last-child {
  margin: 0
}

.sns_btn {
  overflow: hidden;
  color: #fff;
  position: relative;
  display: block;
  border-radius: 5px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  vertical-align: middle
}

.sns_btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.sns_btn i {
  font-size: 2rem;
  position: relative;
  top: 3px;
  margin-right: 10px
}

.sns_btn span {
  display: inline-block;
  position: relative;
  transition: .5s
}

.sns_btn:hover {
  color: #fff
}

.sns_btn:hover span {
  transform: rotateX(360deg)
}

.facebook_btn {
  background: #4267b2
}

.insta_btn {
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat
}

.insta_btn:before {
  background: linear-gradient(15deg, #ffdb2c, #f9764c 25%, rgba(255, 77, 64, 0) 50%) no-repeat
}

.line_btn {
  background: #00b82b
}

.article {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: gray;
  color: #fff
}

.article .article_image {
  width: 60%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center
}

.article .article_detail {
  position: relative;
  width: 40%;
  box-sizing: border-box;
  padding: 70px 0
}

.article .article_detail .inner {
  margin: 0 auto;
  width: 80%
}

.article.article_small .article_detail {
  padding: 70px 0
}

.article.article_b {
  margin-bottom: 50px
}

.article.article_01 .article_image {
  background-image: url(../img/article_01.jpg)
}

.article.article_02 .article_image {
  background-image: url(../img/article_02.jpg)
}

.article.article_03 .article_image {
  background-image: url(../img/top_link_01.jpg)
}

.article.article_04 .article_image {
  background-image: url(../img/article_04.jpg)
}

.article.article_05 .article_image {
  background-image: url(../img/article_05.jpg)
}

.article.article_06 .article_image {
  background-image: url(../img/article_06.jpg)
}

.about_article {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #fff
}

.about_article .article_image {
  width: 35%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center
}

.about_article .article_detail {
  position: relative;
  width: 65%;
  box-sizing: border-box;
  padding: 30px 0
}

.about_article .article_detail .inner {
  margin: 0 auto;
  width: 80%
}

.news_list li {
  padding: 20px;
  border-bottom: 1px dotted #fff
}

.news_list li a {
  display: flex;
  justify-content: start;
  align-items: center;
  color: #fff
}

.news_list li a .news_date {
  margin-right: 20px
}

.news_list li a .news_category {
  background: #fff;
  border: 1px solid #e60032;
  color: #e60032;
  padding: 5px;
  margin-right: 30px;
  min-width: 140px;
  text-align: center
}

.blog {
  display: block;
  overflow: hidden;
  color: #111
}

.thumb_image {
  display: block;
  overflow: hidden;
  margin-bottom: 10px;
  width: 100%;
  height: 196px
}

.thumb_image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  vertical-align: middle;
  border-radius: 10px
}

.date {
  display: inline-block;
  margin-bottom: 15px
}

.date:before {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900;
  margin-right: 5px;
  color: #e60032
}

.date_top {
  display: inline-block;
  font-size: 1.4rem
}

.blog_contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 95%;
  margin: 0 auto;
  padding-bottom: 70px
}

.blog_contents .blog_main {
  width: 65%;
  box-sizing: border-box
}

.blog_contents .blog_side {
  width: 30%
}

.category_nav {
  margin-bottom: 40px
}

.category_nav li {
  border-bottom: 1px dotted #111
}

.category_nav li:last-child {
  border-bottom: none
}

.category_nav li a {
  display: block;
  padding: 10px 15px;
  background-color: #787878
}

.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900;
  margin-right: 5px;
  color: #e60032;
  margin-right: 5px
}

.category_nav li:last-child a {
  border-bottom: none
}

.blog_title {
  margin-bottom: 10px;
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase
}

.blog_title:before {
  margin-right: 5px;
  color: #e60032
}

.blog_title.archive:before {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900
}

.blog_title.new:before {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900
}

.blog_article {
  background-color: #787878;
  padding: 20px;
  margin-bottom: 70px
}

.blog_article:last-child {
  margin-bottom: 0
}

.blog_new {
  border-bottom: 1px dotted #e60032
}

.blog_new:last-child {
  border-bottom: none
}

.blog_new a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 10px
}

.blog_new a .image {
  width: 40%
}

.blog_new a .detail {
  width: 50%
}

.blog_new a .detail .entry_title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis
}

.pages {
  overflow: hidden;
  margin-top: 50px
}

.pages .page_next, .pages .page_prev {
  display: inline-block
}

.pages .page_next a, .pages .page_prev a {
  display: block;
  padding: 10px 20px;
  background-color: gray
}

.pages .page_next {
  float: left
}

.pages .page_prev {
  float: right
}

.vertical {
  position: relative;
  display: block;
  width: 100%
}

.vertical:before {
  content: "";
  display: block;
  padding-top: 75%
}

.vertical img {
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit:contain";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.history_list li {
  display: flex;
  align-items: flex-start
}

.history_list li .history_list_year {
  display: flex;
  align-items: center;
  width: 40vw;
  min-width: 193px;
  max-width: 193px
}

.history_list li .history_list_year .year_list .christian {
  margin-left: 10px;
  font-size: 1.5em;
  font-weight: 400
}

.history_list li .history_list_txt {
  padding: 0 0 30px;
  border-left: 1px dashed #111
}

.history_list li .history_list_txt .txt_list {
  position: relative;
  padding: 6px 0 0 45px
}

.history_list li .history_list_txt .txt_list:before {
  position: absolute;
  top: 16px;
  left: -7px;
  width: 12px;
  height: 12px;
  margin: auto;
  content: "";
  border-radius: 50%;
  background: #e60032
}

.faq dt:before, .faq dd:before {
  margin-right: 10px;
  font-size: 2rem;
  color: #fff;
  width: 35px;
  height: 35px;
  display: inline-block;
  text-align: center
}

.faq dt, .faq dd {
  text-indent: -40px
}

.faq dt:before, .faq dd:before {
  text-indent: 0
}

.faq dt {
  font-weight: 400;
  margin-bottom: 10px;
  padding: 0 1em 0 40px;
  border-bottom: 1px solid #ccc
}

.faq dt:before {
  content: "Q";
  background: #ea384e
}

.faq dd {
  margin-bottom: 20px;
  padding: 0 1em 1em 40px
}

.faq dd:before {
  content: "A";
  background: #437cdb
}

.thumb_list {
  display: block;
  color: #111;
  font-size: 1.4rem
}

.thumb_list .thumb_image {
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
  background: #eef6f3
}

.thumb_list .thumb_image img {
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: transform .3s
}

.thumb_list .thumb_image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, .4);
  transition: opacity .3s
}

.thumb_list .thumb_image:after {
  display: block;
  content: "";
  padding-top: 67%
}

.thumb_list .thumb_title {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: 400
}

.thumb_list:hover {
  color: #111
}

.thumb_list:hover .thumb_image img {
  transform: scale(1.2)
}

.detail_btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  text-align: center;
  transition: opacity .3s;
  background: #fff;
  padding: 3px 10px;
  font-size: 1.2rem
}

.detail_btn:before {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900;
  color: #e60032;
  margin-right: 5px
}

.gallery_ul {
  display: flex;
  justify-content: start;
  flex-wrap: wrap
}

.gallery_ul li {
  width: 31.3%;
  margin: 0 3% 3% 0;
  text-align: center
}

.gallery_ul li:nth-child(3n) {
  margin: 0 0 3% 0
}

.gallery_ul li a {
  display: none;
  position: relative;
  overflow: hidden;
  background: #f2f2f2
}

.gallery_ul li a img {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  /* height: 100%; */
  transition: transform .3s
}

.gallery_ul li a:before {
  display: block;
  content: "";
  padding-top: 66%
}

.gallery_ul li a:hover img {
  opacity: .6;
  transform: scale(1.1);
}

.gallery_ul li a:first-child {
  display: block
}

.gallery_ul li span {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}

.flow_contents {
  position: relative
}

.flow_contents:after {
  position: absolute;
  top: 0;
  left: 33px;
  z-index: 0;
  width: 6px;
  height: 100%;
  background-image: url(../img/bg_flow.gif);
  background-repeat: repeat-y;
  background-position: 0 9px;
  content: ""
}

.flow_contents:last-child:after {
  display: none
}

.flow_contents .flow_list {
  margin-left: 120px;
  padding-bottom: 40px
}

.top_section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 40px 8.33333%;
  color: #fff
}

.top_section:before {
  content: "";
  display: block;
  background-color: #e60032;
  position: absolute;
  top: 12%;
  left: 0;
  z-index: 1;
  width: 0;
  height: 76%;
  transition: width .6s cubic-bezier(0.47, 0, 0.745, 0.715);
  width: 83.33333%
}

.top_section .top_section_body {
  position: relative;
  z-index: 2;
  width: 41.66667%;
  padding: 100px 50px
}

.top_section .top_section_img {
  overflow: hidden;
  position: relative;
  z-index: 2;
  width: 50%;
  height: 410px
}

.top_section .top_section_img .move {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%
}

.top_section .top_section_img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;"
}

.top_link li {
  position: relative;
  overflow: hidden
}

.top_link li a {
  display: block;
  padding: 150px 0;
  z-index: 1;
  position: relative
}

.top_link li a:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: all .3s ease-out
}

.top_link li a:hover:after {
  opacity: 1;
  transform: scale(1.2)
}

.top_link li a .top_link_title {
  position: relative;
  z-index: 2;
  display: table;
  margin: auto;
  width: 80%;
  padding: 1em 0;
  background-color: rgba(255, 255, 255, .8);
  color: #111;
  font-weight: 400;
  text-align: center;
  line-height: 1.2
}

.top_link li a .top_link_title span {
  display: block;
  color: #e60032;
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-size: 3rem;
  text-transform: uppercase
}

.top_link li:nth-child(1) a:after {
  background-image: url(../img/top_link_01.jpg)
}

.top_link li:nth-child(2) a:after {
  background-image: url(../img/top_link_02.jpg)
}

.top_link li:nth-child(3) a:after {
  background-image: url(../img/top_link_03.jpg)
}

.index_main {
  margin: 0 auto;
  max-width: 100%
}

.index_main .index_title {
  position: relative;
  background-image: url(../img/bg_index_title2.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 200px 100px 35px;
  color: #333132;
}

.index_main .index_detail {
  position: relative;
  z-index: 2;
  padding: 0 0 0 450px
}

.index_main .index_detail .inner {
  position: relative;
  margin-top: -280px;
  padding: 70px 100px;
  background: #f2f2f2;
  color: #000
}

.index_bnr {
  margin: 0 -2px
}

.index_bnr ul {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}

.index_bnr ul li {
  width: 14.2%;
  padding: 2px
}

.index_bnr ul li a {
  display: block;
  position: relative;
  z-index: 2;
  overflow: hidden
}

.index_bnr ul li a:hover img {
  transform: scale(1.1)
}

.index_bnr ul li a img {
  display: block;
  width: 100%;
  transition-duration: .3s
}

.index_bnr ul li a span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  line-height: 1.2;
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .2em
}

.index_bnr ul li a span em {
  display: block;
  font-family: "YakuHanJP", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-size: 1.4rem
}

.index_bnr.index_bnr_01 {
  margin-top: -180px
}

.top_news {
  position: relative;
  z-index: 3;
  background-color: gray;
  margin-top: -100px;
  padding: 30px
}

.week {
  background-image: url(../img/bg_week.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover
}

.week .child {
  padding: 100px 50px
}

.week .child:first-child {
  background-color: rgba(128, 128, 128, .8)
}

.week .child:last-child {
  background-color: rgba(0, 0, 0, .8)
}

.top_main {
  background-image: url(../img/bg_top_main.png);
  background-repeat: no-repeat;
  background-position: left center;
  font-family: "YakuHanJP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 2rem;
  font-weight: 400
}

.top_main .inner {
  background-image: url(../img/illustration_pc.png);
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px 0
}

.thumb_list {
  display: block;
  color: #111;
  font-size: 1.4rem
}

.thumb_list .thumb_image {
  position: relative;
  margin-bottom: 5px;
  overflow: hidden;
  background: #e60032
}

.thumb_list .thumb_image img {
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: transform .3s
}

.thumb_list .thumb_image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, .4);
  transition: opacity .3s
}

.thumb_list .thumb_image:after {
  display: block;
  content: "";
  padding-top: 67%
}

.thumb_list .thumb_image .detail_btn {
  opacity: 0;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  text-align: center;
  transition: opacity .3s;
  background: #fff;
  padding: 3px 30px;
  font-family: "YakuHanJP", "Roboto", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase
}

.thumb_list .thumb_title {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center
}

.thumb_list:hover {
  color: #111
}

.thumb_list:hover .thumb_image .detail_btn {
  opacity: 1
}

.thumb_list:hover .thumb_image:before {
  opacity: 1
}

.step_flow {
  text-align: center
}

.step_flow>li {
  position: relative;
  padding-bottom: 9%
}

.step_flow>li:after {
  content: "";
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  border-style: solid;
  border-width: 18px 24px 0 24px;
  border-color: #c3c1ba rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0)
}

.step_flow>li:last-child {
  padding-bottom: 0
}

.step_flow>li:last-child:after {
  display: none
}

.font-s {
  font-size: 1.3rem
}

.carousel {
  padding: 0 60px
}

.mbox {
  background-color: #fff
}

.mbox .inner {
  padding: 20px
}

.policy {
  background-color: #f9f9f9;
  padding: 30px;
  color: #333132;
}

.cut {
  overflow: hidden;
  zoom: 1
}

.macker {
  background-image: linear-gradient(left, transparent 50%, #fbff00 50%);
  background-repeat: repeat-x;
  background-size: 200% .3em;
  background-position: 0 1em;
  transition: all 3.5s ease;
  font-style: normal;
  font-weight: 400;
  padding: 0 5px
}

.macker.active {
  background-position: -100% .8em
}

@-webkit-keyframes loadingAnim {
  0% {
    width: 0
  }
  100% {
    width: 100%;
    transform: translate(100%)
  }
}

@keyframes loadingAnim {
  0% {
    width: 0
  }
  100% {
    width: 100%;
    transform: translate(100%)
  }
}

@-webkit-keyframes loadingAnim_text {
  0% {
    opacity: 1;
    color: #e60032
  }
  50% {
    color: #111
  }
  100% {
    opacity: .5;
    color: #eee
  }
}

@keyframes loadingAnim_text {
  0% {
    opacity: 1;
    color: #e60032
  }
  50% {
    color: #111
  }
  100% {
    opacity: .5;
    color: #eee
  }
}

@-webkit-keyframes flash {
  0% {
    opacity: .4
  }
  100% {
    opacity: 1
  }
}

@keyframes flash {
  0% {
    opacity: .4
  }
  100% {
    opacity: 1
  }
}

@-webkit-keyframes animation-bar {
  0% {
    left: 0;
    right: auto;
    width: 0
  }
  50% {
    left: 0;
    right: auto;
    width: 100%
  }
  51% {
    left: auto;
    right: 0;
    width: 100%
  }
  100% {
    left: auto;
    right: 0;
    width: 101%
  }
}

@keyframes animation-bar {
  0% {
    left: 0;
    width: 0
  }
  50% {
    left: 0;
    width: 100%
  }
  51% {
    left: 0;
    width: 100%
  }
  100% {
    left: 101%;
    width: 0
  }
}

@-webkit-keyframes animation-txt {
  0% {
    opacity: 0
  }
  50% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}

@keyframes animation-txt {
  0% {
    opacity: 0
  }
  50% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}

.animation.move .animation-bar:before {
  -webkit-animation: animation-bar 1s ease 0s 1 normal forwards;
  animation: animation-bar 1s ease 0s 1 normal forwards
}

.animation.move .animation-txt {
  -webkit-animation: animation-txt 0s ease .5s 1 normal forwards;
  animation: animation-txt 0s ease .5s 1 normal forwards
}

.animation .animation-box {
  display: block;
  text-align: center
}

.animation .animation-bar {
  position: relative;
  display: inline-block;
  transform: translate3d(0, 0, 0)
}

.animation .animation-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #e60032
}

.animation .animation-txt {
  opacity: 0;
  transform: translate3d(0, 0, 0)
}

.effect_fade {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 2s
}

.effect_fade.effect_scroll {
  opacity: 1;
  transform: translate(0, 0)
}

.page_title_box {
  background-image: url(../img/bg_slide_01.jpg);
  background-repeat: no-repeat;
  background-position: center 70%;
  background-size: cover;
  color: #fff
}

.page_title_box .inner {
  background-color: rgba(17, 17, 17, .5);
  padding: 130px 0 40px
}

.breadcrumb_box {
  background-color: #f3f3f3;
  padding: 10px 0
}

.breadcrumb_box .breadcrumb {
  margin: 0 auto;
  width: 1150px;
  padding-left: 0
}

.breadcrumb_box .breadcrumb li {
  display: inline
}

.breadcrumb_box .breadcrumb li+li:before {
  margin: 0 10px;
  content: ">"
}

.breadcrumb_box .breadcrumb .home:before {
  font-family: "Font Awesome 5 Free";
  content: "";
  font-weight: 900
}

.form .required {
  background: #e60032;
  color: #fff;
  padding: 0 5px 0;
  margin-right: 5px;
  font-size: 1.1rem;
  border-radius: 2px;
  position: relative;
  top: -2px
}

.form .textarea, .form textarea {
  border: 1px solid #ddd;
  padding: 5px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  box-sizing: border-box
}

.form .textarea {
  height: 30px
}

.form .textarea02 {
  width: 48.5%;
  margin-right: 3%
}

.form .textarea02:last-child {
  margin-right: 0
}

.form .textarea03 {
  width: 20%;
  margin-right: 1%
}

.form button {
  display: block;
  cursor: pointer;
  transition: all .2s ease-in-out 0s;
  font-family: "YakuHanJP", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem
}

.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block
}

.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3
}

.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 3px;
  top: 5px;
  background-color: #e60032;
  z-index: 1
}

.form label.radio_text input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  box-shadow: 20px -1px gray
}

.form label.radio_text input[type=radio]:checked {
  box-shadow: none
}

.form label.radio_text input[type=radio]:focus {
  opacity: .2;
  box-shadow: 20px -1px #eeebda
}

.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-right: 20px;
  overflow: hidden;
  display: inline-block;
  box-sizing: border-box
}

.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3
}

.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #e60032;
  border-bottom: 3px solid #e60032;
  transform: rotate(45deg);
  z-index: 1
}

.form label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px
}

.form label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none
}

.form label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: .1
}

.form label.checkbox_text input[type=checkbox]:focus {
  box-shadow: 41px 0px #eee
}

#colorbox, #cboxWrapper, #cboxLoadedContent {
  height: 100vh !important
}

/* フォームCMS */
.form-pattern-1 dd:not(.pattern-exclusion) .textarea {
  border-radius: 0px !important;
}

.form-contents {
  background: none !important;
  }

.submit-btn {
	background: #333132 !important;
	border: 1px solid #E60032 !important;
	font-size: 15px !important;
	width: 260px !important;
  border-radius: 0px !important;
  color: #E60032 !important;
}

.submit-btn:hover {
	background: #E60032 !important;
	color: #fff !important;
}

.submit-btn::before {
	display: none !important;
}
/* ------------------------ */