@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Rancho&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;700&display=swap");
div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
サイト固有の追加項目
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/* IE表示用のCSS　*/
html, body {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  html, body {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  html, body {
    font-size: 16px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 1200px) {
  html, body {
    font-size: 16px;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: "Roboto", arial, sans-serif;
  background: #fff;
  color: #525050;
}
body a {
  color: #333;
  text-decoration: none;
}
body a:hover {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
body strong {
  font-weight: bold;
}
body .small {
  font-size: 0.8rem;
}

::-moz-selection {
  background: #FFF3CE;
}

::selection {
  background: #FFF3CE;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%; /*for responsive*/
  height: auto; /*for responsive*/
  width: auto; /* IE8のみ */
}

.opacity:hover {
  opacity: 80%;
  -moz-opacity: 0.8;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
colors
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
動きのclass
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.js-animation {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

/*************************************/
/*==================================

loading

==================================*/
.shutter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #F8F4E9;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  -webkit-animation: byeShutter 2.6s forwards;
          animation: byeShutter 2.6s forwards;
}
.shutter img {
  position: absolute;
  top: -10%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
}
@media screen and (min-width: 768px) {
  .shutter img {
    width: 80px;
  }
}
.shutter::before, .shutter::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.shutter::before {
  background-color: #D94D23;
  width: 0;
  height: 1px;
  -webkit-animation: shutterOpen1 2.6s forwards;
          animation: shutterOpen1 2.6s forwards;
}
.shutter::after {
  width: 120%;
  height: 0;
  margin-left: -10%;
  background-color: white;
  -webkit-animation: shutterOpen2 2.6s forwards;
          animation: shutterOpen2 2.6s forwards;
}

.wrap {
  -webkit-animation: contentScale 2.3s forwards;
          animation: contentScale 2.3s forwards;
}

@-webkit-keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
@-webkit-keyframes shutterOpen1 {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes shutterOpen1 {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@-webkit-keyframes shutterOpen2 {
  60% {
    width: 120%;
    height: 0;
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  90% {
    width: 120%;
    height: 100%;
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    width: 120%;
    height: 100%;
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}
@keyframes shutterOpen2 {
  60% {
    width: 120%;
    height: 0;
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  90% {
    width: 120%;
    height: 100%;
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    width: 120%;
    height: 100%;
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}
@-webkit-keyframes contentScale {
  70% {
    -webkit-transform: perspective(800px) scale(0.9) rotateX(15deg);
            transform: perspective(800px) scale(0.9) rotateX(15deg);
  }
  100% {
    -webkit-transform: perspective(800px) scale(1) rotateX(0);
            transform: perspective(800px) scale(1) rotateX(0);
  }
}
@keyframes contentScale {
  70% {
    -webkit-transform: perspective(800px) scale(0.9) rotateX(15deg);
            transform: perspective(800px) scale(0.9) rotateX(15deg);
  }
  100% {
    -webkit-transform: perspective(800px) scale(1) rotateX(0);
            transform: perspective(800px) scale(1) rotateX(0);
  }
}
/*==================================

header

==================================*/
header {
  z-index: 999;
  width: 100%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  height: 60px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  header {
    height: 75px;
  }
}

/*PC header*/
.pc_header {
  display: none;
  vertical-align: baseline;
}
@media screen and (min-width: 768px) {
  .pc_header {
    height: 75px;
    margin: 0 2%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .pc_header img {
    width: 200px;
  }
}
.pc_header .pc_header_nav {
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  /* Aboutus nav */
}
@media screen and (min-width: 768px) {
  .pc_header .pc_header_nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 800px;
  }
}
@media screen and (min-width: 1200px) {
  .pc_header .pc_header_nav {
    max-width: 980px;
  }
}
.pc_header .pc_header_nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.pc_header .pc_header_nav ul li:hover {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.pc_header .pc_header_nav ul li:hover .nav_child_link {
  top: 4.7rem;
  visibility: visible;
  opacity: 1;
  z-index: 9999;
}
.pc_header .pc_header_nav ul li a {
  position: relative;
  letter-spacing: 1.5px;
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .pc_header .pc_header_nav ul li a {
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 992px) {
  .pc_header .pc_header_nav ul li a {
    font-size: 0.9rem;
  }
}
.pc_header .pc_header_nav ul li a:hover {
  color: #D94D23;
}
.pc_header .pc_header_nav ul li a:after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #D94D23;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pc_header .pc_header_nav ul li a:hover:after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}
.pc_header .pc_header_nav ul li .bt_normal {
  font-size: 1.3rem;
  padding: 0.2rem 0.5rem;
  letter-spacing: 1.5px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .pc_header .pc_header_nav ul li .bt_normal {
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 992px) {
  .pc_header .pc_header_nav ul li .bt_normal {
    font-size: 0.9rem;
  }
}
.pc_header .pc_header_nav ul li .bt_normal:after {
  background-image: none;
}
.pc_header .pc_header_nav ul li .bt_normal:hover {
  color: white;
}
.pc_header .pc_header_nav ul li .bt_normal:hover::after {
  visibility: hidden;
}
.pc_header .pc_header_nav .header_nav_jp {
  position: relative;
}
@media screen and (min-width: 768px) {
  .pc_header .pc_header_nav .header_nav_jp {
    margin-left: 1rem;
  }
}
.pc_header .pc_header_nav .header_nav_jp a:before {
  position: absolute;
  content: "";
  background-image: url(/img/zh-cn/common/icon_black_global.svg), url(/img/zh-cn/common/icon_orange_global.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 16px auto, 0 0;
  width: 16px;
  height: 24px;
  top: 0.2rem;
  left: 0.3rem;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .pc_header .pc_header_nav .header_nav_jp a:before {
    top: 0rem;
    left: -1.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .pc_header .pc_header_nav .header_nav_jp a:before {
    background-size: 16px auto;
    width: 16px;
    height: 24px;
    left: -1.2rem;
    margin-left: 0;
  }
}
.pc_header .pc_header_nav .header_nav_jp a:hover::before {
  background-size: 0 0, 16px auto;
}
.pc_header .pc_header_nav .nav_parent {
  font-family: "Lato", serif;
  padding: 0 0.7rem;
}
@media screen and (min-width: 1200px) {
  .pc_header .pc_header_nav .nav_parent {
    padding: 0 1.5rem;
  }
}
.pc_header .pc_header_nav .nav_child_link {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: 999;
  background-image: url(/img/zh-cn/aboutus/aboutus_nav_bg.jpg);
  background-repeat: no-repeat, repeat;
  background-position: -31% top;
  background-size: auto 100%;
  width: 95%;
  max-width: 1160px;
  top: 4.7rem;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media screen and (min-width: 768px) {
  .pc_header .pc_header_nav .nav_child_link {
    background-position: -31% top;
  }
}
@media screen and (min-width: 992px) {
  .pc_header .pc_header_nav .nav_child_link {
    background-position: -26% top;
    width: 85%;
  }
}
@media screen and (min-width: 1200px) {
  .pc_header .pc_header_nav .nav_child_link {
    background-position: -9% top;
    width: 80%;
  }
}
.pc_header .pc_header_nav .nav_child_link .nav_child_wrap {
  margin-left: 45%;
}
.pc_header .pc_header_nav .nav_child_link .nav_child_ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #D94D23;
  color: #fff;
  font-size: 1.4rem;
  padding: 1rem 2rem;
  border-bottom: 1px solid white;
}
@media screen and (min-width: 1200px) {
  .pc_header .pc_header_nav .nav_child_link .nav_child_ttl {
    padding: 1rem 2rem 1rem 2rem;
  }
}
.pc_header .pc_header_nav .nav_child_link .nav_child_ttl p {
  font-family: "Lato", serif;
  width: 49%;
}
.pc_header .pc_header_nav .nav_child_link .nav_child_ttl .nav_child_btn {
  font-family: "Roboto", arial, sans-serif;
  padding: 0.5rem 1rem;
  margin: 0rem;
}
.pc_header .pc_header_nav .nav_child_link .nav_child_ttl .nav_child_btn:after {
  width: 0px;
}
.pc_header .pc_header_nav .nav_child_link ul {
  background-color: white;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 2rem 0rem 0.5rem 1.5rem;
}
@media screen and (min-width: 992px) {
  .pc_header .pc_header_nav .nav_child_link ul {
    padding: 2rem 0rem 0.5rem 2rem;
  }
}
.pc_header .pc_header_nav .nav_child_link ul .nav_child {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 49%;
  font-family: "Roboto", arial, sans-serif;
  line-height: 1.2;
  padding-bottom: 1.5rem;
}
.pc_header .pc_header_nav .nav_child_link ul .nav_child:before {
  display: block;
  content: "";
  width: 16px;
  height: 17px;
  background-image: url(/img/zh-cn/common/icon_black_next.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
}
.pc_header .pc_header_nav .nav_child_link ul .nav_child a {
  display: block;
  font-size: 0.9rem;
  font-weight: normal;
}
@media screen and (min-width: 992px) {
  .pc_header .pc_header_nav .nav_child_link ul .nav_child a {
    font-size: 1rem;
  }
}

/*SP header*/
.sp_header {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 1rem;
  padding-right: 1rem;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .sp_header {
    display: none;
  }
}
.sp_header .head_logo {
  display: block;
  height: 100%;
  width: 180px;
}

/*ハンバーガーメニュー＆モーダル */
.humburger {
  position: absolute;
  top: 7px;
  right: 10px;
  width: 34px;
  height: auto;
  padding-top: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 10000;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  pointer-events: auto;
  text-align: center;
  font-size: 0.7rem;
  font-family: "Lato", serif;
}

.humburger > span {
  display: block;
  width: 100%;
  margin: 0 auto 6px;
  height: 3px;
  background: #525050;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.humburger > span:last-child {
  margin-bottom: 0;
}
.js_humburgerOpen .humburger > span {
  background: #525050;
}

.js_humburgerOpen .humburger > span.top {
  -webkit-transform: translateY(9px) rotate(-45deg);
          transform: translateY(9px) rotate(-45deg);
}

.js_humburgerOpen .humburger > span.middle {
  opacity: 0;
}

.js_humburgerOpen .humburger > span.bottom {
  -webkit-transform: translateY(-9px) rotate(45deg);
          transform: translateY(-9px) rotate(45deg);
}

.humburgerButton.humburgerButton__close {
  top: 2%;
  right: 2%;
}

.humburgerButton__close > span {
  display: block;
  width: 35px;
  margin: 0 auto;
  height: 4px;
  background: #fff;
}

.humburgerButton__close > span.humburgerLineTop {
  -webkit-transform: translateY(5px) rotate(-45deg);
          transform: translateY(5px) rotate(-45deg);
}

.humburgerButton__close > span.humburgerLineBottom {
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
}

/*ナビゲーション*/
.sp_navigation {
  display: none;
}
.sp_navigation.js_appear {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: block;
  z-index: 9999;
}

.modal {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 0;
  margin-top: 0px;
  padding-top: 70px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.modal nav .sp_header_nav .sp_nav_parent_ttl {
  font-family: "Lato", serif;
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-align: center;
  padding: 2rem 1rem;
}
.modal nav .sp_header_nav .sp_nav_parent_ttl a {
  display: block;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.modal nav .sp_header_nav .sp_nav_parent_ttl a:hover {
  color: #D94D23;
}
.modal nav .sp_header_nav .sp_nav_parent_ttl a:after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #D94D23;
  opacity: 0;
  visibility: hidden;
}
.modal nav .sp_header_nav .sp_nav_parent_ttl a:hover::after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}
.modal nav .sp_header_nav .sp_nav_parent_ttl a .bt_normal {
  letter-spacing: 1.5px;
  width: 100%;
  font-size: 1.3rem;
}
.modal nav .sp_header_nav .sp_nav_parent_ttl a .bt_normal:after {
  background-image: none;
}
.modal nav .sp_header_nav .sp_nav_parent_ttl a .bt_normal:hover {
  color: white;
}
.modal nav .sp_header_nav .sp_nav_parent_ttl a .bt_normal:hover::after {
  visibility: hidden;
}
.modal nav .sp_header_nav .sp_nav_parent_ttl--contact a:hover:after {
  height: 0px;
}
.modal nav .sp_header_nav .sp_nav_parent_aboutUs label {
  display: block;
}
.modal nav .sp_header_nav .sp_nav_parent_aboutUs label > span {
  position: relative;
}
.modal nav .sp_header_nav .sp_nav_parent_aboutUs label > span:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 17px;
  top: 40%;
  right: -3rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background-image: url(/img/zh-cn/common/icon_black_next.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
}
.modal nav .sp_header_nav .sp_nav_aboutus_wrapper {
  height: 0;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 576px) {
  .modal nav .sp_header_nav .sp_nav_aboutus_wrapper {
    width: 70%;
  }
}
.modal nav .sp_header_nav .aboutus_check {
  display: none;
}
.modal nav .sp_header_nav .aboutus_check:checked ~ .sp_nav_aboutus_wrapper {
  height: 100%;
  opacity: 1;
  visibility: visible;
  padding: 2rem 0 0.5rem;
}
.modal nav .sp_header_nav .sp_nav_child ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 90%;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 576px) {
  .modal nav .sp_header_nav .sp_nav_child ul {
    width: 85%;
  }
}
.modal nav .sp_header_nav .sp_nav_child ul .nav_child_ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 49%;
  font-family: "Roboto", arial, sans-serif;
  line-height: 1.2;
  padding-bottom: 1.5rem;
}
.modal nav .sp_header_nav .sp_nav_child ul .nav_child_ttl:before {
  display: block;
  content: "";
  width: 16px;
  height: 17px;
  background-image: url(/img/zh-cn/common/icon_black_next.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
}
.modal nav .sp_header_nav .sp_nav_child ul .nav_child_ttl a {
  position: relative;
  display: block;
  font-size: 0.9rem;
  font-weight: normal;
}
.modal nav .sp_header_nav .sp_nav_child ul .nav_child_ttl a:hover {
  color: #D94D23;
}
.modal nav .sp_header_nav .sp_nav_child ul .nav_child_ttl a:after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #D94D23;
  opacity: 0;
  visibility: hidden;
}
.modal nav .sp_header_nav .sp_nav_child ul .nav_child_ttl a:hover::after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 992px) {
  .modal nav .sp_header_nav .sp_nav_child ul .nav_child_ttl a {
    font-size: 1rem;
  }
}
.modal nav .sp_header_nav .sp_nav_aboutus_btn {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  border: 3px solid #D94D23;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
  padding: 0.5rem 2.2rem 0.5rem 1rem;
  margin: 0rem auto 1.5rem;
}
@media screen and (min-width: 768px) {
  .modal nav .sp_header_nav .sp_nav_aboutus_btn {
    font-size: 0.8rem;
  }
}
.modal nav .sp_header_nav .sp_nav_aboutus_btn:after {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  bottom: 50%;
  margin-top: auto;
  margin-bottom: auto;
  content: "";
  display: inline-block;
  background-image: url(/img/zh-cn/common/icon_black_next.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 26px;
}
@media screen and (min-width: 768px) {
  .modal nav .sp_header_nav .sp_nav_aboutus_btn:after {
    height: 24px;
  }
}
.modal nav .sp_header_nav .sp_nav_aboutus_btn:hover {
  -webkit-box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
          box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.modal nav .sp_header_nav .header_nav_jp {
  padding-top: 1rem;
}
.modal nav .sp_header_nav .header_nav_jp a {
  position: relative;
}
.modal nav .sp_header_nav .header_nav_jp a:before {
  position: absolute;
  content: "";
  background-image: url(/img/zh-cn/common/icon_black_global.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 16px auto;
  width: 16px;
  height: 24px;
  top: 0.2rem;
  left: -1.5rem;
  vertical-align: middle;
}
.modal nav .sp_header_nav .header_nav_jp a:hover::before {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background-image: url(/img/zh-cn/common/icon_orange_global.svg);
}

.js_fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

/*==================================

footer

==================================*/
footer {
  font-family: "Lato", serif;
  background-color: #464343;
  letter-spacing: 2px;
  font-size: 0.8rem;
}
footer ul {
  padding: 2rem 0;
  margin: 0 auto 2rem auto;
}
@media screen and (min-width: 576px) {
  footer ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
footer ul li {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  footer ul li {
    margin-bottom: 0;
  }
}
footer ul .aboutus_column:nth-child(1) {
  margin-bottom: 0;
}
@media screen and (min-width: 576px) {
  footer ul .aboutus_column:nth-child(1) {
    margin-bottom: 1rem;
  }
}
footer ul .aboutus_column:nth-child(2) {
  padding-top: 0rem;
  margin-top: 0rem;
}
@media screen and (min-width: 576px) {
  footer ul .aboutus_column:nth-child(2) {
    padding-top: 0rem;
    margin-top: 1.2rem;
  }
}
@media screen and (min-width: 992px) {
  footer ul .aboutus_column:nth-child(2) {
    padding-top: 0.3rem;
    margin-top: 1.2rem;
  }
}
footer ul .aboutus_item_service {
  padding-right: 1rem;
}
footer ul .footer_nav_jp {
  position: relative;
  padding-left: 1rem;
}
@media screen and (min-width: 576px) {
  footer ul .footer_nav_jp {
    padding-left: 1.7rem;
  }
}
@media screen and (min-width: 768px) {
  footer ul .footer_nav_jp {
    padding-left: 2rem;
  }
}
footer ul .footer_nav_jp:before {
  position: absolute;
  content: "";
  background-image: url(/img/zh-cn/common/icon_white_global.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 16px auto;
  width: 16px;
  height: 24px;
  top: -0.2rem;
  left: -0.5rem;
  vertical-align: middle;
}
@media screen and (min-width: 576px) {
  footer ul .footer_nav_jp:before {
    left: 0.3rem;
  }
}
@media screen and (min-width: 768px) {
  footer ul .footer_nav_jp:before {
    top: -0.1rem;
    left: 0.8rem;
  }
}
@media screen and (min-width: 1200px) {
  footer ul .footer_nav_jp:before {
    background-size: 16px auto;
    width: 16px;
    height: 24px;
    top: 0rem;
    margin-left: 0;
  }
}
footer ul span {
  position: relative;
  font-family: "Roboto", arial, sans-serif;
  display: block;
  padding: 0.7rem 0 0 1rem;
}
footer ul span:before {
  position: absolute;
  content: "ー";
  color: #fff;
  width: 16px;
  height: 24px;
  top: auto;
  left: 0rem;
  vertical-align: middle;
}
footer ul a {
  color: white;
}
footer ul a:hover {
  text-decoration: underline;
}
footer ul .bt_normal {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  margin: 0;
  padding: 0.2rem;
  width: 110px;
}
@media screen and (min-width: 576px) {
  footer ul .bt_normal {
    margin: 0 auto;
    width: 100%;
    padding: 0.2rem 0.5rem;
  }
}
footer ul .bt_normal:after {
  background-image: none;
}
footer .footer_logo {
  background-color: white;
  padding: 1.4rem;
  display: block;
  text-align: center;
}
footer .footer_logo img {
  max-width: 190px;
}
footer .footer_copy {
  text-align: center;
  color: white;
  padding: 0.5rem;
}

/*==================================

page_ttl(親ページ)

==================================*/
.page_ttl {
  width: 100%;
  height: 260px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page_ttl {
    height: 400px;
  }
}
.page_ttl h1 {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 0 3rem;
  color: #4E4D4D;
  font-size: 3rem;
  font-family: "Rancho", serif;
  letter-spacing: 6px;
  position: absolute;
  top: 50%;
  margin: auto;
  right: 0;
  left: 0;
  width: 80%;
  max-width: 700px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page_ttl h1 {
    font-size: 4rem;
    top: 45%;
  }
}
.page_ttl .illust_sun {
  position: absolute;
  max-width: 80px;
  top: 40%;
  right: 0;
}
@media screen and (min-width: 768px) {
  .page_ttl .illust_sun {
    max-width: 120px;
    top: 30%;
    right: 15%;
  }
}
@media screen and (min-width: 992px) {
  .page_ttl .illust_sun {
    right: 30%;
  }
}
.page_ttl .illust_plant {
  position: absolute;
  bottom: 0;
  left: 2%;
  max-width: 70px;
}
@media screen and (min-width: 576px) {
  .page_ttl .illust_plant {
    max-width: 140px;
  }
}
@media screen and (min-width: 768px) {
  .page_ttl .illust_plant {
    left: 5%;
  }
}
@media screen and (min-width: 992px) {
  .page_ttl .illust_plant {
    left: 20%;
  }
}
.page_ttl .illust_dog {
  position: absolute;
  bottom: 0;
  right: 2%;
  max-width: 70px;
}
@media screen and (min-width: 576px) {
  .page_ttl .illust_dog {
    max-width: 130px;
  }
}
@media screen and (min-width: 768px) {
  .page_ttl .illust_dog {
    right: 5%;
  }
}
@media screen and (min-width: 992px) {
  .page_ttl .illust_dog {
    right: 20%;
  }
}
.page_ttl .illust_bird {
  position: absolute;
  max-width: 180px;
  top: 30%;
  left: 0;
}
@media screen and (min-width: 768px) {
  .page_ttl .illust_bird {
    max-width: 230px;
    left: 10%;
  }
}
@media screen and (min-width: 992px) {
  .page_ttl .illust_bird {
    top: 35%;
    left: 20%;
  }
}

/*==================================

page_ttl_child(子ページ)

==================================*/
.page_ttl_child {
  width: 100%;
  height: 260px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page_ttl_child {
    height: 400px;
  }
}
.page_ttl_child h1 {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 1rem;
  color: #4E4D4D;
  font-size: 1.7rem;
  font-family: "Noto Sans SC", sans-serif;
  letter-spacing: 6px;
  position: absolute;
  top: 45%;
  margin: auto;
  right: 0;
  left: 0;
  width: 80%;
  max-width: 700px;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .page_ttl_child h1 {
    font-size: 2rem;
    top: 40%;
    padding: 2rem 0;
  }
}
@media screen and (min-width: 768px) {
  .page_ttl_child h1 {
    font-size: 3rem;
    top: 40%;
    padding: 2rem 0;
  }
}
.page_ttl_child .illust_sun {
  position: absolute;
  max-width: 80px;
  top: 24%;
  right: 8%;
}
@media screen and (min-width: 768px) {
  .page_ttl_child .illust_sun {
    max-width: 120px;
    top: 22%;
    right: 15%;
  }
}
@media screen and (min-width: 992px) {
  .page_ttl_child .illust_sun {
    top: 23%;
    right: 30%;
  }
}
.page_ttl_child .illust_plant {
  position: absolute;
  bottom: 0;
  left: 2%;
  max-width: 70px;
}
@media screen and (min-width: 576px) {
  .page_ttl_child .illust_plant {
    max-width: 140px;
  }
}
@media screen and (min-width: 768px) {
  .page_ttl_child .illust_plant {
    left: 5%;
  }
}
@media screen and (min-width: 992px) {
  .page_ttl_child .illust_plant {
    left: 20%;
  }
}
.page_ttl_child .illust_dog {
  position: absolute;
  bottom: 0;
  right: 2%;
  max-width: 70px;
}
@media screen and (min-width: 576px) {
  .page_ttl_child .illust_dog {
    max-width: 130px;
  }
}
@media screen and (min-width: 768px) {
  .page_ttl_child .illust_dog {
    right: 5%;
  }
}
@media screen and (min-width: 992px) {
  .page_ttl_child .illust_dog {
    right: 20%;
  }
}
.page_ttl_child .illust_bird {
  position: absolute;
  max-width: 180px;
  top: 30%;
  left: 0;
}
@media screen and (min-width: 768px) {
  .page_ttl_child .illust_bird {
    max-width: 230px;
    left: 5%;
  }
}
@media screen and (min-width: 992px) {
  .page_ttl_child .illust_bird {
    top: 33%;
    left: 20%;
  }
}

/*==================================

.breadcrumb

==================================*/
.breadcrumb {
  width: 96%;
  max-width: 1170px;
  margin: 1rem auto 4rem auto;
  left: 0;
  right: 0;
  background-color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-family: "Roboto", arial, sans-serif;
  font-size: 0.8rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px 20px 0 0;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    border-radius: 30px 30px 0 0;
  }
}
.breadcrumb ul {
  display: table;
  font-size: 0.7rem;
  padding: 1rem 2rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .breadcrumb ul {
    font-size: 0.8rem;
  }
}
.breadcrumb ul li {
  float: left;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .breadcrumb ul li {
    line-height: 2;
  }
}
.breadcrumb ul li:before {
  content: "　>　";
}
.breadcrumb ul li:first-child:before {
  content: "";
}
.breadcrumb ul li a {
  text-decoration: underline;
}
.breadcrumb ul li a:hover {
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

/*==================================

breadcrumbs

==================================*/
.breadcrumbs {
  width: 96%;
  max-width: 1170px;
  margin: 1rem auto 4rem auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-family: "Roboto", arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin: 1rem auto 2rem auto;
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    margin: 1rem auto 4rem auto;
  }
}
.breadcrumbs a {
  text-decoration: underline;
}
.breadcrumbs a:hover {
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

/*==================================

foot-contact

==================================*/
.foot-contact {
  background-image: url(/img/zh-cn/common/foot_contact_pc_bg.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  width: 100%;
  padding: 5rem 0;
  position: relative;
}
.foot-contact .inner {
  position: relative;
  width: 90%;
  max-width: 970px;
  margin: 0 auto;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  z-index: 1;
}
.foot-contact h2 {
  font-family: "Rancho", serif;
  font-size: 2.5rem;
  padding-left: 5rem;
  letter-spacing: 6px;
  position: absolute;
  top: -3rem;
  left: -5rem;
  background-image: url(/img/zh-cn/common/section_ttl_border.png);
  background-repeat: no-repeat;
  background-position: 1rem 3rem;
  background-size: 30%;
}
@media screen and (min-width: 768px) {
  .foot-contact h2 {
    background-position: 2rem 2rem;
    background-size: auto;
    font-size: 4rem;
    padding-left: 12rem;
  }
}
.foot-contact h3 {
  text-align: center;
  font-size: 1.6rem;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  font-weight: bold;
  letter-spacing: 4px;
}
.foot-contact p {
  text-align: center;
  padding-bottom: 2rem;
}
.foot-contact .illust_plant {
  position: absolute;
  bottom: 0;
  left: 5%;
  z-index: 2;
  max-width: 100px;
}
@media screen and (min-width: 768px) {
  .foot-contact .illust_plant {
    max-width: auto;
  }
}
.foot-contact .illust_dog {
  position: absolute;
  bottom: 0;
  right: 5%;
  max-width: 120px;
  z-index: 2;
}
.foot-contact .illust_bird {
  position: absolute;
  bottom: 2rem;
  right: 5%;
}
.foot-contact .illust_garland {
  position: absolute;
  top: -1rem;
  right: -1rem;
  max-width: 140px;
}
@media screen and (min-width: 768px) {
  .foot-contact .illust_garland {
    max-width: auto;
  }
}

.back_parent {
  width: 98%;
  max-width: 1170px;
  margin: 2rem auto;
}
.back_parent a {
  text-decoration: underline;
}
.back_parent a:hover {
  text-decoration: none;
}
.back_parent a:before {
  content: "<<　";
  display: inline-block;
}

/*==================================

page-top

==================================*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
#page-top img {
  width: 60px;
}
@media screen and (min-width: 768px) {
  #page-top img {
    width: auto;
  }
}

/*************************************/
/*==================================

common style

==================================*/
.bt_normal {
  background-color: #D94D23;
  color: white;
  display: block;
  border-radius: 50px;
  text-align: center;
  margin: 0 auto;
  padding: 1rem 0.6rem;
  position: relative;
  overflow: hidden;
  width: 90%;
  max-width: 200px;
  font-family: "Lato", serif;
  letter-spacing: 3px;
  font-weight: 400;
}
@media screen and (min-width: 992px) {
  .bt_normal {
    padding: 0.5rem 0.6rem;
    max-width: 180px;
  }
}
.bt_normal:hover {
  background-color: #8EB241;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.bt_normal:after {
  content: "";
  background-image: url(/img/zh-cn/common/icon_right_arrow.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 40%;
  right: 5%;
  width: 1em;
  height: 1em;
}

.lead {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  width: 90%;
  margin: 0 auto;
  max-width: 1170px;
}

.lead_left {
  text-align: left;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/*==================================

layout

==================================*/
.page_nav {
  margin-bottom: 4rem;
}
.page_nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 96%;
  max-width: 1170px;
  margin: 0 auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page_nav ul li {
  position: relative;
  background-color: #D94D23;
  border-radius: 10px;
  text-align: center;
  margin: 0 0.3rem;
  font-size: 1rem;
  width: 100%;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.8rem 0.2rem;
}
@media screen and (min-width: 768px) {
  .page_nav ul li {
    margin: 0 0.5rem;
    border-radius: 30px;
    padding: 0.8rem 0rem 0.8rem 1.2rem;
    width: 80%;
  }
}
@media screen and (min-width: 992px) {
  .page_nav ul li {
    margin: 0 0.5rem;
    border-radius: 50px;
    padding: 0.8rem 0.7rem;
    width: 80%;
  }
}
@media screen and (min-width: 1200px) {
  .page_nav ul li {
    margin: 0 1rem;
  }
}
.page_nav ul li:hover {
  background-color: #8EB241;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.page_nav ul li:before {
  display: block;
  text-align: center;
  font-family: "Rancho", serif;
  color: white;
  font-size: 1rem;
  line-height: 1rem;
  letter-spacing: 8px;
  font-weight: 400;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  left: 0.5rem;
  top: 5%;
}
@media screen and (min-width: 768px) {
  .page_nav ul li:before {
    font-size: 1.3rem;
    left: 8%;
    right: auto;
    top: 18%;
    line-height: 2.2rem;
  }
}
@media screen and (min-width: 992px) {
  .page_nav ul li:before {
    font-size: 1.5rem;
    left: 8%;
    right: auto;
    top: 18%;
    line-height: 2.2rem;
  }
}
.page_nav ul li:first-child:before {
  content: "01";
}
.page_nav ul li:nth-child(2):before {
  content: "02";
}
.page_nav ul li:nth-child(3):before {
  content: "03";
}
.page_nav ul li:nth-child(4):before {
  content: "04";
}
.page_nav ul li:nth-child(5):before {
  content: "05";
}
.page_nav ul li:nth-child(6):before {
  content: "06";
}
.page_nav ul li a {
  display: block;
  width: 100%;
  color: white;
  padding: 0.5rem 0.5rem 0.3rem 0.5rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .page_nav ul li a {
    padding: 0 2rem 0.3rem 2rem;
  }
}
.page_nav ul li a:after {
  content: "";
  display: block;
  background-image: url(/img/zh-cn/common/icon_down_arrow.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 3px;
}
@media screen and (min-width: 768px) {
  .page_nav ul li a:after {
    left: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .page_nav ul li a:after {
    left: 0rem;
  }
}
.page_nav ul .current {
  background-color: #8EB241;
}

.page_nav_noNum {
  margin-bottom: 4rem;
}
.page_nav_noNum ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 96%;
  max-width: 1170px;
  margin: 0 auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page_nav_noNum ul li {
  position: relative;
  background-color: #D94D23;
  border-radius: 10px;
  text-align: center;
  margin: 0 0.3rem;
  font-size: 1rem;
  width: 100%;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .page_nav_noNum ul li {
    margin: 0 0.5rem;
    border-radius: 30px;
    width: 80%;
  }
}
@media screen and (min-width: 992px) {
  .page_nav_noNum ul li {
    margin: 0 0.5rem;
    border-radius: 50px;
    width: 80%;
  }
}
@media screen and (min-width: 1200px) {
  .page_nav_noNum ul li {
    margin: 0 1rem;
  }
}
.page_nav_noNum ul li:hover {
  background-color: #8EB241;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.page_nav_noNum ul li a {
  display: block;
  width: 100%;
  height: 100%;
  color: white;
  padding: 0.3rem 0.2rem 0.8rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .page_nav_noNum ul li a {
    padding: 0.8rem 0.7rem 0.9rem;
  }
}
.page_nav_noNum ul li a:after {
  content: "";
  display: block;
  background-image: url(/img/zh-cn/common/icon_down_arrow.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 3px;
}
@media screen and (min-width: 992px) {
  .page_nav_noNum ul li a:after {
    left: 0rem;
  }
}
.page_nav_noNum ul .current {
  background-color: #8EB241;
}

.sub_page {
  background-image: url(/img/zh-cn/common/section_ttl_border.png);
  background-repeat: no-repeat;
  background-position: 1rem 3rem;
  background-size: 30%;
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .sub_page {
    background-position: 2rem 2rem;
    background-size: auto;
  }
}
.sub_page h2 {
  background-image: url(/img/zh-cn/common/section_ttl_kc.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 160px auto;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 5px;
  font-weight: bold;
  padding: 3.5rem 0 1rem 0;
  width: 90%;
  margin: 0 auto;
  max-width: 1170px;
}
.sub_page h3 {
  border-left: 4px solid #464343;
  color: #464343;
  font-size: 1.4rem;
  letter-spacing: 3px;
  font-weight: bold;
  line-height: 1.4;
  padding-left: 1rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .sub_page h3 {
    margin-bottom: 3rem;
  }
}
.sub_page .lead {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  width: 90%;
  margin: 0 auto;
  max-width: 1170px;
}

/*==================================

動きのeffect

==================================*/
/*点滅*/
.blinking {
  -webkit-animation: blink 0.5s ease-in-out infinite alternate;
  animation: blink 0.5s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*円がうねうね動く*/
@-webkit-keyframes uneune {
  0% {
    border-radius: 100% 90% 70% 100%/90% 100% 70% 90%;
  }
  25% {
    border-radius: 90% 100% 80% 90%/100% 90% 90% 100%;
  }
  50% {
    border-radius: 90% 100% 80% 90%/100% 90% 90% 100%;
  }
  75% {
    border-radius: 90% 90% 90% 70%/90% 80% 80% 80%;
  }
  100% {
    border-radius: 90% 90% 90% 100%/90% 100% 100% 90%;
  }
}
@keyframes uneune {
  0% {
    border-radius: 100% 90% 70% 100%/90% 100% 70% 90%;
  }
  25% {
    border-radius: 90% 100% 80% 90%/100% 90% 90% 100%;
  }
  50% {
    border-radius: 90% 100% 80% 90%/100% 90% 90% 100%;
  }
  75% {
    border-radius: 90% 90% 90% 70%/90% 80% 80% 80%;
  }
  100% {
    border-radius: 90% 90% 90% 100%/90% 100% 100% 90%;
  }
}
/*ふわふわ動く*/
.fuwafuwa {
  -webkit-animation: fuwafuwa 3s linear infinite;
          animation: fuwafuwa 3s linear infinite;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  margin: 1rem 0 !important;
}

@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  33.33333% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  66.66667% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fuwafuwa {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  33.33333% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  66.66667% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*クルクル回る*/
.spin {
  -webkit-animation: spin 20s linear infinite;
  animation: spin 20s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*==================================

bottom_section 共通レイアウト

==================================*/
.bottom_section h2 {
  text-align: center;
  font-family: "Rancho", serif;
  letter-spacing: 6px;
  font-size: 4rem;
  margin: 6rem 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .bottom_section h2 {
    font-size: 4rem;
    margin: 6rem 0 1rem;
  }
}
@media screen and (min-width: 992px) {
  .bottom_section h2 {
    font-size: 5rem;
  }
}
.bottom_section .ttl_container {
  margin-bottom: 0.8rem;
}
@media screen and (min-width: 768px) {
  .bottom_section .ttl_container {
    margin-bottom: 2rem;
  }
}
.bottom_section .ttl_container h2 {
  line-height: 1;
  margin-bottom: 0;
  margin: 6rem 0 0rem;
}
@media screen and (min-width: 768px) {
  .bottom_section .ttl_container h2 {
    font-size: 4rem;
    margin: 6rem 0 0rem 0;
  }
}
@media screen and (min-width: 992px) {
  .bottom_section .ttl_container h2 {
    font-size: 5rem;
  }
}
.bottom_section .ttl_container h3 {
  text-align: center;
  font-family: "Roboto", arial, sans-serif;
  font-size: 1.3rem;
}
.bottom_section figure {
  position: relative;
  height: 100%;
}
@media screen and (min-width: 992px) {
  .bottom_section figure {
    min-height: 332px;
  }
}
.bottom_section figure:before {
  content: "";
  display: block;
  padding-top: 63%;
}
.bottom_section figure .illust1 {
  z-index: 10;
  position: absolute;
}
.bottom_section figure .illust2 {
  z-index: 5;
  position: absolute;
}
.bottom_section figure .bottom_photo {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
}
@media screen and (min-width: 992px) {
  .bottom_section figure .bottom_photo {
    width: auto;
  }
}
.bottom_section div p {
  line-height: 2.4;
  margin: 0 1rem;
}
@media screen and (min-width: 992px) {
  .bottom_section div p {
    margin: 3rem;
  }
}
.bottom_section div .bt_normal {
  margin: 1.5rem auto;
}
@media screen and (min-width: 992px) {
  .bottom_section div .bt_normal {
    margin: 3rem 0 3rem 3rem;
  }
}

/*==================================

bottom_link_aboutus

==================================*/
.aboutus_bottomLink .bottomLink_wrapper {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.aboutus_bottomLink .aboutus_link_btn {
  margin-bottom: 6rem;
}

/*==================================

bottom_contact

==================================*/
#bottom_contact {
  background-image: url(/img/zh-cn/common/anime_bg2.gif);
  background-position: right 3rem;
  background-repeat: no-repeat;
  text-align: center;
}
@media screen and (min-width: 992px) {
  #bottom_contact {
    text-align: left;
  }
}
#bottom_contact .illust1 {
  bottom: -6rem;
  right: 0;
}
@media screen and (min-width: 992px) {
  #bottom_contact .illust1 {
    bottom: -8rem;
    right: -2rem;
  }
}

/*==================================

bottom_weChat

==================================*/
#bottom_weChat {
  background-image: url("/img/zh-cn/common/illust_tree.png");
  background-position: right 22rem;
  background-repeat: no-repeat;
  padding-bottom: 12rem;
}
@media screen and (min-width: 576px) {
  #bottom_weChat {
    background-position: 8rem 20rem;
  }
}
@media screen and (min-width: 768px) {
  #bottom_weChat {
    background-position: 18rem 20rem;
  }
}
@media screen and (min-width: 992px) {
  #bottom_weChat {
    padding-bottom: 7rem;
    background-position: right 13rem;
  }
}
@media screen and (min-width: 1200px) {
  #bottom_weChat {
    background-position: right 11rem;
  }
}
#bottom_weChat .row {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#bottom_weChat .bottom_qr {
  text-align: center;
}

.row {
  margin-right: -1%;
  margin-left: -1%;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
  padding-right: 1%;
  padding-left: 1%;
}

.g_contents_inner .row {
  margin-right: -3%;
  margin-left: -3%;
}
.g_contents_inner .row .col, .g_contents_inner .row .col-1, .g_contents_inner .row .col-10, .g_contents_inner .row .col-11, .g_contents_inner .row .col-12, .g_contents_inner .row .col-2, .g_contents_inner .row .col-3, .g_contents_inner .row .col-4, .g_contents_inner .row .col-5, .g_contents_inner .row .col-6, .g_contents_inner .row .col-7, .g_contents_inner .row .col-8, .g_contents_inner .row .col-9, .g_contents_inner .row .col-auto, .g_contents_inner .row .col-lg, .g_contents_inner .row .col-lg-1, .g_contents_inner .row .col-lg-10, .g_contents_inner .row .col-lg-11, .g_contents_inner .row .col-lg-12, .g_contents_inner .row .col-lg-2, .g_contents_inner .row .col-lg-3, .g_contents_inner .row .col-lg-4, .g_contents_inner .row .col-lg-5, .g_contents_inner .row .col-lg-6, .g_contents_inner .row .col-lg-7, .g_contents_inner .row .col-lg-8, .g_contents_inner .row .col-lg-9, .g_contents_inner .row .col-lg-auto, .g_contents_inner .row .col-md, .g_contents_inner .row .col-md-1, .g_contents_inner .row .col-md-10, .g_contents_inner .row .col-md-11, .g_contents_inner .row .col-md-12, .g_contents_inner .row .col-md-2, .g_contents_inner .row .col-md-3, .g_contents_inner .row .col-md-4, .g_contents_inner .row .col-md-5, .g_contents_inner .row .col-md-6, .g_contents_inner .row .col-md-7, .g_contents_inner .row .col-md-8, .g_contents_inner .row .col-md-9, .g_contents_inner .row .col-md-auto, .g_contents_inner .row .col-sm, .g_contents_inner .row .col-sm-1, .g_contents_inner .row .col-sm-10, .g_contents_inner .row .col-sm-11, .g_contents_inner .row .col-sm-12, .g_contents_inner .row .col-sm-2, .g_contents_inner .row .col-sm-3, .g_contents_inner .row .col-sm-4, .g_contents_inner .row .col-sm-5, .g_contents_inner .row .col-sm-6, .g_contents_inner .row .col-sm-7, .g_contents_inner .row .col-sm-8, .g_contents_inner .row .col-sm-9, .g_contents_inner .row .col-sm-auto, .g_contents_inner .row .col-xl, .g_contents_inner .row .col-xl-1, .g_contents_inner .row .col-xl-10, .g_contents_inner .row .col-xl-11, .g_contents_inner .row .col-xl-12, .g_contents_inner .row .col-xl-2, .g_contents_inner .row .col-xl-3, .g_contents_inner .row .col-xl-4, .g_contents_inner .row .col-xl-5, .g_contents_inner .row .col-xl-6, .g_contents_inner .row .col-xl-7, .g_contents_inner .row .col-xl-8, .g_contents_inner .row .col-xl-9, .g_contents_inner .row .col-xl-auto {
  padding-right: 3%;
  padding-left: 3%;
}

/*************************************/
/*==================================

ベースとなるボタンの設定

==================================*/
.g_btn {
  display: table;
  width: auto;
  background-color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  width: auto;
  padding: 1rem 3rem 1rem 2rem;
  text-align: center;
  position: relative;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
  margin: 4rem auto 0 auto;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .g_btn {
    width: auto;
    font-size: 1.2rem;
    padding: 1.2rem 6rem 1.2rem 5rem;
    margin: 3rem auto 0 auto;
  }
}
.g_btn:after {
  position: absolute;
  top: 50%;
  bottom: 50%;
  margin-top: auto;
  margin-bottom: auto;
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 21px;
  right: 1rem;
}
@media screen and (min-width: 768px) {
  .g_btn:after {
    height: 30px;
    right: 2rem;
  }
}
.g_btn:hover {
  -webkit-box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
          box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.g_small_btn {
  display: table;
  background-color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  position: relative;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
  padding: 0.5rem 2.2rem 0.5rem 1rem;
  margin: 2rem auto 0 auto;
}
@media screen and (min-width: 768px) {
  .g_small_btn {
    font-size: 0.8rem;
  }
}
.g_small_btn:after {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  bottom: 50%;
  margin-top: auto;
  margin-bottom: auto;
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 26px;
}
@media screen and (min-width: 768px) {
  .g_small_btn:after {
    height: 24px;
  }
}
.g_small_btn:hover {
  -webkit-box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
          box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.g_cv_btn {
  display: table;
  width: auto;
  background-color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  width: auto;
  padding: 1rem 3rem 1rem 2rem;
  text-align: center;
  position: relative;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
  margin: 2rem auto;
  width: 90%;
  border: 5px solid #D94D23;
}
@media screen and (min-width: 768px) {
  .g_cv_btn {
    width: auto;
    font-size: 1.2rem;
    padding: 1.2rem 6rem 1.2rem 5rem;
    margin: 3rem auto 0 auto;
  }
}
.g_cv_btn:after {
  position: absolute;
  right: 2rem;
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 26px;
}
@media screen and (min-width: 768px) {
  .g_cv_btn:after {
    height: 30px;
  }
}
.g_cv_btn:hover {
  -webkit-box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
          box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background-color: #D94D23;
  color: white;
}

.g_black_btn {
  display: table;
  width: auto;
  font-size: 14px;
  color: white;
  background-color: black;
  border-radius: 50px;
  padding: 1rem 2rem;
  margin: 4rem auto 0 auto;
  text-align: center;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  text-align: center;
}
.g_black_btn:hover {
  -webkit-box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
          box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

/*==================================

アイコンの設定

==================================*/
.orange {
  color: #ea5504;
}

.orange_contents .g_btn {
  border: 5px solid #ea5504;
}
.orange_contents .g_btn:after {
  background-image: url(/img/common/icon_orange_right.svg);
}
.orange_contents .g_btn:hover {
  color: white;
  background-color: #ea5504;
}
.orange_contents .g_btn:hover:after {
  background-image: url(/img/common/icon_white_right.svg);
}
.orange_contents .g_small_btn {
  border: 3px solid #ea5504;
}
.orange_contents .g_small_btn:after {
  background-image: url(/img/common/icon_orange_right.svg);
}
.orange_contents .g_small_btn:hover {
  color: white;
  background-color: #ea5504;
}
.orange_contents .g_small_btn:hover:after {
  background-image: url(/img/common/icon_white_right.svg);
}
.orange_contents .g_otherwindow_btn:after {
  background-image: url(/img/common/icon_orange_otherwindow.svg);
}
.orange_contents .g_otherwindow_btn:hover:after {
  background-image: url(/img/common/icon_white_otherwindow.svg);
}
.orange_contents .g_plus_btn:after {
  background-image: url(/img/common/icon_orange_plus.svg);
}
.orange_contents .g_plus_btn:hover:after {
  background-image: url(/img/common/icon_white_plus.svg);
}
.orange_contents .g_minus_btn:after {
  background-image: url(/img/common/icon_orange_minus.svg);
}
.orange_contents .g_minus_btn:hover:after {
  background-image: url(/img/common/icon_white_minus.svg);
}
.orange_contents .g_download_btn:after {
  background-image: url(/img/common/icon_orange_download.svg);
}
.orange_contents .g_download_btn:hover:after {
  background-image: url(/img/common/icon_white_download.svg);
}
.orange_contents .g_modal_btn:after {
  background-image: url(/img/common/icon_orange_modal.svg);
}
.orange_contents .g_modal_btn:hover:after {
  background-image: url(/img/common/icon_white_modal.svg);
}
.orange_contents .g_down_btn:after {
  background-image: url(/img/common/icon_orange_down.svg);
}
.orange_contents .g_down_btn:hover:after {
  background-image: url(/img/common/icon_white_down.svg);
}
.orange_contents .g_up_btn:after {
  background-image: url(/img/common/icon_orange_up.svg);
}
.orange_contents .g_up_btn:hover:after {
  background-image: url(/img/common/icon_white_up.svg);
}
.orange_contents .g_next_btn:after {
  background-image: url(/img/common/icon_orange_next.svg);
}
.orange_contents .g_next_btn:hover:after {
  background-image: url(/img/common/icon_white_next.svg);
}
.orange_contents .g_prev_btn {
  padding: 0.5rem 1rem 0.5rem 2rem;
}
.orange_contents .g_prev_btn:before {
  position: absolute;
  background-image: url(/img/common/icon_orange_prev.svg);
  left: 5%;
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 26px;
}
@media screen and (min-width: 768px) {
  .orange_contents .g_prev_btn:before {
    height: 26px;
  }
}
.orange_contents .g_prev_btn:after {
  background-image: none;
}
.orange_contents .g_prev_btn:hover:before {
  background-image: url(/img/common/icon_white_prev.svg);
}

.green {
  color: #007e5c;
}

.green_contents .g_btn {
  border: 5px solid #007e5c;
}
.green_contents .g_btn:after {
  background-image: url(/img/common/icon_green_right.svg);
}
.green_contents .g_btn:hover {
  color: white;
  background-color: #007e5c;
}
.green_contents .g_btn:hover:after {
  background-image: url(/img/common/icon_white_right.svg);
}
.green_contents .g_small_btn {
  border: 3px solid #007e5c;
}
.green_contents .g_small_btn:after {
  background-image: url(/img/common/icon_green_right.svg);
}
.green_contents .g_small_btn:hover {
  color: white;
  background-color: #007e5c;
}
.green_contents .g_small_btn:hover:after {
  background-image: url(/img/common/icon_white_right.svg);
}
.green_contents .g_otherwindow_btn:after {
  background-image: url(/img/common/icon_green_otherwindow.svg);
}
.green_contents .g_otherwindow_btn:hover:after {
  background-image: url(/img/common/icon_white_otherwindow.svg);
}
.green_contents .g_plus_btn:after {
  background-image: url(/img/common/icon_green_plus.svg);
}
.green_contents .g_plus_btn:hover:after {
  background-image: url(/img/common/icon_white_plus.svg);
}
.green_contents .g_minus_btn:after {
  background-image: url(/img/common/icon_green_minus.svg);
}
.green_contents .g_minus_btn:hover:after {
  background-image: url(/img/common/icon_white_minus.svg);
}
.green_contents .g_download_btn:after {
  background-image: url(/img/common/icon_green_download.svg);
}
.green_contents .g_download_btn:hover:after {
  background-image: url(/img/common/icon_white_download.svg);
}
.green_contents .g_modal_btn:after {
  background-image: url(/img/common/icon_green_modal.svg);
}
.green_contents .g_modal_btn:hover:after {
  background-image: url(/img/common/icon_white_modal.svg);
}
.green_contents .g_down_btn:after {
  background-image: url(/img/common/icon_green_down.svg);
}
.green_contents .g_down_btn:hover:after {
  background-image: url(/img/common/icon_white_down.svg);
}
.green_contents .g_up_btn:after {
  background-image: url(/img/common/icon_green_up.svg);
}
.green_contents .g_up_btn:hover:after {
  background-image: url(/img/common/icon_white_up.svg);
}
.green_contents .g_next_btn:after {
  background-image: url(/img/common/icon_green_next.svg);
}
.green_contents .g_next_btn:hover:after {
  background-image: url(/img/common/icon_white_next.svg);
}
.green_contents .g_prev_btn {
  padding: 0.5rem 1rem 0.5rem 2rem;
}
.green_contents .g_prev_btn:before {
  position: absolute;
  background-image: url(/img/common/icon_green_prev.svg);
  left: 5%;
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 26px;
}
@media screen and (min-width: 768px) {
  .green_contents .g_prev_btn:before {
    height: 26px;
  }
}
.green_contents .g_prev_btn:after {
  background-image: none;
}
.green_contents .g_prev_btn:hover:before {
  background-image: url(/img/common/icon_white_prev.svg);
}

.blue {
  color: #0b318f;
}

.blue_contents .g_btn {
  border: 5px solid #0b318f;
}
.blue_contents .g_btn:after {
  background-image: url(/img/common/icon_blue_right.svg);
}
.blue_contents .g_btn:hover {
  color: white;
  background-color: #0b318f;
}
.blue_contents .g_btn:hover:after {
  background-image: url(/img/common/icon_white_right.svg);
}
.blue_contents .g_small_btn {
  border: 3px solid #0b318f;
}
.blue_contents .g_small_btn:after {
  background-image: url(/img/common/icon_blue_right.svg);
}
.blue_contents .g_small_btn:hover {
  color: white;
  background-color: #0b318f;
}
.blue_contents .g_small_btn:hover:after {
  background-image: url(/img/common/icon_white_right.svg);
}
.blue_contents .g_otherwindow_btn:after {
  background-image: url(/img/common/icon_blue_otherwindow.svg);
}
.blue_contents .g_otherwindow_btn:hover:after {
  background-image: url(/img/common/icon_white_otherwindow.svg);
}
.blue_contents .g_plus_btn:after {
  background-image: url(/img/common/icon_blue_plus.svg);
}
.blue_contents .g_plus_btn:hover:after {
  background-image: url(/img/common/icon_white_plus.svg);
}
.blue_contents .g_minus_btn:after {
  background-image: url(/img/common/icon_blue_minus.svg);
}
.blue_contents .g_minus_btn:hover:after {
  background-image: url(/img/common/icon_white_minus.svg);
}
.blue_contents .g_download_btn:after {
  background-image: url(/img/common/icon_blue_download.svg);
}
.blue_contents .g_download_btn:hover:after {
  background-image: url(/img/common/icon_white_download.svg);
}
.blue_contents .g_modal_btn:after {
  background-image: url(/img/common/icon_blue_modal.svg);
}
.blue_contents .g_modal_btn:hover:after {
  background-image: url(/img/common/icon_white_modal.svg);
}
.blue_contents .g_down_btn:after {
  background-image: url(/img/common/icon_blue_down.svg);
}
.blue_contents .g_down_btn:hover:after {
  background-image: url(/img/common/icon_white_down.svg);
}
.blue_contents .g_up_btn:after {
  background-image: url(/img/common/icon_blue_up.svg);
}
.blue_contents .g_up_btn:hover:after {
  background-image: url(/img/common/icon_white_up.svg);
}
.blue_contents .g_next_btn:after {
  background-image: url(/img/common/icon_blue_next.svg);
}
.blue_contents .g_next_btn:hover:after {
  background-image: url(/img/common/icon_white_next.svg);
}
.blue_contents .g_prev_btn {
  padding: 0.5rem 1rem 0.5rem 2rem;
}
.blue_contents .g_prev_btn:before {
  position: absolute;
  background-image: url(/img/common/icon_blue_prev.svg);
  left: 5%;
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 26px;
}
@media screen and (min-width: 768px) {
  .blue_contents .g_prev_btn:before {
    height: 26px;
  }
}
.blue_contents .g_prev_btn:after {
  background-image: none;
}
.blue_contents .g_prev_btn:hover:before {
  background-image: url(/img/common/icon_white_prev.svg);
}

.yellow {
  color: #fdd000;
}

.yellow_contents .g_btn {
  border: 5px solid #fdd000;
}
.yellow_contents .g_btn:after {
  background-image: url(/img/common/icon_yellow_right.svg);
}
.yellow_contents .g_btn:hover {
  color: white;
  background-color: #fdd000;
}
.yellow_contents .g_btn:hover:after {
  background-image: url(/img/common/icon_white_right.svg);
}
.yellow_contents .g_small_btn {
  border: 3px solid #fdd000;
}
.yellow_contents .g_small_btn:after {
  background-image: url(/img/common/icon_yellow_right.svg);
}
.yellow_contents .g_small_btn:hover {
  color: white;
  background-color: #fdd000;
}
.yellow_contents .g_small_btn:hover:after {
  background-image: url(/img/common/icon_white_right.svg);
}
.yellow_contents .g_otherwindow_btn:after {
  background-image: url(/img/common/icon_yellow_otherwindow.svg);
}
.yellow_contents .g_otherwindow_btn:hover:after {
  background-image: url(/img/common/icon_white_otherwindow.svg);
}
.yellow_contents .g_plus_btn:after {
  background-image: url(/img/common/icon_yellow_plus.svg);
}
.yellow_contents .g_plus_btn:hover:after {
  background-image: url(/img/common/icon_white_plus.svg);
}
.yellow_contents .g_minus_btn:after {
  background-image: url(/img/common/icon_yellow_minus.svg);
}
.yellow_contents .g_minus_btn:hover:after {
  background-image: url(/img/common/icon_white_minus.svg);
}
.yellow_contents .g_download_btn:after {
  background-image: url(/img/common/icon_yellow_download.svg);
}
.yellow_contents .g_download_btn:hover:after {
  background-image: url(/img/common/icon_white_download.svg);
}
.yellow_contents .g_modal_btn:after {
  background-image: url(/img/common/icon_yellow_modal.svg);
}
.yellow_contents .g_modal_btn:hover:after {
  background-image: url(/img/common/icon_white_modal.svg);
}
.yellow_contents .g_down_btn:after {
  background-image: url(/img/common/icon_yellow_down.svg);
}
.yellow_contents .g_down_btn:hover:after {
  background-image: url(/img/common/icon_white_down.svg);
}
.yellow_contents .g_up_btn:after {
  background-image: url(/img/common/icon_yellow_up.svg);
}
.yellow_contents .g_up_btn:hover:after {
  background-image: url(/img/common/icon_white_up.svg);
}
.yellow_contents .g_next_btn:after {
  background-image: url(/img/common/icon_yellow_next.svg);
}
.yellow_contents .g_next_btn:hover:after {
  background-image: url(/img/common/icon_white_next.svg);
}
.yellow_contents .g_prev_btn {
  padding: 0.5rem 1rem 0.5rem 2rem;
}
.yellow_contents .g_prev_btn:before {
  position: absolute;
  background-image: url(/img/common/icon_yellow_prev.svg);
  left: 5%;
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 26px;
}
@media screen and (min-width: 768px) {
  .yellow_contents .g_prev_btn:before {
    height: 26px;
  }
}
.yellow_contents .g_prev_btn:after {
  background-image: none;
}
.yellow_contents .g_prev_btn:hover:before {
  background-image: url(/img/common/icon_white_prev.svg);
}

.red {
  color: #CC1F3A;
}

.red_contents .g_btn {
  border: 5px solid #CC1F3A;
}
.red_contents .g_btn:after {
  background-image: url(/img/common/icon_red_right.svg);
}
.red_contents .g_btn:hover {
  color: white;
  background-color: #CC1F3A;
}
.red_contents .g_btn:hover:after {
  background-image: url(/img/common/icon_white_right.svg);
}
.red_contents .g_small_btn {
  border: 3px solid #CC1F3A;
}
.red_contents .g_small_btn:after {
  background-image: url(/img/common/icon_red_right.svg);
}
.red_contents .g_small_btn:hover {
  color: white;
  background-color: #CC1F3A;
}
.red_contents .g_small_btn:hover:after {
  background-image: url(/img/common/icon_white_right.svg);
}
.red_contents .g_otherwindow_btn:after {
  background-image: url(/img/common/icon_red_otherwindow.svg);
}
.red_contents .g_otherwindow_btn:hover:after {
  background-image: url(/img/common/icon_white_otherwindow.svg);
}
.red_contents .g_plus_btn:after {
  background-image: url(/img/common/icon_red_plus.svg);
}
.red_contents .g_plus_btn:hover:after {
  background-image: url(/img/common/icon_white_plus.svg);
}
.red_contents .g_minus_btn:after {
  background-image: url(/img/common/icon_red_minus.svg);
}
.red_contents .g_minus_btn:hover:after {
  background-image: url(/img/common/icon_white_minus.svg);
}
.red_contents .g_download_btn:after {
  background-image: url(/img/common/icon_red_download.svg);
}
.red_contents .g_download_btn:hover:after {
  background-image: url(/img/common/icon_white_download.svg);
}
.red_contents .g_modal_btn:after {
  background-image: url(/img/common/icon_red_modal.svg);
}
.red_contents .g_modal_btn:hover:after {
  background-image: url(/img/common/icon_white_modal.svg);
}
.red_contents .g_down_btn:after {
  background-image: url(/img/common/icon_red_down.svg);
}
.red_contents .g_down_btn:hover:after {
  background-image: url(/img/common/icon_white_down.svg);
}
.red_contents .g_up_btn:after {
  background-image: url(/img/common/icon_red_up.svg);
}
.red_contents .g_up_btn:hover:after {
  background-image: url(/img/common/icon_white_up.svg);
}
.red_contents .g_next_btn:after {
  background-image: url(/img/common/icon_red_next.svg);
}
.red_contents .g_next_btn:hover:after {
  background-image: url(/img/common/icon_white_next.svg);
}
.red_contents .g_prev_btn {
  padding: 0.5rem 1rem 0.5rem 2rem;
}
.red_contents .g_prev_btn:before {
  position: absolute;
  background-image: url(/img/common/icon_red_prev.svg);
  left: 5%;
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 26px;
}
@media screen and (min-width: 768px) {
  .red_contents .g_prev_btn:before {
    height: 26px;
  }
}
.red_contents .g_prev_btn:after {
  background-image: none;
}
.red_contents .g_prev_btn:hover:before {
  background-image: url(/img/common/icon_white_prev.svg);
}

/*==================================

ページ内リンク

==================================*/
.g_page_anchor_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 2rem auto;
}
.g_page_anchor_list li {
  margin: 0 0.2rem 1rem 0.2rem;
}
@media screen and (min-width: 768px) {
  .g_page_anchor_list li {
    margin: 0 0.5rem 1rem 0.5rem;
  }
}
.g_page_anchor_list li a {
  display: inline-block;
  background-color: white;
  border-radius: 50px;
  font-weight: 700;
  padding: 0.5rem 2.5rem 0.5rem 1.5rem;
  text-align: center;
  position: relative;
  margin: 0 auto;
  cursor: pointer;
  border: 3px solid #4E4D4D;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  font-size: 0.8rem;
}
@media screen and (min-width: 768px) {
  .g_page_anchor_list li a {
    padding: 0.8rem 3rem 0.8rem 2rem;
  }
}
.g_page_anchor_list li a:hover {
  -webkit-box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
          box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.g_page_anchor_list li a:after {
  background-image: url(/img/common/icon_black_down.svg);
  position: absolute;
  right: 5%;
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  width: 22px;
  height: 21px;
}
@media screen and (min-width: 768px) {
  .g_page_anchor_list li a:after {
    height: 24px;
  }
}

/*==================================

g_pager

==================================*/
.orange {
  color: #ea5504;
}

.orange_contents .g_pager ul {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.orange_contents .g_pager ul li {
  display: inline;
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  background: white;
  width: 40px;
  height: 40px;
  text-align: center;
  position: relative;
  border-radius: 50px;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
}
@media screen and (min-width: 768px) {
  .orange_contents .g_pager ul li {
    width: 60px;
    height: 60px;
  }
}
.orange_contents .g_pager ul li a {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  text-decoration: none;
}
.orange_contents .g_pager ul li a span {
  display: table-cell;
  vertical-align: middle;
}
.orange_contents .g_pager ul li a:hover {
  color: white;
  background: #ea5504;
  border-radius: 50px;
}
.orange_contents .g_pager ul li span {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  text-decoration: none;
}
.orange_contents .g_pager ul li .active {
  color: #ea5504;
  border: 4px solid #ea5504;
  border-radius: 50px;
}
.orange_contents .g_pager ul .pre, .orange_contents .g_pager ul .next {
  display: inline-block;
  height: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .orange_contents .g_pager ul .pre, .orange_contents .g_pager ul .next {
    height: 60px;
  }
}
.orange_contents .g_pager ul .pre a, .orange_contents .g_pager ul .next a {
  width: 100%;
  text-align: center;
}

.green {
  color: #007e5c;
}

.green_contents .g_pager ul {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.green_contents .g_pager ul li {
  display: inline;
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  background: white;
  width: 40px;
  height: 40px;
  text-align: center;
  position: relative;
  border-radius: 50px;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
}
@media screen and (min-width: 768px) {
  .green_contents .g_pager ul li {
    width: 60px;
    height: 60px;
  }
}
.green_contents .g_pager ul li a {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  text-decoration: none;
}
.green_contents .g_pager ul li a span {
  display: table-cell;
  vertical-align: middle;
}
.green_contents .g_pager ul li a:hover {
  color: white;
  background: #007e5c;
  border-radius: 50px;
}
.green_contents .g_pager ul li span {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  text-decoration: none;
}
.green_contents .g_pager ul li .active {
  color: #007e5c;
  border: 4px solid #007e5c;
  border-radius: 50px;
}
.green_contents .g_pager ul .pre, .green_contents .g_pager ul .next {
  display: inline-block;
  height: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .green_contents .g_pager ul .pre, .green_contents .g_pager ul .next {
    height: 60px;
  }
}
.green_contents .g_pager ul .pre a, .green_contents .g_pager ul .next a {
  width: 100%;
  text-align: center;
}

.blue {
  color: #0b318f;
}

.blue_contents .g_pager ul {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.blue_contents .g_pager ul li {
  display: inline;
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  background: white;
  width: 40px;
  height: 40px;
  text-align: center;
  position: relative;
  border-radius: 50px;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
}
@media screen and (min-width: 768px) {
  .blue_contents .g_pager ul li {
    width: 60px;
    height: 60px;
  }
}
.blue_contents .g_pager ul li a {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  text-decoration: none;
}
.blue_contents .g_pager ul li a span {
  display: table-cell;
  vertical-align: middle;
}
.blue_contents .g_pager ul li a:hover {
  color: white;
  background: #0b318f;
  border-radius: 50px;
}
.blue_contents .g_pager ul li span {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  text-decoration: none;
}
.blue_contents .g_pager ul li .active {
  color: #0b318f;
  border: 4px solid #0b318f;
  border-radius: 50px;
}
.blue_contents .g_pager ul .pre, .blue_contents .g_pager ul .next {
  display: inline-block;
  height: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .blue_contents .g_pager ul .pre, .blue_contents .g_pager ul .next {
    height: 60px;
  }
}
.blue_contents .g_pager ul .pre a, .blue_contents .g_pager ul .next a {
  width: 100%;
  text-align: center;
}

.yellow {
  color: #fdd000;
}

.yellow_contents .g_pager ul {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.yellow_contents .g_pager ul li {
  display: inline;
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  background: white;
  width: 40px;
  height: 40px;
  text-align: center;
  position: relative;
  border-radius: 50px;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
}
@media screen and (min-width: 768px) {
  .yellow_contents .g_pager ul li {
    width: 60px;
    height: 60px;
  }
}
.yellow_contents .g_pager ul li a {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  text-decoration: none;
}
.yellow_contents .g_pager ul li a span {
  display: table-cell;
  vertical-align: middle;
}
.yellow_contents .g_pager ul li a:hover {
  color: white;
  background: #fdd000;
  border-radius: 50px;
}
.yellow_contents .g_pager ul li span {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  text-decoration: none;
}
.yellow_contents .g_pager ul li .active {
  color: #fdd000;
  border: 4px solid #fdd000;
  border-radius: 50px;
}
.yellow_contents .g_pager ul .pre, .yellow_contents .g_pager ul .next {
  display: inline-block;
  height: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .yellow_contents .g_pager ul .pre, .yellow_contents .g_pager ul .next {
    height: 60px;
  }
}
.yellow_contents .g_pager ul .pre a, .yellow_contents .g_pager ul .next a {
  width: 100%;
  text-align: center;
}

.red {
  color: #CC1F3A;
}

.red_contents .g_pager ul {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.red_contents .g_pager ul li {
  display: inline;
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  background: white;
  width: 40px;
  height: 40px;
  text-align: center;
  position: relative;
  border-radius: 50px;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
}
@media screen and (min-width: 768px) {
  .red_contents .g_pager ul li {
    width: 60px;
    height: 60px;
  }
}
.red_contents .g_pager ul li a {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  text-decoration: none;
}
.red_contents .g_pager ul li a span {
  display: table-cell;
  vertical-align: middle;
}
.red_contents .g_pager ul li a:hover {
  color: white;
  background: #CC1F3A;
  border-radius: 50px;
}
.red_contents .g_pager ul li span {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  text-decoration: none;
}
.red_contents .g_pager ul li .active {
  color: #CC1F3A;
  border: 4px solid #CC1F3A;
  border-radius: 50px;
}
.red_contents .g_pager ul .pre, .red_contents .g_pager ul .next {
  display: inline-block;
  height: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .red_contents .g_pager ul .pre, .red_contents .g_pager ul .next {
    height: 60px;
  }
}
.red_contents .g_pager ul .pre a, .red_contents .g_pager ul .next a {
  width: 100%;
  text-align: center;
}

/*************************************/
/*==================================
.scrollanime・・・フェードインさせたい要素に付与する
.fadeInDown・・・jQueryによってフェードインさせる要素に付与される
.updown・・・上から下への動きをさせる要素に付与する
.downup・・・下から上への動きをさせる要素に付与する
.slide-right・・・右から左への動きをさせる要素に付与する
.slide-left・・・左から右への動きをさせる要素に付与する
==================================*/
/*1.フェードインアニメーションの指定*/
.scrollanime {
  opacity: 0;
} /*一瞬表示されるのを防ぐ*/
.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
/*2.上下の動きを指定*/
.updown {
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
}

.downup {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

/*3.左右の動きを指定*/
.sect02 {
  overflow: hidden;
} /*横スクロールバーを隠す*/
.slide-right {
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
}

.slide-left {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
}

/*==================================
parallax
==================================*/
.parallax1 {
  background-image: url("/img/common/para_item_01.svg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: left top;
}

.parallax2 {
  background-image: url("/img/common/para_item_02.svg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: right 500px;
}

/*==================================

簡易class

==================================*/
.al_left {
  text-align: left;
}

.al_center {
  text-align: center;
}

.al_right {
  text-align: right;
}

.bold {
  font-weight: 700;
}

.strong {
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(40%, #ffff66));
  background: -webkit-linear-gradient(transparent 40%, #ffff66 40%);
  background: linear-gradient(transparent 40%, #ffff66 40%);
}

.f_s {
  font-size: 0.9rem;
}

.f_ss {
  font-size: 0.8rem;
}

.f_l {
  font-size: 1.2rem;
}

.f_ll {
  font-size: 1.4rem;
}

.g_bg_orange {
  background-color: #ea5504;
  color: white;
}

.g_f_color_orange {
  color: #ea5504;
}

.g_bg_green {
  background-color: #007e5c;
  color: white;
}

.g_f_color_green {
  color: #007e5c;
}

.g_bg_blue {
  background-color: #0b318f;
  color: white;
}

.g_f_color_blue {
  color: #0b318f;
}

.g_bg_yellow {
  background-color: #fdd000;
  color: white;
}

.g_f_color_yellow {
  color: #fdd000;
}

.g_bg_red {
  background-color: #CC1F3A;
  color: white;
}

.g_f_color_red {
  color: #CC1F3A;
}

.f_super {
  vertical-align: super;
  font-size: 0.7rem;
}

.f_sub {
  vertical-align: sub;
  font-size: 0.7rem;
}

/*==================================

タイトル系

==================================*/
/*==g_a_h2==*/
.g_a_h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .g_a_h2 {
    margin-bottom: 3rem;
    font-size: 1.8rem;
    margin-top: 7rem;
    letter-spacing: 2px;
  }
}

/*==g_bc_h2_normal==*/
.g_bc_h2_normal {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .g_bc_h2_normal {
    margin-bottom: 3rem;
    font-size: 2rem;
    margin-top: 7rem;
    letter-spacing: 2px;
  }
}

/*==g_bc_h2_center==*/
.g_bc_h2_center {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .g_bc_h2_center {
    margin-bottom: 3rem;
    font-size: 2rem;
    margin-top: 7rem;
    letter-spacing: 2px;
  }
}

/*==g_bc_h2_lines==*/
.orange_contents .g_bc_h2_lines {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 7rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  text-align: center;
  line-height: 1.4;
  border-bottom: 1px solid #7E7E7E;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .orange_contents .g_bc_h2_lines {
    letter-spacing: 4px;
  }
}
.orange_contents .g_bc_h2_lines span {
  display: table;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0 2rem;
  margin: 0 auto 0.5rem auto;
  text-align: center;
  background-color: #ea5504;
  color: white;
  border-radius: 2rem;
}

.green_contents .g_bc_h2_lines {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 7rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  text-align: center;
  line-height: 1.4;
  border-bottom: 1px solid #7E7E7E;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .green_contents .g_bc_h2_lines {
    letter-spacing: 4px;
  }
}
.green_contents .g_bc_h2_lines span {
  display: table;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0 2rem;
  margin: 0 auto 0.5rem auto;
  text-align: center;
  background-color: #007e5c;
  color: white;
  border-radius: 2rem;
}

.blue_contents .g_bc_h2_lines {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 7rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  text-align: center;
  line-height: 1.4;
  border-bottom: 1px solid #7E7E7E;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .blue_contents .g_bc_h2_lines {
    letter-spacing: 4px;
  }
}
.blue_contents .g_bc_h2_lines span {
  display: table;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0 2rem;
  margin: 0 auto 0.5rem auto;
  text-align: center;
  background-color: #0b318f;
  color: white;
  border-radius: 2rem;
}

.yellow_contents .g_bc_h2_lines {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 7rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  text-align: center;
  line-height: 1.4;
  border-bottom: 1px solid #7E7E7E;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .yellow_contents .g_bc_h2_lines {
    letter-spacing: 4px;
  }
}
.yellow_contents .g_bc_h2_lines span {
  display: table;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0 2rem;
  margin: 0 auto 0.5rem auto;
  text-align: center;
  background-color: #fdd000;
  color: white;
  border-radius: 2rem;
}

.red_contents .g_bc_h2_lines {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 7rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  text-align: center;
  line-height: 1.4;
  border-bottom: 1px solid #7E7E7E;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .red_contents .g_bc_h2_lines {
    letter-spacing: 4px;
  }
}
.red_contents .g_bc_h2_lines span {
  display: table;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0 2rem;
  margin: 0 auto 0.5rem auto;
  text-align: center;
  background-color: #CC1F3A;
  color: white;
  border-radius: 2rem;
}

/*==g_bc_h3==*/
.orange {
  color: #ea5504;
}

.orange_contents .g_bc_h3 {
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 4rem;
  margin-bottom: 2rem;
  border-left: 5px solid #ea5504;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .orange_contents .g_bc_h3 {
    font-size: 1.6rem;
  }
}

.green {
  color: #007e5c;
}

.green_contents .g_bc_h3 {
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 4rem;
  margin-bottom: 2rem;
  border-left: 5px solid #007e5c;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .green_contents .g_bc_h3 {
    font-size: 1.6rem;
  }
}

.blue {
  color: #0b318f;
}

.blue_contents .g_bc_h3 {
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 4rem;
  margin-bottom: 2rem;
  border-left: 5px solid #0b318f;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .blue_contents .g_bc_h3 {
    font-size: 1.6rem;
  }
}

.yellow {
  color: #fdd000;
}

.yellow_contents .g_bc_h3 {
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 4rem;
  margin-bottom: 2rem;
  border-left: 5px solid #fdd000;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .yellow_contents .g_bc_h3 {
    font-size: 1.6rem;
  }
}

.red {
  color: #CC1F3A;
}

.red_contents .g_bc_h3 {
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 4rem;
  margin-bottom: 2rem;
  border-left: 5px solid #CC1F3A;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .red_contents .g_bc_h3 {
    font-size: 1.6rem;
  }
}

/*==g_bc_h4==*/
.orange_contents .g_bc_h4 {
  position: relative;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 4rem;
  margin-bottom: 2rem;
  border-bottom: 3px solid #F6F6F6;
}
.orange_contents .g_bc_h4:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 3px;
  background-color: #ea5504;
}

.green_contents .g_bc_h4 {
  position: relative;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 4rem;
  margin-bottom: 2rem;
  border-bottom: 3px solid #F6F6F6;
}
.green_contents .g_bc_h4:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 3px;
  background-color: #007e5c;
}

.blue_contents .g_bc_h4 {
  position: relative;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 4rem;
  margin-bottom: 2rem;
  border-bottom: 3px solid #F6F6F6;
}
.blue_contents .g_bc_h4:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 3px;
  background-color: #0b318f;
}

.yellow_contents .g_bc_h4 {
  position: relative;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 4rem;
  margin-bottom: 2rem;
  border-bottom: 3px solid #F6F6F6;
}
.yellow_contents .g_bc_h4:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 3px;
  background-color: #fdd000;
}

.red_contents .g_bc_h4 {
  position: relative;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 4rem;
  margin-bottom: 2rem;
  border-bottom: 3px solid #F6F6F6;
}
.red_contents .g_bc_h4:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 3px;
  background-color: #CC1F3A;
}

/*==g_bc_h5==*/
.g_bc_h5 {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

/*==g_bc_h6==*/
.g_bc_h6 {
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

/*==================================

g_lead_txt

==================================*/
.g_lead_txt {
  font-size: 1rem;
  line-height: 2;
  margin: 0 auto 1.5rem auto;
  max-width: 880px;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .g_lead_txt {
    font-size: 1.08rem;
    margin: 5rem auto 7rem auto;
  }
}

/*==================================

g_normal_p

==================================*/
.g_normal_p {
  margin-bottom: 0.5rem;
}

/*==================================

g_large_p

==================================*/
.g_large_p {
  margin-bottom: 1rem;
}

/*==================================

リンク系

==================================*/
/*==g_tel_link==*/
.g_tel_link {
  font-family: "Lato", serif;
  font-weight: 700;
  text-decoration: underline;
}
.g_tel_link:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .g_tel_link {
    pointer-events: none;
    text-decoration: none;
  }
}

/*==================================

アイコン、タグ、カテゴリー系

==================================*/
/*==g_label==*/
.orange {
  color: #ea5504;
}

.g_label_orange {
  display: inline-block;
  margin: 0 0.5rem 0.2rem 0.5rem;
  font-size: 0.8rem;
  padding: 0 0.8rem;
  background-color: #ea5504;
  color: white;
}

.green {
  color: #007e5c;
}

.g_label_green {
  display: inline-block;
  margin: 0 0.5rem 0.2rem 0.5rem;
  font-size: 0.8rem;
  padding: 0 0.8rem;
  background-color: #007e5c;
  color: white;
}

.blue {
  color: #0b318f;
}

.g_label_blue {
  display: inline-block;
  margin: 0 0.5rem 0.2rem 0.5rem;
  font-size: 0.8rem;
  padding: 0 0.8rem;
  background-color: #0b318f;
  color: white;
}

.yellow {
  color: #fdd000;
}

.g_label_yellow {
  display: inline-block;
  margin: 0 0.5rem 0.2rem 0.5rem;
  font-size: 0.8rem;
  padding: 0 0.8rem;
  background-color: #fdd000;
  color: white;
}

.red {
  color: #CC1F3A;
}

.g_label_red {
  display: inline-block;
  margin: 0 0.5rem 0.2rem 0.5rem;
  font-size: 0.8rem;
  padding: 0 0.8rem;
  background-color: #CC1F3A;
  color: white;
}

/*==カテゴリーーアイコン==*/
.g_cat_orange {
  font-size: 0.7rem;
  padding: 0 0.4rem;
  border-radius: 20px;
  font-weight: 700;
  border: 2px solid #ea5504;
  display: inline-block;
}

.g_cat_green {
  font-size: 0.7rem;
  padding: 0 0.4rem;
  border-radius: 20px;
  font-weight: 700;
  border: 2px solid #007e5c;
  display: inline-block;
}

.g_cat_blue {
  font-size: 0.7rem;
  padding: 0 0.4rem;
  border-radius: 20px;
  font-weight: 700;
  border: 2px solid #0b318f;
  display: inline-block;
}

.g_cat_yellow {
  font-size: 0.7rem;
  padding: 0 0.4rem;
  border-radius: 20px;
  font-weight: 700;
  border: 2px solid #fdd000;
  display: inline-block;
}

.g_cat_red {
  font-size: 0.7rem;
  padding: 0 0.4rem;
  border-radius: 20px;
  font-weight: 700;
  border: 2px solid #CC1F3A;
  display: inline-block;
}

/*==日付==*/
.g_time {
  font-family: "Lato", serif;
  font-weight: 700;
  display: inline-block;
  padding-right: 1rem;
}

/*==================================

アイコン付きリンク

==================================*/
/*==g_normal_link==*/
.g_normal_link {
  text-decoration: underline;
}
.g_normal_link:hover {
  text-decoration: none;
}

/*==g_otherwindow_link==*/
.g_otherwindow_link {
  text-decoration: underline;
  display: inline-block;
}
.g_otherwindow_link:after {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(/img/common/icon_black_otherwindow.svg);
  background-repeat: no-repeat;
  background-position: 0.2rem bottom;
}
.g_otherwindow_link:hover {
  text-decoration: none;
}

/*==g_modal_link==*/
.g_modal_link {
  text-decoration: underline;
  display: inline-block;
}
.g_modal_link:after {
  display: inline-block;
  content: "";
  width: 30px;
  height: 20px;
  background-image: url(/img/common/icon_black_modal.svg);
  background-repeat: no-repeat;
  background-position: 0.2rem bottom;
}
.g_modal_link:hover {
  text-decoration: none;
}

/*==g_pdf_link==*/
.g_pdf_link {
  text-decoration: underline;
  display: inline-block;
}
.g_pdf_link:after {
  display: inline-block;
  content: "";
  width: 30px;
  height: 20px;
  background-image: url(/img/common/icon_black_pdf.svg);
  background-repeat: no-repeat;
  background-position: 0.2rem bottom;
}
.g_pdf_link:hover {
  text-decoration: none;
}

/*==g_download_link==*/
.g_download_link {
  text-decoration: underline;
  display: inline-block;
}
.g_download_link:after {
  display: inline-block;
  content: "";
  width: 30px;
  height: 24px;
  background-image: url(/img/common/icon_black_download.svg);
  background-repeat: no-repeat;
  background-position: 0.2rem bottom;
}
.g_download_link:hover {
  text-decoration: none;
}

/*==g_prev_link==*/
.g_prev_link {
  text-decoration: underline;
  display: inline-block;
}
.g_prev_link:before {
  display: inline-block;
  content: "";
  width: 24px;
  height: 26px;
  background-image: url(/img/common/icon_black_prev.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
}
.g_prev_link:hover {
  text-decoration: none;
}

/*==g_next_link==*/
.g_next_link {
  text-decoration: underline;
  display: inline-block;
}
.g_next_link:after {
  display: inline-block;
  content: "";
  width: 24px;
  height: 26px;
  background-image: url(/img/common/icon_black_next.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
}
.g_next_link:hover {
  text-decoration: none;
}

/*==g_pagenav_list==*/
.g_pagenav_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/*==g_down_link==*/
.g_down_link {
  text-decoration: underline;
  display: inline-block;
}
.g_down_link:after {
  display: inline-block;
  content: "";
  width: 24px;
  height: 26px;
  background-image: url(/img/common/icon_black_down.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
}
.g_down_link:hover {
  text-decoration: none;
}

/*==g_up_link==*/
.g_up_link {
  text-decoration: underline;
  display: inline-block;
}
.g_up_link:after {
  display: inline-block;
  content: "";
  width: 24px;
  height: 26px;
  background-image: url(/img/common/icon_black_up.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
}
.g_up_link:hover {
  text-decoration: none;
}

/*==g_back_parent==*/
.g_back_parent_link {
  text-decoration: underline;
  display: table;
  margin: 2rem auto 0 auto;
}
.g_back_parent_link:before {
  display: inline-block;
  content: "";
  width: 24px;
  height: 26px;
  background-image: url(/img/common/icon_black_prev.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
}
.g_back_parent_link:hover {
  text-decoration: none;
}

/*==================================

g_table1

==================================*/
.orange {
  color: #ea5504;
}

.orange_contents .g_table1 {
  border-collapse: separate;
  border-spacing: 0.5rem;
  width: 100%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .orange_contents .g_table1 {
    border-spacing: 1.5rem;
    margin-bottom: 3rem;
  }
}
.orange_contents .g_table1 thead {
  display: block;
  float: left;
}
@media screen and (min-width: 768px) {
  .orange_contents .g_table1 thead {
    display: table-header-group;
    width: 30%;
    float: none;
    width: auto;
  }
}
.orange_contents .g_table1 tbody {
  display: block;
  float: left;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .orange_contents .g_table1 tbody {
    display: table-row-group;
    width: 70%;
    float: none;
    width: auto;
  }
}
.orange_contents .g_table1 tr {
  display: block;
  float: left;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .orange_contents .g_table1 tr {
    display: table-row;
    float: none;
    width: auto;
  }
}
.orange_contents .g_table1 th {
  border-bottom: 3px solid #ea5504;
  text-align: left;
  font-weight: bold;
  vertical-align: middle;
  line-height: 1.2;
  padding: 3rem 0.5rem 0.5rem 0.5rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .orange_contents .g_table1 th {
    width: 30%;
    padding: 0 0.5rem 1.5rem 0.5rem;
    display: table-cell;
  }
}
.orange_contents .g_table1 td {
  border-bottom: 3px solid #ccc;
  padding: 1.5rem 0.5rem 1.5rem 0.5rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .orange_contents .g_table1 td {
    padding: 0 0.5rem 1.5rem 0.5rem;
    display: table-cell;
  }
}

@media screen and (min-width: 768px) {
  .g_table1.width_5_5 tbody {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .g_table1.width_5_5 th {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .g_table1.width_4_6 tbody {
    width: 60%;
  }
}
@media screen and (min-width: 768px) {
  .g_table1.width_4_6 th {
    width: 40%;
  }
}

@media screen and (min-width: 768px) {
  .g_table1.width_2_8 tbody {
    width: 80%;
  }
}
@media screen and (min-width: 768px) {
  .g_table1.width_2_8 th {
    width: 20%;
  }
}

.green {
  color: #007e5c;
}

.green_contents .g_table1 {
  border-collapse: separate;
  border-spacing: 0.5rem;
  width: 100%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .green_contents .g_table1 {
    border-spacing: 1.5rem;
    margin-bottom: 3rem;
  }
}
.green_contents .g_table1 thead {
  display: block;
  float: left;
}
@media screen and (min-width: 768px) {
  .green_contents .g_table1 thead {
    display: table-header-group;
    width: 30%;
    float: none;
    width: auto;
  }
}
.green_contents .g_table1 tbody {
  display: block;
  float: left;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .green_contents .g_table1 tbody {
    display: table-row-group;
    width: 70%;
    float: none;
    width: auto;
  }
}
.green_contents .g_table1 tr {
  display: block;
  float: left;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .green_contents .g_table1 tr {
    display: table-row;
    float: none;
    width: auto;
  }
}
.green_contents .g_table1 th {
  border-bottom: 3px solid #007e5c;
  text-align: left;
  font-weight: bold;
  vertical-align: middle;
  line-height: 1.2;
  padding: 3rem 0.5rem 0.5rem 0.5rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .green_contents .g_table1 th {
    width: 30%;
    padding: 0 0.5rem 1.5rem 0.5rem;
    display: table-cell;
  }
}
.green_contents .g_table1 td {
  border-bottom: 3px solid #ccc;
  padding: 1.5rem 0.5rem 1.5rem 0.5rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .green_contents .g_table1 td {
    padding: 0 0.5rem 1.5rem 0.5rem;
    display: table-cell;
  }
}

@media screen and (min-width: 768px) {
  .g_table1.width_5_5 tbody {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .g_table1.width_5_5 th {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .g_table1.width_4_6 tbody {
    width: 60%;
  }
}
@media screen and (min-width: 768px) {
  .g_table1.width_4_6 th {
    width: 40%;
  }
}

@media screen and (min-width: 768px) {
  .g_table1.width_2_8 tbody {
    width: 80%;
  }
}
@media screen and (min-width: 768px) {
  .g_table1.width_2_8 th {
    width: 20%;
  }
}

.blue {
  color: #0b318f;
}

.blue_contents .g_table1 {
  border-collapse: separate;
  border-spacing: 0.5rem;
  width: 100%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .blue_contents .g_table1 {
    border-spacing: 1.5rem;
    margin-bottom: 3rem;
  }
}
.blue_contents .g_table1 thead {
  display: block;
  float: left;
}
@media screen and (min-width: 768px) {
  .blue_contents .g_table1 thead {
    display: table-header-group;
    width: 30%;
    float: none;
    width: auto;
  }
}
.blue_contents .g_table1 tbody {
  display: block;
  float: left;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .blue_contents .g_table1 tbody {
    display: table-row-group;
    width: 70%;
    float: none;
    width: auto;
  }
}
.blue_contents .g_table1 tr {
  display: block;
  float: left;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .blue_contents .g_table1 tr {
    display: table-row;
    float: none;
    width: auto;
  }
}
.blue_contents .g_table1 th {
  border-bottom: 3px solid #0b318f;
  text-align: left;
  font-weight: bold;
  vertical-align: middle;
  line-height: 1.2;
  padding: 3rem 0.5rem 0.5rem 0.5rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .blue_contents .g_table1 th {
    width: 30%;
    padding: 0 0.5rem 1.5rem 0.5rem;
    display: table-cell;
  }
}
.blue_contents .g_table1 td {
  border-bottom: 3px solid #ccc;
  padding: 1.5rem 0.5rem 1.5rem 0.5rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .blue_contents .g_table1 td {
    padding: 0 0.5rem 1.5rem 0.5rem;
    display: table-cell;
  }
}

@media screen and (min-width: 768px) {
  .g_table1.width_5_5 tbody {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .g_table1.width_5_5 th {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .g_table1.width_4_6 tbody {
    width: 60%;
  }
}
@media screen and (min-width: 768px) {
  .g_table1.width_4_6 th {
    width: 40%;
  }
}

@media screen and (min-width: 768px) {
  .g_table1.width_2_8 tbody {
    width: 80%;
  }
}
@media screen and (min-width: 768px) {
  .g_table1.width_2_8 th {
    width: 20%;
  }
}

.yellow {
  color: #fdd000;
}

.yellow_contents .g_table1 {
  border-collapse: separate;
  border-spacing: 0.5rem;
  width: 100%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .yellow_contents .g_table1 {
    border-spacing: 1.5rem;
    margin-bottom: 3rem;
  }
}
.yellow_contents .g_table1 thead {
  display: block;
  float: left;
}
@media screen and (min-width: 768px) {
  .yellow_contents .g_table1 thead {
    display: table-header-group;
    width: 30%;
    float: none;
    width: auto;
  }
}
.yellow_contents .g_table1 tbody {
  display: block;
  float: left;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .yellow_contents .g_table1 tbody {
    display: table-row-group;
    width: 70%;
    float: none;
    width: auto;
  }
}
.yellow_contents .g_table1 tr {
  display: block;
  float: left;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .yellow_contents .g_table1 tr {
    display: table-row;
    float: none;
    width: auto;
  }
}
.yellow_contents .g_table1 th {
  border-bottom: 3px solid #fdd000;
  text-align: left;
  font-weight: bold;
  vertical-align: middle;
  line-height: 1.2;
  padding: 3rem 0.5rem 0.5rem 0.5rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .yellow_contents .g_table1 th {
    width: 30%;
    padding: 0 0.5rem 1.5rem 0.5rem;
    display: table-cell;
  }
}
.yellow_contents .g_table1 td {
  border-bottom: 3px solid #ccc;
  padding: 1.5rem 0.5rem 1.5rem 0.5rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .yellow_contents .g_table1 td {
    padding: 0 0.5rem 1.5rem 0.5rem;
    display: table-cell;
  }
}

@media screen and (min-width: 768px) {
  .g_table1.width_5_5 tbody {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .g_table1.width_5_5 th {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .g_table1.width_4_6 tbody {
    width: 60%;
  }
}
@media screen and (min-width: 768px) {
  .g_table1.width_4_6 th {
    width: 40%;
  }
}

@media screen and (min-width: 768px) {
  .g_table1.width_2_8 tbody {
    width: 80%;
  }
}
@media screen and (min-width: 768px) {
  .g_table1.width_2_8 th {
    width: 20%;
  }
}

.red {
  color: #CC1F3A;
}

.red_contents .g_table1 {
  border-collapse: separate;
  border-spacing: 0.5rem;
  width: 100%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .red_contents .g_table1 {
    border-spacing: 1.5rem;
    margin-bottom: 3rem;
  }
}
.red_contents .g_table1 thead {
  display: block;
  float: left;
}
@media screen and (min-width: 768px) {
  .red_contents .g_table1 thead {
    display: table-header-group;
    width: 30%;
    float: none;
    width: auto;
  }
}
.red_contents .g_table1 tbody {
  display: block;
  float: left;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .red_contents .g_table1 tbody {
    display: table-row-group;
    width: 70%;
    float: none;
    width: auto;
  }
}
.red_contents .g_table1 tr {
  display: block;
  float: left;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .red_contents .g_table1 tr {
    display: table-row;
    float: none;
    width: auto;
  }
}
.red_contents .g_table1 th {
  border-bottom: 3px solid #CC1F3A;
  text-align: left;
  font-weight: bold;
  vertical-align: middle;
  line-height: 1.2;
  padding: 3rem 0.5rem 0.5rem 0.5rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .red_contents .g_table1 th {
    width: 30%;
    padding: 0 0.5rem 1.5rem 0.5rem;
    display: table-cell;
  }
}
.red_contents .g_table1 td {
  border-bottom: 3px solid #ccc;
  padding: 1.5rem 0.5rem 1.5rem 0.5rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .red_contents .g_table1 td {
    padding: 0 0.5rem 1.5rem 0.5rem;
    display: table-cell;
  }
}

@media screen and (min-width: 768px) {
  .g_table1.width_5_5 tbody {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .g_table1.width_5_5 th {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .g_table1.width_4_6 tbody {
    width: 60%;
  }
}
@media screen and (min-width: 768px) {
  .g_table1.width_4_6 th {
    width: 40%;
  }
}

@media screen and (min-width: 768px) {
  .g_table1.width_2_8 tbody {
    width: 80%;
  }
}
@media screen and (min-width: 768px) {
  .g_table1.width_2_8 th {
    width: 20%;
  }
}

/*==================================

g_table2

==================================*/
.g_table2 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .g_table2 {
    margin-bottom: 3rem;
  }
}
.g_table2 th {
  background-color: #535151;
  color: white;
  text-align: center;
  font-weight: 700;
  padding: 1rem;
  vertical-align: middle;
}
.g_table2 th:first-child {
  width: 30%;
}
.g_table2 td {
  padding: 1rem;
  vertical-align: middle;
}
.g_table2 td:nth-child(odd) {
  background-color: #EDEDED;
}
.g_table2 td:nth-child(even) {
  background-color: #F6F6F6;
}

.g_table2.width_5_5 th:first-child {
  width: 50%;
}

.g_table2.width_4_6 th:first-child {
  width: 40%;
}

.g_table2.width_2_8 th:first-child {
  width: 20%;
}

/*==================================

g_table3

==================================*/
.g_table3 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .g_table3 {
    margin-bottom: 3rem;
  }
}
.g_table3 thead {
  display: block;
  float: left;
}
@media screen and (min-width: 768px) {
  .g_table3 thead {
    display: table-header-group;
    width: 40%;
    float: none;
    width: auto;
  }
}
.g_table3 tbody {
  display: block;
  float: left;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .g_table3 tbody {
    display: table-row-group;
    width: 60%;
    float: none;
    width: auto;
  }
}
.g_table3 tr {
  display: block;
  float: left;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .g_table3 tr {
    display: table-row;
    float: none;
    width: auto;
  }
}
.g_table3 th {
  background-color: #535151;
  color: white;
  text-align: center;
  font-weight: 700;
  display: block;
  padding: 1rem;
  border-bottom: 3px solid white;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .g_table3 th {
    width: 30%;
    display: table-cell;
    padding: 0.8rem 1rem;
    border-bottom: none;
  }
}
.g_table3 td {
  display: block;
  padding: 1rem;
  border-bottom: 3px solid white;
}
@media screen and (min-width: 768px) {
  .g_table3 td {
    width: 70%;
    display: table-cell;
    padding: 1.5rem 1rem;
    border-bottom: none;
  }
}
.g_table3 td:nth-child(odd) {
  background-color: #F6F6F6;
}
.g_table3 td:nth-child(even) {
  background-color: #EDEDED;
}

@media screen and (min-width: 768px) {
  .g_table3.width_5_5 th {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .g_table3.width_5_5 td {
    width: 50%;
  }
}

@media screen and (min-width: 768px) {
  .g_table3.width_4_6 th {
    width: 40%;
  }
}
@media screen and (min-width: 768px) {
  .g_table3.width_4_6 td {
    width: 60%;
  }
}

@media screen and (min-width: 768px) {
  .g_table3.width_2_8 th {
    width: 20%;
  }
}
@media screen and (min-width: 768px) {
  .g_table3.width_2_8 td {
    width: 80%;
  }
}

/*==================================

g_table4

==================================*/
.g_table4 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .g_table4 {
    margin-bottom: 3rem;
  }
}
.g_table4 thead {
  display: block;
  float: left;
  width: 30%;
}
@media screen and (min-width: 768px) {
  .g_table4 thead {
    display: table-header-group;
    float: none;
    width: auto;
  }
}
.g_table4 tbody {
  display: block;
  float: left;
  width: 70%;
}
@media screen and (min-width: 768px) {
  .g_table4 tbody {
    display: table-row-group;
    float: none;
    width: auto;
  }
}
.g_table4 tr {
  display: block;
  float: left;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .g_table4 tr {
    display: table-row;
    float: none;
    width: auto;
  }
}
.g_table4 th {
  background-color: #535151;
  color: white;
  text-align: center;
  font-weight: 700;
  display: block;
  padding: 1rem;
  border-bottom: 3px solid white;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .g_table4 th {
    display: table-cell;
    padding: 0.8rem 1rem;
    border-bottom: none;
  }
}
.g_table4 td {
  display: block;
  padding: 1rem;
  border-bottom: 3px solid white;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .g_table4 td {
    display: table-cell;
    padding: 1.5rem 1rem;
    border-bottom: none;
  }
}
.g_table4 td:nth-child(odd) {
  background-color: #F6F6F6;
}
.g_table4 td:nth-child(even) {
  background-color: #EDEDED;
}

.g_table4.width_5_5 thead {
  width: 50%;
}
.g_table4.width_5_5 tbody {
  width: 50%;
}

.g_table4.width_4_6 thead {
  width: 40%;
}
.g_table4.width_4_6 tbody {
  width: 60%;
}

.g_table4.width_2_8 thead {
  width: 20%;
}
.g_table4.width_2_8 tbody {
  width: 80%;
}

/*==================================

g_grayborder_box

==================================*/
.g_grayborder_box {
  margin: 2rem auto;
  border: 10px solid #F6F6F6;
  border-radius: 20px;
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .g_grayborder_box {
    border-radius: 40px;
    padding: 2rem 3rem;
  }
}
.g_grayborder_box .ttl {
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.g_grayborder_box .g_btn {
  margin: 1rem auto 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .g_grayborder_box .g_btn {
    width: auto;
  }
}
.g_grayborder_box .g_figure_half, .g_grayborder_box .g_figure_half_float {
  width: auto;
  margin-bottom: 1rem;
}

/*==================================

.g_graybg_box

==================================*/
.g_graybg_box {
  margin: 2rem auto;
  background-color: #F6F6F6;
  border-radius: 20px;
  padding: 1.5rem 2rem;
}
@media screen and (min-width: 768px) {
  .g_graybg_box {
    border-radius: 40px;
    padding: 2rem 3rem;
  }
}
.g_graybg_box .ttl {
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.g_graybg_box .g_btn {
  margin: 1rem auto 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .g_graybg_box .g_btn {
    width: auto;
  }
}
.g_graybg_box .g_figure_half, .g_graybg_box .g_figure_half_float {
  margin-bottom: 1rem;
}

/*==================================

.g_colorborder_box

==================================*/
.orange {
  color: #ea5504;
}

.orange_contents .g_colorborder_box {
  margin: 2rem auto;
  border: 10px solid #ea5504;
  border-radius: 20px;
  padding: 1.5rem 2rem;
}
@media screen and (min-width: 768px) {
  .orange_contents .g_colorborder_box {
    border-radius: 40px;
    padding: 2rem 3rem;
  }
}
.orange_contents .g_colorborder_box .ttl {
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.orange_contents .g_colorborder_box .g_btn {
  margin: 1rem auto 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .orange_contents .g_colorborder_box .g_btn {
    width: auto;
  }
}
.orange_contents .g_colorborder_box .g_figure_half, .orange_contents .g_colorborder_box .g_figure_half_float {
  margin-bottom: 1rem;
}

.green {
  color: #007e5c;
}

.green_contents .g_colorborder_box {
  margin: 2rem auto;
  border: 10px solid #007e5c;
  border-radius: 20px;
  padding: 1.5rem 2rem;
}
@media screen and (min-width: 768px) {
  .green_contents .g_colorborder_box {
    border-radius: 40px;
    padding: 2rem 3rem;
  }
}
.green_contents .g_colorborder_box .ttl {
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.green_contents .g_colorborder_box .g_btn {
  margin: 1rem auto 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .green_contents .g_colorborder_box .g_btn {
    width: auto;
  }
}
.green_contents .g_colorborder_box .g_figure_half, .green_contents .g_colorborder_box .g_figure_half_float {
  margin-bottom: 1rem;
}

.blue {
  color: #0b318f;
}

.blue_contents .g_colorborder_box {
  margin: 2rem auto;
  border: 10px solid #0b318f;
  border-radius: 20px;
  padding: 1.5rem 2rem;
}
@media screen and (min-width: 768px) {
  .blue_contents .g_colorborder_box {
    border-radius: 40px;
    padding: 2rem 3rem;
  }
}
.blue_contents .g_colorborder_box .ttl {
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.blue_contents .g_colorborder_box .g_btn {
  margin: 1rem auto 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .blue_contents .g_colorborder_box .g_btn {
    width: auto;
  }
}
.blue_contents .g_colorborder_box .g_figure_half, .blue_contents .g_colorborder_box .g_figure_half_float {
  margin-bottom: 1rem;
}

.yellow {
  color: #fdd000;
}

.yellow_contents .g_colorborder_box {
  margin: 2rem auto;
  border: 10px solid #fdd000;
  border-radius: 20px;
  padding: 1.5rem 2rem;
}
@media screen and (min-width: 768px) {
  .yellow_contents .g_colorborder_box {
    border-radius: 40px;
    padding: 2rem 3rem;
  }
}
.yellow_contents .g_colorborder_box .ttl {
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.yellow_contents .g_colorborder_box .g_btn {
  margin: 1rem auto 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .yellow_contents .g_colorborder_box .g_btn {
    width: auto;
  }
}
.yellow_contents .g_colorborder_box .g_figure_half, .yellow_contents .g_colorborder_box .g_figure_half_float {
  margin-bottom: 1rem;
}

.red {
  color: #CC1F3A;
}

.red_contents .g_colorborder_box {
  margin: 2rem auto;
  border: 10px solid #CC1F3A;
  border-radius: 20px;
  padding: 1.5rem 2rem;
}
@media screen and (min-width: 768px) {
  .red_contents .g_colorborder_box {
    border-radius: 40px;
    padding: 2rem 3rem;
  }
}
.red_contents .g_colorborder_box .ttl {
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.red_contents .g_colorborder_box .g_btn {
  margin: 1rem auto 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .red_contents .g_colorborder_box .g_btn {
    width: auto;
  }
}
.red_contents .g_colorborder_box .g_figure_half, .red_contents .g_colorborder_box .g_figure_half_float {
  margin-bottom: 1rem;
}

/*==================================

.g_wide_80_box

==================================*/
@media screen and (min-width: 768px) {
  .g_wide_80_box {
    width: 80%;
    margin: 2rem auto;
  }
}

/*==================================

.g_hr_normal

==================================*/
.g_hr_normal {
  height: 10px;
  background-color: #F6F6F6;
  width: 100%;
  border: none;
  margin: 2rem auto;
}

/*==================================

.g_hr_color

==================================*/
.orange {
  color: #ea5504;
}

.orange_contents .g_hr_color {
  height: 10px;
  background-color: #ea5504;
  width: 100%;
  border: none;
  margin: 2rem auto;
}

.green {
  color: #007e5c;
}

.green_contents .g_hr_color {
  height: 10px;
  background-color: #007e5c;
  width: 100%;
  border: none;
  margin: 2rem auto;
}

.blue {
  color: #0b318f;
}

.blue_contents .g_hr_color {
  height: 10px;
  background-color: #0b318f;
  width: 100%;
  border: none;
  margin: 2rem auto;
}

.yellow {
  color: #fdd000;
}

.yellow_contents .g_hr_color {
  height: 10px;
  background-color: #fdd000;
  width: 100%;
  border: none;
  margin: 2rem auto;
}

.red {
  color: #CC1F3A;
}

.red_contents .g_hr_color {
  height: 10px;
  background-color: #CC1F3A;
  width: 100%;
  border: none;
  margin: 2rem auto;
}

/*==================================

.g_step_box

==================================*/
.orange {
  color: #ea5504;
}

.orange_contents .g_step_box {
  margin-top: 5rem;
}
.orange_contents .g_step_box .g_step_item {
  width: 100%;
  margin: 2rem auto 5rem auto;
  border: 10px solid #F6F6F6;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .orange_contents .g_step_box .g_step_item {
    border-radius: 40px;
    width: 80%;
    padding: 2rem 3rem;
  }
}
.orange_contents .g_step_box .g_step_item:after {
  content: "";
  display: block;
  background-image: url(/img/common/icon_orange_down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px auto;
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  margin: auto;
}
.orange_contents .g_step_box .g_step_item:last-child:after {
  background-image: none;
}
.orange_contents .g_step_box .g_step_item .g_figure_half, .orange_contents .g_step_box .g_step_item .g_figure_half_float {
  margin-bottom: 1rem;
}
.orange_contents .g_step_box .step_no {
  background-color: #ea5504;
  color: white;
  font-family: "Lato", serif;
  font-weight: 700;
  padding: 0.3rem 2rem;
  border-radius: 20px;
  position: absolute;
  top: -1.5rem;
}
.orange_contents .g_step_box .ttl {
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.green {
  color: #007e5c;
}

.green_contents .g_step_box {
  margin-top: 5rem;
}
.green_contents .g_step_box .g_step_item {
  width: 100%;
  margin: 2rem auto 5rem auto;
  border: 10px solid #F6F6F6;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .green_contents .g_step_box .g_step_item {
    border-radius: 40px;
    width: 80%;
    padding: 2rem 3rem;
  }
}
.green_contents .g_step_box .g_step_item:after {
  content: "";
  display: block;
  background-image: url(/img/common/icon_green_down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px auto;
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  margin: auto;
}
.green_contents .g_step_box .g_step_item:last-child:after {
  background-image: none;
}
.green_contents .g_step_box .g_step_item .g_figure_half, .green_contents .g_step_box .g_step_item .g_figure_half_float {
  margin-bottom: 1rem;
}
.green_contents .g_step_box .step_no {
  background-color: #007e5c;
  color: white;
  font-family: "Lato", serif;
  font-weight: 700;
  padding: 0.3rem 2rem;
  border-radius: 20px;
  position: absolute;
  top: -1.5rem;
}
.green_contents .g_step_box .ttl {
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.blue {
  color: #0b318f;
}

.blue_contents .g_step_box {
  margin-top: 5rem;
}
.blue_contents .g_step_box .g_step_item {
  width: 100%;
  margin: 2rem auto 5rem auto;
  border: 10px solid #F6F6F6;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .blue_contents .g_step_box .g_step_item {
    border-radius: 40px;
    width: 80%;
    padding: 2rem 3rem;
  }
}
.blue_contents .g_step_box .g_step_item:after {
  content: "";
  display: block;
  background-image: url(/img/common/icon_blue_down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px auto;
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  margin: auto;
}
.blue_contents .g_step_box .g_step_item:last-child:after {
  background-image: none;
}
.blue_contents .g_step_box .g_step_item .g_figure_half, .blue_contents .g_step_box .g_step_item .g_figure_half_float {
  margin-bottom: 1rem;
}
.blue_contents .g_step_box .step_no {
  background-color: #0b318f;
  color: white;
  font-family: "Lato", serif;
  font-weight: 700;
  padding: 0.3rem 2rem;
  border-radius: 20px;
  position: absolute;
  top: -1.5rem;
}
.blue_contents .g_step_box .ttl {
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.yellow {
  color: #fdd000;
}

.yellow_contents .g_step_box {
  margin-top: 5rem;
}
.yellow_contents .g_step_box .g_step_item {
  width: 100%;
  margin: 2rem auto 5rem auto;
  border: 10px solid #F6F6F6;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .yellow_contents .g_step_box .g_step_item {
    border-radius: 40px;
    width: 80%;
    padding: 2rem 3rem;
  }
}
.yellow_contents .g_step_box .g_step_item:after {
  content: "";
  display: block;
  background-image: url(/img/common/icon_yellow_down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px auto;
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  margin: auto;
}
.yellow_contents .g_step_box .g_step_item:last-child:after {
  background-image: none;
}
.yellow_contents .g_step_box .g_step_item .g_figure_half, .yellow_contents .g_step_box .g_step_item .g_figure_half_float {
  margin-bottom: 1rem;
}
.yellow_contents .g_step_box .step_no {
  background-color: #fdd000;
  color: white;
  font-family: "Lato", serif;
  font-weight: 700;
  padding: 0.3rem 2rem;
  border-radius: 20px;
  position: absolute;
  top: -1.5rem;
}
.yellow_contents .g_step_box .ttl {
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.red {
  color: #CC1F3A;
}

.red_contents .g_step_box {
  margin-top: 5rem;
}
.red_contents .g_step_box .g_step_item {
  width: 100%;
  margin: 2rem auto 5rem auto;
  border: 10px solid #F6F6F6;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .red_contents .g_step_box .g_step_item {
    border-radius: 40px;
    width: 80%;
    padding: 2rem 3rem;
  }
}
.red_contents .g_step_box .g_step_item:after {
  content: "";
  display: block;
  background-image: url(/img/common/icon_red_down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px auto;
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  margin: auto;
}
.red_contents .g_step_box .g_step_item:last-child:after {
  background-image: none;
}
.red_contents .g_step_box .g_step_item .g_figure_half, .red_contents .g_step_box .g_step_item .g_figure_half_float {
  margin-bottom: 1rem;
}
.red_contents .g_step_box .step_no {
  background-color: #CC1F3A;
  color: white;
  font-family: "Lato", serif;
  font-weight: 700;
  padding: 0.3rem 2rem;
  border-radius: 20px;
  position: absolute;
  top: -1.5rem;
}
.red_contents .g_step_box .ttl {
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/*==================================

g_bullet_list

==================================*/
.orange {
  color: #ea5504;
}

.orange_contents .g_bullet_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-left: 0.5rem;
}
.orange_contents .g_bullet_list .g_bullet_list_item {
  list-style: none;
  padding-bottom: 1rem;
  text-indent: -0.5rem;
}
.orange_contents .g_bullet_list .g_bullet_list_item:before {
  content: "• ";
  color: #ea5504;
}
.orange_contents .g_bullet_list .g_bullet_list_item a {
  text-indent: 0;
}
.orange_contents .g_bullet_list .g_bullet_list_item ul {
  margin: 1rem 0 0 1rem;
}

.green {
  color: #007e5c;
}

.green_contents .g_bullet_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-left: 0.5rem;
}
.green_contents .g_bullet_list .g_bullet_list_item {
  list-style: none;
  padding-bottom: 1rem;
  text-indent: -0.5rem;
}
.green_contents .g_bullet_list .g_bullet_list_item:before {
  content: "• ";
  color: #007e5c;
}
.green_contents .g_bullet_list .g_bullet_list_item a {
  text-indent: 0;
}
.green_contents .g_bullet_list .g_bullet_list_item ul {
  margin: 1rem 0 0 1rem;
}

.blue {
  color: #0b318f;
}

.blue_contents .g_bullet_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-left: 0.5rem;
}
.blue_contents .g_bullet_list .g_bullet_list_item {
  list-style: none;
  padding-bottom: 1rem;
  text-indent: -0.5rem;
}
.blue_contents .g_bullet_list .g_bullet_list_item:before {
  content: "• ";
  color: #0b318f;
}
.blue_contents .g_bullet_list .g_bullet_list_item a {
  text-indent: 0;
}
.blue_contents .g_bullet_list .g_bullet_list_item ul {
  margin: 1rem 0 0 1rem;
}

.yellow {
  color: #fdd000;
}

.yellow_contents .g_bullet_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-left: 0.5rem;
}
.yellow_contents .g_bullet_list .g_bullet_list_item {
  list-style: none;
  padding-bottom: 1rem;
  text-indent: -0.5rem;
}
.yellow_contents .g_bullet_list .g_bullet_list_item:before {
  content: "• ";
  color: #fdd000;
}
.yellow_contents .g_bullet_list .g_bullet_list_item a {
  text-indent: 0;
}
.yellow_contents .g_bullet_list .g_bullet_list_item ul {
  margin: 1rem 0 0 1rem;
}

.red {
  color: #CC1F3A;
}

.red_contents .g_bullet_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-left: 0.5rem;
}
.red_contents .g_bullet_list .g_bullet_list_item {
  list-style: none;
  padding-bottom: 1rem;
  text-indent: -0.5rem;
}
.red_contents .g_bullet_list .g_bullet_list_item:before {
  content: "• ";
  color: #CC1F3A;
}
.red_contents .g_bullet_list .g_bullet_list_item a {
  text-indent: 0;
}
.red_contents .g_bullet_list .g_bullet_list_item ul {
  margin: 1rem 0 0 1rem;
}

/*==================================

g_num_list

==================================*/
.orange {
  color: #ea5504;
}

.orange_contents .g_num_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
  counter-reset: num_li;
}
.orange_contents .g_num_list .g_num_list_item {
  list-style: none;
  padding-bottom: 1rem;
  padding-left: 1rem;
  text-indent: -1rem;
}
.orange_contents .g_num_list .g_num_list_item:before {
  font-weight: bold;
  color: #ea5504;
  counter-increment: num_li;
  content: counter(num_li) ". ";
}
.orange_contents .g_num_list .g_num_list_item a {
  text-decoration: underline;
}
.orange_contents .g_num_list .g_num_list_item a:hover {
  text-decoration: none;
}
.orange_contents .g_num_list .g_num_list_item ul {
  margin: 1rem 0 0 1rem;
}

.green {
  color: #007e5c;
}

.green_contents .g_num_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
  counter-reset: num_li;
}
.green_contents .g_num_list .g_num_list_item {
  list-style: none;
  padding-bottom: 1rem;
  padding-left: 1rem;
  text-indent: -1rem;
}
.green_contents .g_num_list .g_num_list_item:before {
  font-weight: bold;
  color: #007e5c;
  counter-increment: num_li;
  content: counter(num_li) ". ";
}
.green_contents .g_num_list .g_num_list_item a {
  text-decoration: underline;
}
.green_contents .g_num_list .g_num_list_item a:hover {
  text-decoration: none;
}
.green_contents .g_num_list .g_num_list_item ul {
  margin: 1rem 0 0 1rem;
}

.blue {
  color: #0b318f;
}

.blue_contents .g_num_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
  counter-reset: num_li;
}
.blue_contents .g_num_list .g_num_list_item {
  list-style: none;
  padding-bottom: 1rem;
  padding-left: 1rem;
  text-indent: -1rem;
}
.blue_contents .g_num_list .g_num_list_item:before {
  font-weight: bold;
  color: #0b318f;
  counter-increment: num_li;
  content: counter(num_li) ". ";
}
.blue_contents .g_num_list .g_num_list_item a {
  text-decoration: underline;
}
.blue_contents .g_num_list .g_num_list_item a:hover {
  text-decoration: none;
}
.blue_contents .g_num_list .g_num_list_item ul {
  margin: 1rem 0 0 1rem;
}

.yellow {
  color: #fdd000;
}

.yellow_contents .g_num_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
  counter-reset: num_li;
}
.yellow_contents .g_num_list .g_num_list_item {
  list-style: none;
  padding-bottom: 1rem;
  padding-left: 1rem;
  text-indent: -1rem;
}
.yellow_contents .g_num_list .g_num_list_item:before {
  font-weight: bold;
  color: #fdd000;
  counter-increment: num_li;
  content: counter(num_li) ". ";
}
.yellow_contents .g_num_list .g_num_list_item a {
  text-decoration: underline;
}
.yellow_contents .g_num_list .g_num_list_item a:hover {
  text-decoration: none;
}
.yellow_contents .g_num_list .g_num_list_item ul {
  margin: 1rem 0 0 1rem;
}

.red {
  color: #CC1F3A;
}

.red_contents .g_num_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
  counter-reset: num_li;
}
.red_contents .g_num_list .g_num_list_item {
  list-style: none;
  padding-bottom: 1rem;
  padding-left: 1rem;
  text-indent: -1rem;
}
.red_contents .g_num_list .g_num_list_item:before {
  font-weight: bold;
  color: #CC1F3A;
  counter-increment: num_li;
  content: counter(num_li) ". ";
}
.red_contents .g_num_list .g_num_list_item a {
  text-decoration: underline;
}
.red_contents .g_num_list .g_num_list_item a:hover {
  text-decoration: none;
}
.red_contents .g_num_list .g_num_list_item ul {
  margin: 1rem 0 0 1rem;
}

/*==================================

g_alpha_list

==================================*/
.orange {
  color: #ea5504;
}

.orange_contents .g_alpha_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
  counter-reset: alpha_li;
}
.orange_contents .g_alpha_list .g_alpha_list_item {
  list-style: none;
  padding-bottom: 1rem;
  padding-left: 1rem;
  text-indent: -1rem;
}
.orange_contents .g_alpha_list .g_alpha_list_item:before {
  font-weight: bold;
  color: #ea5504;
  counter-increment: alpha_li;
  content: counter(alpha_li, upper-alpha) ". ";
}
.orange_contents .g_alpha_list .g_alpha_list_item ul {
  margin: 1rem 0 0 1rem;
}

.green {
  color: #007e5c;
}

.green_contents .g_alpha_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
  counter-reset: alpha_li;
}
.green_contents .g_alpha_list .g_alpha_list_item {
  list-style: none;
  padding-bottom: 1rem;
  padding-left: 1rem;
  text-indent: -1rem;
}
.green_contents .g_alpha_list .g_alpha_list_item:before {
  font-weight: bold;
  color: #007e5c;
  counter-increment: alpha_li;
  content: counter(alpha_li, upper-alpha) ". ";
}
.green_contents .g_alpha_list .g_alpha_list_item ul {
  margin: 1rem 0 0 1rem;
}

.blue {
  color: #0b318f;
}

.blue_contents .g_alpha_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
  counter-reset: alpha_li;
}
.blue_contents .g_alpha_list .g_alpha_list_item {
  list-style: none;
  padding-bottom: 1rem;
  padding-left: 1rem;
  text-indent: -1rem;
}
.blue_contents .g_alpha_list .g_alpha_list_item:before {
  font-weight: bold;
  color: #0b318f;
  counter-increment: alpha_li;
  content: counter(alpha_li, upper-alpha) ". ";
}
.blue_contents .g_alpha_list .g_alpha_list_item ul {
  margin: 1rem 0 0 1rem;
}

.yellow {
  color: #fdd000;
}

.yellow_contents .g_alpha_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
  counter-reset: alpha_li;
}
.yellow_contents .g_alpha_list .g_alpha_list_item {
  list-style: none;
  padding-bottom: 1rem;
  padding-left: 1rem;
  text-indent: -1rem;
}
.yellow_contents .g_alpha_list .g_alpha_list_item:before {
  font-weight: bold;
  color: #fdd000;
  counter-increment: alpha_li;
  content: counter(alpha_li, upper-alpha) ". ";
}
.yellow_contents .g_alpha_list .g_alpha_list_item ul {
  margin: 1rem 0 0 1rem;
}

.red {
  color: #CC1F3A;
}

.red_contents .g_alpha_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
  counter-reset: alpha_li;
}
.red_contents .g_alpha_list .g_alpha_list_item {
  list-style: none;
  padding-bottom: 1rem;
  padding-left: 1rem;
  text-indent: -1rem;
}
.red_contents .g_alpha_list .g_alpha_list_item:before {
  font-weight: bold;
  color: #CC1F3A;
  counter-increment: alpha_li;
  content: counter(alpha_li, upper-alpha) ". ";
}
.red_contents .g_alpha_list .g_alpha_list_item ul {
  margin: 1rem 0 0 1rem;
}

/*==================================

g_annotation_list

==================================*/
.orange {
  color: #ea5504;
}

.orange_contents .g_annotation_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
  counter-reset: annotation_li;
}
.orange_contents .g_annotation_list .g_annotation_list_item {
  list-style: none;
  padding-bottom: 1rem;
  padding-left: 1rem;
  text-indent: -1rem;
}
.orange_contents .g_annotation_list .g_annotation_list_item:before {
  font-weight: bold;
  color: #ea5504;
  content: "※ ";
}
.orange_contents .g_annotation_list .g_annotation_list_item ul {
  margin: 1rem 0 0 1rem;
}

.green {
  color: #007e5c;
}

.green_contents .g_annotation_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
  counter-reset: annotation_li;
}
.green_contents .g_annotation_list .g_annotation_list_item {
  list-style: none;
  padding-bottom: 1rem;
  padding-left: 1rem;
  text-indent: -1rem;
}
.green_contents .g_annotation_list .g_annotation_list_item:before {
  font-weight: bold;
  color: #007e5c;
  content: "※ ";
}
.green_contents .g_annotation_list .g_annotation_list_item ul {
  margin: 1rem 0 0 1rem;
}

.blue {
  color: #0b318f;
}

.blue_contents .g_annotation_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
  counter-reset: annotation_li;
}
.blue_contents .g_annotation_list .g_annotation_list_item {
  list-style: none;
  padding-bottom: 1rem;
  padding-left: 1rem;
  text-indent: -1rem;
}
.blue_contents .g_annotation_list .g_annotation_list_item:before {
  font-weight: bold;
  color: #0b318f;
  content: "※ ";
}
.blue_contents .g_annotation_list .g_annotation_list_item ul {
  margin: 1rem 0 0 1rem;
}

.yellow {
  color: #fdd000;
}

.yellow_contents .g_annotation_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
  counter-reset: annotation_li;
}
.yellow_contents .g_annotation_list .g_annotation_list_item {
  list-style: none;
  padding-bottom: 1rem;
  padding-left: 1rem;
  text-indent: -1rem;
}
.yellow_contents .g_annotation_list .g_annotation_list_item:before {
  font-weight: bold;
  color: #fdd000;
  content: "※ ";
}
.yellow_contents .g_annotation_list .g_annotation_list_item ul {
  margin: 1rem 0 0 1rem;
}

.red {
  color: #CC1F3A;
}

.red_contents .g_annotation_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
  counter-reset: annotation_li;
}
.red_contents .g_annotation_list .g_annotation_list_item {
  list-style: none;
  padding-bottom: 1rem;
  padding-left: 1rem;
  text-indent: -1rem;
}
.red_contents .g_annotation_list .g_annotation_list_item:before {
  font-weight: bold;
  color: #CC1F3A;
  content: "※ ";
}
.red_contents .g_annotation_list .g_annotation_list_item ul {
  margin: 1rem 0 0 1rem;
}

/*==================================

g_annotation_list

==================================*/
.orange {
  color: #ea5504;
}

.orange_contents .g_explain_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.orange_contents .g_explain_list dt {
  font-weight: 700px;
  padding-bottom: 0.2rem;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.orange_contents .g_explain_list dt:after {
  content: "";
  display: inline-block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  height: 3px;
  background-color: #ea5504;
}
.orange_contents .g_explain_list dd {
  line-height: 1.4;
  margin-bottom: 3rem;
}

.green {
  color: #007e5c;
}

.green_contents .g_explain_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.green_contents .g_explain_list dt {
  font-weight: 700px;
  padding-bottom: 0.2rem;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.green_contents .g_explain_list dt:after {
  content: "";
  display: inline-block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  height: 3px;
  background-color: #007e5c;
}
.green_contents .g_explain_list dd {
  line-height: 1.4;
  margin-bottom: 3rem;
}

.blue {
  color: #0b318f;
}

.blue_contents .g_explain_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.blue_contents .g_explain_list dt {
  font-weight: 700px;
  padding-bottom: 0.2rem;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.blue_contents .g_explain_list dt:after {
  content: "";
  display: inline-block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  height: 3px;
  background-color: #0b318f;
}
.blue_contents .g_explain_list dd {
  line-height: 1.4;
  margin-bottom: 3rem;
}

.yellow {
  color: #fdd000;
}

.yellow_contents .g_explain_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.yellow_contents .g_explain_list dt {
  font-weight: 700px;
  padding-bottom: 0.2rem;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.yellow_contents .g_explain_list dt:after {
  content: "";
  display: inline-block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  height: 3px;
  background-color: #fdd000;
}
.yellow_contents .g_explain_list dd {
  line-height: 1.4;
  margin-bottom: 3rem;
}

.red {
  color: #CC1F3A;
}

.red_contents .g_explain_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.red_contents .g_explain_list dt {
  font-weight: 700px;
  padding-bottom: 0.2rem;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.red_contents .g_explain_list dt:after {
  content: "";
  display: inline-block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  height: 3px;
  background-color: #CC1F3A;
}
.red_contents .g_explain_list dd {
  line-height: 1.4;
  margin-bottom: 3rem;
}

/*==================================

g_annotation_list

==================================*/
.orange {
  color: #ea5504;
}

.orange_contents .g_question_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.orange_contents .g_question_list dt {
  padding: 0 0 0.5rem 1.5rem;
  border-bottom: 1px dotted #707070;
  margin-bottom: 0.5rem;
  position: relative;
  font-weight: 700;
}
.orange_contents .g_question_list dt:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "Q.";
  color: #ea5504;
  font-weight: 700;
}
.orange_contents .g_question_list dd {
  padding: 0 0 0.5rem 1.5rem;
  margin-bottom: 3rem;
  position: relative;
}
.orange_contents .g_question_list dd:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "A.";
  color: #ea5504;
  font-weight: 700;
}

.green {
  color: #007e5c;
}

.green_contents .g_question_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.green_contents .g_question_list dt {
  padding: 0 0 0.5rem 1.5rem;
  border-bottom: 1px dotted #707070;
  margin-bottom: 0.5rem;
  position: relative;
  font-weight: 700;
}
.green_contents .g_question_list dt:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "Q.";
  color: #007e5c;
  font-weight: 700;
}
.green_contents .g_question_list dd {
  padding: 0 0 0.5rem 1.5rem;
  margin-bottom: 3rem;
  position: relative;
}
.green_contents .g_question_list dd:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "A.";
  color: #007e5c;
  font-weight: 700;
}

.blue {
  color: #0b318f;
}

.blue_contents .g_question_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.blue_contents .g_question_list dt {
  padding: 0 0 0.5rem 1.5rem;
  border-bottom: 1px dotted #707070;
  margin-bottom: 0.5rem;
  position: relative;
  font-weight: 700;
}
.blue_contents .g_question_list dt:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "Q.";
  color: #0b318f;
  font-weight: 700;
}
.blue_contents .g_question_list dd {
  padding: 0 0 0.5rem 1.5rem;
  margin-bottom: 3rem;
  position: relative;
}
.blue_contents .g_question_list dd:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "A.";
  color: #0b318f;
  font-weight: 700;
}

.yellow {
  color: #fdd000;
}

.yellow_contents .g_question_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.yellow_contents .g_question_list dt {
  padding: 0 0 0.5rem 1.5rem;
  border-bottom: 1px dotted #707070;
  margin-bottom: 0.5rem;
  position: relative;
  font-weight: 700;
}
.yellow_contents .g_question_list dt:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "Q.";
  color: #fdd000;
  font-weight: 700;
}
.yellow_contents .g_question_list dd {
  padding: 0 0 0.5rem 1.5rem;
  margin-bottom: 3rem;
  position: relative;
}
.yellow_contents .g_question_list dd:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "A.";
  color: #fdd000;
  font-weight: 700;
}

.red {
  color: #CC1F3A;
}

.red_contents .g_question_list {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.red_contents .g_question_list dt {
  padding: 0 0 0.5rem 1.5rem;
  border-bottom: 1px dotted #707070;
  margin-bottom: 0.5rem;
  position: relative;
  font-weight: 700;
}
.red_contents .g_question_list dt:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "Q.";
  color: #CC1F3A;
  font-weight: 700;
}
.red_contents .g_question_list dd {
  padding: 0 0 0.5rem 1.5rem;
  margin-bottom: 3rem;
  position: relative;
}
.red_contents .g_question_list dd:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "A.";
  color: #CC1F3A;
  font-weight: 700;
}

/*==================================

g_arealink1 (エリアリンク（画像＋タイトル＋テキスト縦並び）)

==================================*/
.g_arealink1 {
  margin-top: 3rem;
  margin-bottom: 5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g_arealink1 .item {
  width: 100%;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .g_arealink1 .item {
    margin-bottom: 5rem;
  }
}
.g_arealink1 figure {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .g_arealink1 figure {
    border-radius: 40px;
  }
}
.g_arealink1 figure img {
  background-color: white;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.g_arealink1 figure img:hover {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  opacity: 0.6;
}
.g_arealink1 a.ttl, .g_arealink1 a.g_otherwindow_link, .g_arealink1 p, .g_arealink1 ul {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}
.g_arealink1 a.ttl, .g_arealink1 a.g_otherwindow_link {
  display: block;
  margin-bottom: 1rem;
  text-decoration: underline;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.2;
  position: relative;
  padding: 0 5% 0 0;
}
.g_arealink1 a.ttl:hover, .g_arealink1 a.g_otherwindow_link:hover {
  text-decoration: none;
}
.g_arealink1 a.ttl:after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  content: "";
  width: 24px;
  height: 26px;
  background-image: url(/img/common/icon_black_next.svg);
  background-repeat: no-repeat;
  background-position: right center;
}
.g_arealink1 a.g_otherwindow_link:after {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(/img/common/icon_black_otherwindow.svg);
  background-repeat: no-repeat;
  background-position: 0.2rem bottom;
}
.g_arealink1 ul a.g_otherwindow_link {
  font-weight: normal;
  margin-bottom: 0;
  font-size: 1rem;
  display: inline-block;
}

/*==================================

g_arealink2 (画像＋タイトル＋テキスト横並び)

==================================*/
.g_arealink2 {
  margin-top: 3rem;
  margin-bottom: 5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g_arealink2 figure {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .g_arealink2 figure {
    border-radius: 40px;
    margin-bottom: 1rem;
  }
}
.g_arealink2 figure img {
  background-color: white;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.g_arealink2 figure img:hover {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  opacity: 0.6;
}
.g_arealink2 a.ttl {
  display: block;
  margin-bottom: 1rem;
  text-decoration: underline;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
  padding: 0 5% 0 0;
}
.g_arealink2 a.ttl:after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  content: "";
  width: 24px;
  height: 26px;
  background-image: url(/img/common/icon_black_next.svg);
  background-repeat: no-repeat;
  background-position: right center;
}
.g_arealink2 a.ttl:hover {
  text-decoration: none;
}

/*==================================

g_arealink3 (エリアリンク2カラム)

==================================*/
.g_arealink3 {
  margin-top: 3rem;
  margin-bottom: 5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g_arealink3 .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
  margin-bottom: 3rem;
}
.g_arealink3 figure {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 1rem;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .g_arealink3 figure {
    margin-bottom: 1rem;
  }
}
.g_arealink3 figure img {
  background-color: white;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.g_arealink3 figure img:hover {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  opacity: 0.6;
}
.g_arealink3 .col-md-6 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
}
.g_arealink3 a.ttl {
  width: 100%;
  display: block;
  margin-bottom: 1rem;
  text-decoration: underline;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
  padding: 0 5% 0 0;
}
.g_arealink3 a.ttl:after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  content: "";
  width: 24px;
  height: 26px;
  background-image: url(/img/common/icon_black_next.svg);
  background-repeat: no-repeat;
  background-position: right center;
}
.g_arealink3 a.ttl:hover {
  text-decoration: none;
}

@media all and (-ms-high-contrast: none) {
  .g_arealink3 .item {
    display: block;
  }
  .g_arealink3 .col-md-6 {
    display: block;
  }
}
/*==================================

g_arealink4

==================================*/
.orange_contents .g_arealink4 {
  margin-left: -1.5%;
}
.orange_contents .g_arealink4 .row {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  margin-right: -1.5%;
  margin-left: -1.5%;
}
.orange_contents .g_arealink4 .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  padding-right: 1.5%;
  padding-left: 1.5%;
}
@media screen and (min-width: 768px) {
  .orange_contents .g_arealink4 .item {
    margin-bottom: 1.5rem;
  }
}
.orange_contents .g_arealink4 a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
  border-radius: 20px;
  padding: 1rem 10% 1rem 1rem;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  position: relative;
  border: 3px solid white;
}
.orange_contents .g_arealink4 a:hover {
  -webkit-box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
          box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border: 3px solid #ea5504;
}
.orange_contents .g_arealink4 a:after {
  position: absolute;
  right: 3%;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: inline-block;
  background-image: url(/img/common/icon_orange_next.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 26px;
}
.orange_contents .g_arealink4 a.g_otherwindow_link {
  text-decoration: none;
}
.orange_contents .g_arealink4 a.g_otherwindow_link:after {
  background-image: url(/img/common/icon_orange_otherwindow.svg);
}
.orange_contents .g_arealink4 figure img {
  border-radius: 10px;
}
.orange_contents .g_arealink4 .ttl {
  line-height: 1.2;
  padding-left: 1rem;
}

.green_contents .g_arealink4 {
  margin-left: -1.5%;
}
.green_contents .g_arealink4 .row {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  margin-right: -1.5%;
  margin-left: -1.5%;
}
.green_contents .g_arealink4 .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  padding-right: 1.5%;
  padding-left: 1.5%;
}
@media screen and (min-width: 768px) {
  .green_contents .g_arealink4 .item {
    margin-bottom: 1.5rem;
  }
}
.green_contents .g_arealink4 a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
  border-radius: 20px;
  padding: 1rem 10% 1rem 1rem;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  position: relative;
  border: 3px solid white;
}
.green_contents .g_arealink4 a:hover {
  -webkit-box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
          box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border: 3px solid #007e5c;
}
.green_contents .g_arealink4 a:after {
  position: absolute;
  right: 3%;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: inline-block;
  background-image: url(/img/common/icon_green_next.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 26px;
}
.green_contents .g_arealink4 a.g_otherwindow_link {
  text-decoration: none;
}
.green_contents .g_arealink4 a.g_otherwindow_link:after {
  background-image: url(/img/common/icon_green_otherwindow.svg);
}
.green_contents .g_arealink4 figure img {
  border-radius: 10px;
}
.green_contents .g_arealink4 .ttl {
  line-height: 1.2;
  padding-left: 1rem;
}

.blue_contents .g_arealink4 {
  margin-left: -1.5%;
}
.blue_contents .g_arealink4 .row {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  margin-right: -1.5%;
  margin-left: -1.5%;
}
.blue_contents .g_arealink4 .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  padding-right: 1.5%;
  padding-left: 1.5%;
}
@media screen and (min-width: 768px) {
  .blue_contents .g_arealink4 .item {
    margin-bottom: 1.5rem;
  }
}
.blue_contents .g_arealink4 a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
  border-radius: 20px;
  padding: 1rem 10% 1rem 1rem;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  position: relative;
  border: 3px solid white;
}
.blue_contents .g_arealink4 a:hover {
  -webkit-box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
          box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border: 3px solid #0b318f;
}
.blue_contents .g_arealink4 a:after {
  position: absolute;
  right: 3%;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: inline-block;
  background-image: url(/img/common/icon_blue_next.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 26px;
}
.blue_contents .g_arealink4 a.g_otherwindow_link {
  text-decoration: none;
}
.blue_contents .g_arealink4 a.g_otherwindow_link:after {
  background-image: url(/img/common/icon_blue_otherwindow.svg);
}
.blue_contents .g_arealink4 figure img {
  border-radius: 10px;
}
.blue_contents .g_arealink4 .ttl {
  line-height: 1.2;
  padding-left: 1rem;
}

.yellow_contents .g_arealink4 {
  margin-left: -1.5%;
}
.yellow_contents .g_arealink4 .row {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  margin-right: -1.5%;
  margin-left: -1.5%;
}
.yellow_contents .g_arealink4 .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  padding-right: 1.5%;
  padding-left: 1.5%;
}
@media screen and (min-width: 768px) {
  .yellow_contents .g_arealink4 .item {
    margin-bottom: 1.5rem;
  }
}
.yellow_contents .g_arealink4 a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
  border-radius: 20px;
  padding: 1rem 10% 1rem 1rem;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  position: relative;
  border: 3px solid white;
}
.yellow_contents .g_arealink4 a:hover {
  -webkit-box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
          box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border: 3px solid #fdd000;
}
.yellow_contents .g_arealink4 a:after {
  position: absolute;
  right: 3%;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: inline-block;
  background-image: url(/img/common/icon_yellow_next.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 26px;
}
.yellow_contents .g_arealink4 a.g_otherwindow_link {
  text-decoration: none;
}
.yellow_contents .g_arealink4 a.g_otherwindow_link:after {
  background-image: url(/img/common/icon_yellow_otherwindow.svg);
}
.yellow_contents .g_arealink4 figure img {
  border-radius: 10px;
}
.yellow_contents .g_arealink4 .ttl {
  line-height: 1.2;
  padding-left: 1rem;
}

.red_contents .g_arealink4 {
  margin-left: -1.5%;
}
.red_contents .g_arealink4 .row {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  margin-right: -1.5%;
  margin-left: -1.5%;
}
.red_contents .g_arealink4 .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  padding-right: 1.5%;
  padding-left: 1.5%;
}
@media screen and (min-width: 768px) {
  .red_contents .g_arealink4 .item {
    margin-bottom: 1.5rem;
  }
}
.red_contents .g_arealink4 a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
  border-radius: 20px;
  padding: 1rem 10% 1rem 1rem;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  position: relative;
  border: 3px solid white;
}
.red_contents .g_arealink4 a:hover {
  -webkit-box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
          box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border: 3px solid #CC1F3A;
}
.red_contents .g_arealink4 a:after {
  position: absolute;
  right: 3%;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: inline-block;
  background-image: url(/img/common/icon_red_next.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 26px;
}
.red_contents .g_arealink4 a.g_otherwindow_link {
  text-decoration: none;
}
.red_contents .g_arealink4 a.g_otherwindow_link:after {
  background-image: url(/img/common/icon_red_otherwindow.svg);
}
.red_contents .g_arealink4 figure img {
  border-radius: 10px;
}
.red_contents .g_arealink4 .ttl {
  line-height: 1.2;
  padding-left: 1rem;
}

/*==================================

g_sns_share

==================================*/
.g_sns_share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 2rem auto;
}
.g_sns_share li {
  margin: 0 0.3rem;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
}
.g_sns_share li:hover {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
          box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

/*==================================

g_bn_link

==================================*/
.g_bn_link {
  max-width: 980px;
  margin: 2rem auto;
}
.g_bn_link a {
  display: block;
  margin: 0 auto;
}

/*==================================

g_normal_form //formの幅

==================================*/
.g_normal_form {
  max-width: 910px;
  margin: 0 auto;
}

/*==================================

g_required //必須アイコン

==================================*/
.g_required {
  background-color: black;
  color: white;
  display: inline-block;
  padding: 0 1rem;
  border-radius: 20px;
  margin-left: 1rem;
}

/*==================================

g_form_step //ステップ

==================================*/
.orange_contents .g_form_step {
  width: 90%;
  max-width: 680px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  position: relative;
  margin: 0 auto 2rem auto;
}
@media all and (-ms-high-contrast: none) {
  .orange_contents .g_form_step {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}
@media screen and (min-width: 576px) {
  .orange_contents .g_form_step {
    margin: 0 auto 3rem auto;
  }
}
.orange_contents .g_form_step .dot_border {
  z-index: -1;
  color: #ea5504;
  position: absolute;
  width: 100%;
  max-width: 680px;
  top: 50%;
}
@media all and (-ms-high-contrast: none) {
  .orange_contents .g_form_step .dot_border {
    max-width: 400px;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.orange_contents .g_form_step .dot_border:after {
  display: block;
  content: "";
  width: 100%;
  height: 8px;
  background: -webkit-radial-gradient(circle farthest-side, #ea5504, #ea5504 50%, #fff 50%, #fff);
  background: radial-gradient(circle farthest-side, #ea5504, #ea5504 50%, #fff 50%, #fff);
  background-size: 8px 8px;
}
.orange_contents .g_form_step li {
  margin: 0;
  border-radius: 100px;
  width: 80px;
  height: 80px;
  padding: 1.5rem;
  font-weight: 700;
  text-align: center;
  background-color: #F6F6F6;
  color: #A0A0A0;
  line-height: 1.2;
}
@media screen and (min-width: 576px) {
  .orange_contents .g_form_step li {
    width: 110px;
    height: 110px;
  }
}
.orange_contents .g_form_step li span {
  font-size: 1.6rem;
  font-family: "Lato", serif;
  display: block;
}
@media screen and (min-width: 576px) {
  .orange_contents .g_form_step li span {
    font-size: 2rem;
  }
}
.orange_contents .g_form_step li.active {
  background-color: #ea5504;
  color: white;
}

.green_contents .g_form_step {
  width: 90%;
  max-width: 680px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  position: relative;
  margin: 0 auto 2rem auto;
}
@media all and (-ms-high-contrast: none) {
  .green_contents .g_form_step {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}
@media screen and (min-width: 576px) {
  .green_contents .g_form_step {
    margin: 0 auto 3rem auto;
  }
}
.green_contents .g_form_step .dot_border {
  z-index: -1;
  color: #007e5c;
  position: absolute;
  width: 100%;
  max-width: 680px;
  top: 50%;
}
@media all and (-ms-high-contrast: none) {
  .green_contents .g_form_step .dot_border {
    max-width: 400px;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.green_contents .g_form_step .dot_border:after {
  display: block;
  content: "";
  width: 100%;
  height: 8px;
  background: -webkit-radial-gradient(circle farthest-side, #007e5c, #007e5c 50%, #fff 50%, #fff);
  background: radial-gradient(circle farthest-side, #007e5c, #007e5c 50%, #fff 50%, #fff);
  background-size: 8px 8px;
}
.green_contents .g_form_step li {
  margin: 0;
  border-radius: 100px;
  width: 80px;
  height: 80px;
  padding: 1.5rem;
  font-weight: 700;
  text-align: center;
  background-color: #F6F6F6;
  color: #A0A0A0;
  line-height: 1.2;
}
@media screen and (min-width: 576px) {
  .green_contents .g_form_step li {
    width: 110px;
    height: 110px;
  }
}
.green_contents .g_form_step li span {
  font-size: 1.6rem;
  font-family: "Lato", serif;
  display: block;
}
@media screen and (min-width: 576px) {
  .green_contents .g_form_step li span {
    font-size: 2rem;
  }
}
.green_contents .g_form_step li.active {
  background-color: #007e5c;
  color: white;
}

.blue_contents .g_form_step {
  width: 90%;
  max-width: 680px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  position: relative;
  margin: 0 auto 2rem auto;
}
@media all and (-ms-high-contrast: none) {
  .blue_contents .g_form_step {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}
@media screen and (min-width: 576px) {
  .blue_contents .g_form_step {
    margin: 0 auto 3rem auto;
  }
}
.blue_contents .g_form_step .dot_border {
  z-index: -1;
  color: #0b318f;
  position: absolute;
  width: 100%;
  max-width: 680px;
  top: 50%;
}
@media all and (-ms-high-contrast: none) {
  .blue_contents .g_form_step .dot_border {
    max-width: 400px;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.blue_contents .g_form_step .dot_border:after {
  display: block;
  content: "";
  width: 100%;
  height: 8px;
  background: -webkit-radial-gradient(circle farthest-side, #0b318f, #0b318f 50%, #fff 50%, #fff);
  background: radial-gradient(circle farthest-side, #0b318f, #0b318f 50%, #fff 50%, #fff);
  background-size: 8px 8px;
}
.blue_contents .g_form_step li {
  margin: 0;
  border-radius: 100px;
  width: 80px;
  height: 80px;
  padding: 1.5rem;
  font-weight: 700;
  text-align: center;
  background-color: #F6F6F6;
  color: #A0A0A0;
  line-height: 1.2;
}
@media screen and (min-width: 576px) {
  .blue_contents .g_form_step li {
    width: 110px;
    height: 110px;
  }
}
.blue_contents .g_form_step li span {
  font-size: 1.6rem;
  font-family: "Lato", serif;
  display: block;
}
@media screen and (min-width: 576px) {
  .blue_contents .g_form_step li span {
    font-size: 2rem;
  }
}
.blue_contents .g_form_step li.active {
  background-color: #0b318f;
  color: white;
}

.yellow_contents .g_form_step {
  width: 90%;
  max-width: 680px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  position: relative;
  margin: 0 auto 2rem auto;
}
@media all and (-ms-high-contrast: none) {
  .yellow_contents .g_form_step {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}
@media screen and (min-width: 576px) {
  .yellow_contents .g_form_step {
    margin: 0 auto 3rem auto;
  }
}
.yellow_contents .g_form_step .dot_border {
  z-index: -1;
  color: #fdd000;
  position: absolute;
  width: 100%;
  max-width: 680px;
  top: 50%;
}
@media all and (-ms-high-contrast: none) {
  .yellow_contents .g_form_step .dot_border {
    max-width: 400px;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.yellow_contents .g_form_step .dot_border:after {
  display: block;
  content: "";
  width: 100%;
  height: 8px;
  background: -webkit-radial-gradient(circle farthest-side, #fdd000, #fdd000 50%, #fff 50%, #fff);
  background: radial-gradient(circle farthest-side, #fdd000, #fdd000 50%, #fff 50%, #fff);
  background-size: 8px 8px;
}
.yellow_contents .g_form_step li {
  margin: 0;
  border-radius: 100px;
  width: 80px;
  height: 80px;
  padding: 1.5rem;
  font-weight: 700;
  text-align: center;
  background-color: #F6F6F6;
  color: #A0A0A0;
  line-height: 1.2;
}
@media screen and (min-width: 576px) {
  .yellow_contents .g_form_step li {
    width: 110px;
    height: 110px;
  }
}
.yellow_contents .g_form_step li span {
  font-size: 1.6rem;
  font-family: "Lato", serif;
  display: block;
}
@media screen and (min-width: 576px) {
  .yellow_contents .g_form_step li span {
    font-size: 2rem;
  }
}
.yellow_contents .g_form_step li.active {
  background-color: #fdd000;
  color: white;
}

.red_contents .g_form_step {
  width: 90%;
  max-width: 680px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  position: relative;
  margin: 0 auto 2rem auto;
}
@media all and (-ms-high-contrast: none) {
  .red_contents .g_form_step {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}
@media screen and (min-width: 576px) {
  .red_contents .g_form_step {
    margin: 0 auto 3rem auto;
  }
}
.red_contents .g_form_step .dot_border {
  z-index: -1;
  color: #CC1F3A;
  position: absolute;
  width: 100%;
  max-width: 680px;
  top: 50%;
}
@media all and (-ms-high-contrast: none) {
  .red_contents .g_form_step .dot_border {
    max-width: 400px;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.red_contents .g_form_step .dot_border:after {
  display: block;
  content: "";
  width: 100%;
  height: 8px;
  background: -webkit-radial-gradient(circle farthest-side, #CC1F3A, #CC1F3A 50%, #fff 50%, #fff);
  background: radial-gradient(circle farthest-side, #CC1F3A, #CC1F3A 50%, #fff 50%, #fff);
  background-size: 8px 8px;
}
.red_contents .g_form_step li {
  margin: 0;
  border-radius: 100px;
  width: 80px;
  height: 80px;
  padding: 1.5rem;
  font-weight: 700;
  text-align: center;
  background-color: #F6F6F6;
  color: #A0A0A0;
  line-height: 1.2;
}
@media screen and (min-width: 576px) {
  .red_contents .g_form_step li {
    width: 110px;
    height: 110px;
  }
}
.red_contents .g_form_step li span {
  font-size: 1.6rem;
  font-family: "Lato", serif;
  display: block;
}
@media screen and (min-width: 576px) {
  .red_contents .g_form_step li span {
    font-size: 2rem;
  }
}
.red_contents .g_form_step li.active {
  background-color: #CC1F3A;
  color: white;
}

/*==================================

g_form_item_error //エラー

==================================*/
.g_form_item_error {
  width: 100%;
}
.g_form_item_error li {
  background-color: #FFF6D6;
  border: 1px solid #CE0B15;
  color: #CE0B15;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.3rem 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

/*==================================

input type radio //ラジオボタン

==================================*/
.orange_contents .g_radio_box {
  margin-bottom: 1rem;
  margin-right: 2rem;
  display: inline-block;
}
.orange_contents input[type=radio] {
  position: absolute;
  opacity: 0;
}
.orange_contents input[type=radio] + .g_radio_label:before {
  content: "";
  background: #F6F6F6;
  border-radius: 100%;
  border: 1px solid #707070;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  margin-right: 0.3rem;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}
.orange_contents input[type=radio]:checked + .g_radio_label:before {
  background-color: #ea5504;
  -webkit-box-shadow: inset 0 0 0 4px #F6F6F6;
          box-shadow: inset 0 0 0 4px #F6F6F6;
}
.orange_contents input[type=radio]:focus + .g_radio_label:before {
  outline: none;
  border-color: #ea5504;
}
.orange_contents input[type=radio]:disabled + .g_radio_label:before {
  -webkit-box-shadow: inset 0 0 0 4px #F6F6F6;
          box-shadow: inset 0 0 0 4px #F6F6F6;
  border-color: #F6F6F6;
  background: #F6F6F6;
}
.orange_contents input[type=radio] + .g_radio_label:empty:before {
  margin-right: 0;
}

.green_contents .g_radio_box {
  margin-bottom: 1rem;
  margin-right: 2rem;
  display: inline-block;
}
.green_contents input[type=radio] {
  position: absolute;
  opacity: 0;
}
.green_contents input[type=radio] + .g_radio_label:before {
  content: "";
  background: #F6F6F6;
  border-radius: 100%;
  border: 1px solid #707070;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  margin-right: 0.3rem;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}
.green_contents input[type=radio]:checked + .g_radio_label:before {
  background-color: #007e5c;
  -webkit-box-shadow: inset 0 0 0 4px #F6F6F6;
          box-shadow: inset 0 0 0 4px #F6F6F6;
}
.green_contents input[type=radio]:focus + .g_radio_label:before {
  outline: none;
  border-color: #007e5c;
}
.green_contents input[type=radio]:disabled + .g_radio_label:before {
  -webkit-box-shadow: inset 0 0 0 4px #F6F6F6;
          box-shadow: inset 0 0 0 4px #F6F6F6;
  border-color: #F6F6F6;
  background: #F6F6F6;
}
.green_contents input[type=radio] + .g_radio_label:empty:before {
  margin-right: 0;
}

.blue_contents .g_radio_box {
  margin-bottom: 1rem;
  margin-right: 2rem;
  display: inline-block;
}
.blue_contents input[type=radio] {
  position: absolute;
  opacity: 0;
}
.blue_contents input[type=radio] + .g_radio_label:before {
  content: "";
  background: #F6F6F6;
  border-radius: 100%;
  border: 1px solid #707070;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  margin-right: 0.3rem;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}
.blue_contents input[type=radio]:checked + .g_radio_label:before {
  background-color: #0b318f;
  -webkit-box-shadow: inset 0 0 0 4px #F6F6F6;
          box-shadow: inset 0 0 0 4px #F6F6F6;
}
.blue_contents input[type=radio]:focus + .g_radio_label:before {
  outline: none;
  border-color: #0b318f;
}
.blue_contents input[type=radio]:disabled + .g_radio_label:before {
  -webkit-box-shadow: inset 0 0 0 4px #F6F6F6;
          box-shadow: inset 0 0 0 4px #F6F6F6;
  border-color: #F6F6F6;
  background: #F6F6F6;
}
.blue_contents input[type=radio] + .g_radio_label:empty:before {
  margin-right: 0;
}

.yellow_contents .g_radio_box {
  margin-bottom: 1rem;
  margin-right: 2rem;
  display: inline-block;
}
.yellow_contents input[type=radio] {
  position: absolute;
  opacity: 0;
}
.yellow_contents input[type=radio] + .g_radio_label:before {
  content: "";
  background: #F6F6F6;
  border-radius: 100%;
  border: 1px solid #707070;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  margin-right: 0.3rem;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}
.yellow_contents input[type=radio]:checked + .g_radio_label:before {
  background-color: #fdd000;
  -webkit-box-shadow: inset 0 0 0 4px #F6F6F6;
          box-shadow: inset 0 0 0 4px #F6F6F6;
}
.yellow_contents input[type=radio]:focus + .g_radio_label:before {
  outline: none;
  border-color: #fdd000;
}
.yellow_contents input[type=radio]:disabled + .g_radio_label:before {
  -webkit-box-shadow: inset 0 0 0 4px #F6F6F6;
          box-shadow: inset 0 0 0 4px #F6F6F6;
  border-color: #F6F6F6;
  background: #F6F6F6;
}
.yellow_contents input[type=radio] + .g_radio_label:empty:before {
  margin-right: 0;
}

.red_contents .g_radio_box {
  margin-bottom: 1rem;
  margin-right: 2rem;
  display: inline-block;
}
.red_contents input[type=radio] {
  position: absolute;
  opacity: 0;
}
.red_contents input[type=radio] + .g_radio_label:before {
  content: "";
  background: #F6F6F6;
  border-radius: 100%;
  border: 1px solid #707070;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  margin-right: 0.3rem;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}
.red_contents input[type=radio]:checked + .g_radio_label:before {
  background-color: #CC1F3A;
  -webkit-box-shadow: inset 0 0 0 4px #F6F6F6;
          box-shadow: inset 0 0 0 4px #F6F6F6;
}
.red_contents input[type=radio]:focus + .g_radio_label:before {
  outline: none;
  border-color: #CC1F3A;
}
.red_contents input[type=radio]:disabled + .g_radio_label:before {
  -webkit-box-shadow: inset 0 0 0 4px #F6F6F6;
          box-shadow: inset 0 0 0 4px #F6F6F6;
  border-color: #F6F6F6;
  background: #F6F6F6;
}
.red_contents input[type=radio] + .g_radio_label:empty:before {
  margin-right: 0;
}

/*==================================

input type checkbox

==================================*/
.orange_contents .g_checkbox_box {
  display: inline-block;
  margin-bottom: 1rem;
}
.orange_contents .g_checkbox_box input[type=checkbox] {
  display: none;
}
.orange_contents .g_checkbox_box label {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 45px;
  position: relative;
  width: auto;
}
.orange_contents .g_checkbox_box label::before {
  background: #F6F6F6;
  border: 1px solid #707070;
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  left: 5px;
  margin-top: -16px;
  position: absolute;
  top: 50%;
}
.orange_contents .g_checkbox_box label::after {
  border-right: 6px solid #ea5504;
  border-bottom: 6px solid #ea5504;
  content: "";
  display: block;
  height: 24px;
  left: 15px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 30%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 12px;
}
.orange_contents .g_checkbox_box input[type=checkbox]:checked + label::after {
  opacity: 1;
}

.green_contents .g_checkbox_box {
  display: inline-block;
  margin-bottom: 1rem;
}
.green_contents .g_checkbox_box input[type=checkbox] {
  display: none;
}
.green_contents .g_checkbox_box label {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 45px;
  position: relative;
  width: auto;
}
.green_contents .g_checkbox_box label::before {
  background: #F6F6F6;
  border: 1px solid #707070;
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  left: 5px;
  margin-top: -16px;
  position: absolute;
  top: 50%;
}
.green_contents .g_checkbox_box label::after {
  border-right: 6px solid #007e5c;
  border-bottom: 6px solid #007e5c;
  content: "";
  display: block;
  height: 24px;
  left: 15px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 30%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 12px;
}
.green_contents .g_checkbox_box input[type=checkbox]:checked + label::after {
  opacity: 1;
}

.blue_contents .g_checkbox_box {
  display: inline-block;
  margin-bottom: 1rem;
}
.blue_contents .g_checkbox_box input[type=checkbox] {
  display: none;
}
.blue_contents .g_checkbox_box label {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 45px;
  position: relative;
  width: auto;
}
.blue_contents .g_checkbox_box label::before {
  background: #F6F6F6;
  border: 1px solid #707070;
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  left: 5px;
  margin-top: -16px;
  position: absolute;
  top: 50%;
}
.blue_contents .g_checkbox_box label::after {
  border-right: 6px solid #0b318f;
  border-bottom: 6px solid #0b318f;
  content: "";
  display: block;
  height: 24px;
  left: 15px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 30%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 12px;
}
.blue_contents .g_checkbox_box input[type=checkbox]:checked + label::after {
  opacity: 1;
}

.yellow_contents .g_checkbox_box {
  display: inline-block;
  margin-bottom: 1rem;
}
.yellow_contents .g_checkbox_box input[type=checkbox] {
  display: none;
}
.yellow_contents .g_checkbox_box label {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 45px;
  position: relative;
  width: auto;
}
.yellow_contents .g_checkbox_box label::before {
  background: #F6F6F6;
  border: 1px solid #707070;
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  left: 5px;
  margin-top: -16px;
  position: absolute;
  top: 50%;
}
.yellow_contents .g_checkbox_box label::after {
  border-right: 6px solid #fdd000;
  border-bottom: 6px solid #fdd000;
  content: "";
  display: block;
  height: 24px;
  left: 15px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 30%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 12px;
}
.yellow_contents .g_checkbox_box input[type=checkbox]:checked + label::after {
  opacity: 1;
}

.red_contents .g_checkbox_box {
  display: inline-block;
  margin-bottom: 1rem;
}
.red_contents .g_checkbox_box input[type=checkbox] {
  display: none;
}
.red_contents .g_checkbox_box label {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 45px;
  position: relative;
  width: auto;
}
.red_contents .g_checkbox_box label::before {
  background: #F6F6F6;
  border: 1px solid #707070;
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  left: 5px;
  margin-top: -16px;
  position: absolute;
  top: 50%;
}
.red_contents .g_checkbox_box label::after {
  border-right: 6px solid #CC1F3A;
  border-bottom: 6px solid #CC1F3A;
  content: "";
  display: block;
  height: 24px;
  left: 15px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 30%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 12px;
}
.red_contents .g_checkbox_box input[type=checkbox]:checked + label::after {
  opacity: 1;
}

/*==================================

input type text

==================================*/
input[type=text] {
  background-color: #F6F6F6;
  border: 1px solid #707070;
  border-radius: 10px;
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  height: 40px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 576px) {
  input[type=text] {
    height: 60px;
  }
}

/*==================================

セレクトボックス

==================================*/
select {
  background-color: #F6F6F6;
  border: 1px solid #707070;
  border-radius: 10px;
  width: 100%;
  padding: 0.3rem;
  font-size: 1rem;
  height: 40px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 576px) {
  select {
    height: 60px;
    padding: 1rem;
  }
}

/*==================================

テキストエリア

==================================*/
textarea {
  background-color: #F6F6F6;
  border: 1px solid #707070;
  border-radius: 10px;
  width: 100%;
  height: 200px;
  padding: 1rem;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/*==================================

ハーフサイズ

==================================*/
input[type=text].g_form_half, select.g_form_half, textarea.g_form_half {
  width: 48%;
}

input[type=text].g_form_half_left, select.g_form_half_left, textarea.g_form_half_left {
  margin-right: 2%;
  display: inline-block;
}

/*==================================

g_form_btn_wrap 横並びボタン

==================================*/
.g_form_btn_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.g_form_btn_wrap button {
  display: block;
  margin: 1rem 0.5rem;
  width: auto;
}

.g_back_btn {
  padding: 0.5rem 2rem 0.5rem 3rem;
  border: 5px solid #A0A0A0;
  display: table;
  width: auto;
  background-color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  width: auto;
  text-align: center;
  position: relative;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
  margin: 2rem auto;
}
@media screen and (min-width: 768px) {
  .g_back_btn {
    width: auto;
    font-size: 1.2rem;
    padding: 1.2rem 5rem 1.2rem 6rem;
    margin: 1.5rem auto;
  }
}
.g_back_btn:before {
  position: absolute;
  background-image: url(/img/common/icon_gray_prev.svg);
  left: 5%;
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 21px;
}
@media screen and (min-width: 768px) {
  .g_back_btn:before {
    height: 26px;
  }
}
.g_back_btn:after {
  background-image: none;
}
.g_back_btn:hover {
  background-color: #A0A0A0;
  color: white;
  -webkit-box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
          box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.g_back_btn:hover:before {
  background-image: url(/img/common/icon_white_prev.svg);
}

.g_inactive_btn {
  display: table;
  background-color: #ccc;
  border: none;
  width: auto;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  width: auto;
  padding: 1rem 3rem 1rem 2rem;
  text-align: center;
  position: relative;
  cursor: inherit;
  margin: 2rem auto;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .g_inactive_btn {
    width: auto;
    font-size: 1.2rem;
    padding: 1.2rem 6rem 1.2rem 5rem;
    margin: 1.5rem auto;
  }
}
.g_inactive_btn:after {
  background-image: url(/img/common/icon_black_next.svg);
  position: absolute;
  right: 10%;
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 21px;
}
@media screen and (min-width: 768px) {
  .g_inactive_btn:after {
    height: 30px;
  }
}

/*==================================

g_figure

==================================*/
.g_figure {
  margin: 0 auto;
}
.g_figure img {
  border-radius: 1rem;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .g_figure img {
    border-radius: 2rem;
  }
}
.g_figure figcaption {
  font-size: 0.8rem;
}

/*==================================

g_figure_half

==================================*/
.g_figure_half {
  margin-bottom: 3rem;
}
.g_figure_half img {
  border-radius: 1rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .g_figure_half img {
    border-radius: 2rem;
  }
}
.g_figure_half figcaption {
  font-size: 0.8rem;
}

/*==================================

g_figure_half

==================================*/
.g_figure_half_float {
  margin-bottom: 3rem;
  margin-right: -3%;
  margin-left: -3%;
}
.g_figure_half_float:before, .g_figure_half_float:after {
  content: " ";
  display: table;
}
.g_figure_half_float:after {
  clear: both;
}
.g_figure_half_float {
  *zoom: 1;
}
.g_figure_half_float img {
  border-radius: 1rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .g_figure_half_float img {
    border-radius: 2rem;
  }
}
.g_figure_half_float figcaption {
  font-size: 0.8rem;
}
.g_figure_half_float .f_left {
  padding-right: 3%;
  padding-left: 3%;
}
@media screen and (min-width: 768px) {
  .g_figure_half_float .f_left {
    float: left;
    width: 50%;
    margin-right: 3%;
  }
}
.g_figure_half_float .f_right {
  padding-right: 3%;
  padding-left: 3%;
}
@media screen and (min-width: 768px) {
  .g_figure_half_float .f_right {
    float: right;
    width: 50%;
    margin-left: 3%;
  }
}
.g_figure_half_float .f_around {
  padding-right: 3%;
  padding-left: 3%;
}

/*==================================

g_carousel   //slickカルーセル設定

==================================*/
.g_carousel {
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.slick-slider li, .slick-slider img {
  border-radius: 1rem;
}

.slick-thumb li {
  border-radius: 1rem;
  padding: 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .slick-thumb li {
    padding: 0 0.1rem;
  }
}
.slick-thumb img {
  border-radius: 1rem;
  cursor: pointer;
}

.orange_contents .g_carousel button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.orange_contents .g_carousel .slide-arrow {
  position: absolute;
  top: 50%;
  margin-top: -15px;
}
.orange_contents .g_carousel .prev-arrow {
  cursor: pointer;
  left: 0;
  z-index: 2;
  background-color: white;
  border-radius: 40px;
  position: absolute;
  background-image: url(/img/common/icon_orange_prev.svg);
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  width: 26px;
  height: 26px;
}
@media screen and (min-width: 768px) {
  .orange_contents .g_carousel .prev-arrow {
    width: 40px;
    height: 40px;
  }
}
.orange_contents .g_carousel .next-arrow {
  cursor: pointer;
  right: 0;
  background-color: white;
  border-radius: 40px;
  position: absolute;
  background-image: url(/img/common/icon_orange_next.svg);
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  width: 26px;
  height: 26px;
}
@media screen and (min-width: 768px) {
  .orange_contents .g_carousel .next-arrow {
    width: 40px;
    height: 40px;
  }
}
.orange_contents .g_carousel .slick-dots li button:before {
  font-size: 15px;
}
.orange_contents .g_carousel .slick-dots li.slick-active button:before {
  color: #ea5504;
}

.green_contents .g_carousel button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.green_contents .g_carousel .slide-arrow {
  position: absolute;
  top: 50%;
  margin-top: -15px;
}
.green_contents .g_carousel .prev-arrow {
  cursor: pointer;
  left: 0;
  z-index: 2;
  background-color: white;
  border-radius: 40px;
  position: absolute;
  background-image: url(/img/common/icon_green_prev.svg);
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  width: 26px;
  height: 26px;
}
@media screen and (min-width: 768px) {
  .green_contents .g_carousel .prev-arrow {
    width: 40px;
    height: 40px;
  }
}
.green_contents .g_carousel .next-arrow {
  cursor: pointer;
  right: 0;
  background-color: white;
  border-radius: 40px;
  position: absolute;
  background-image: url(/img/common/icon_green_next.svg);
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  width: 26px;
  height: 26px;
}
@media screen and (min-width: 768px) {
  .green_contents .g_carousel .next-arrow {
    width: 40px;
    height: 40px;
  }
}
.green_contents .g_carousel .slick-dots li button:before {
  font-size: 15px;
}
.green_contents .g_carousel .slick-dots li.slick-active button:before {
  color: #007e5c;
}

.blue_contents .g_carousel button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.blue_contents .g_carousel .slide-arrow {
  position: absolute;
  top: 50%;
  margin-top: -15px;
}
.blue_contents .g_carousel .prev-arrow {
  cursor: pointer;
  left: 0;
  z-index: 2;
  background-color: white;
  border-radius: 40px;
  position: absolute;
  background-image: url(/img/common/icon_blue_prev.svg);
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  width: 26px;
  height: 26px;
}
@media screen and (min-width: 768px) {
  .blue_contents .g_carousel .prev-arrow {
    width: 40px;
    height: 40px;
  }
}
.blue_contents .g_carousel .next-arrow {
  cursor: pointer;
  right: 0;
  background-color: white;
  border-radius: 40px;
  position: absolute;
  background-image: url(/img/common/icon_blue_next.svg);
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  width: 26px;
  height: 26px;
}
@media screen and (min-width: 768px) {
  .blue_contents .g_carousel .next-arrow {
    width: 40px;
    height: 40px;
  }
}
.blue_contents .g_carousel .slick-dots li button:before {
  font-size: 15px;
}
.blue_contents .g_carousel .slick-dots li.slick-active button:before {
  color: #0b318f;
}

.yellow_contents .g_carousel button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.yellow_contents .g_carousel .slide-arrow {
  position: absolute;
  top: 50%;
  margin-top: -15px;
}
.yellow_contents .g_carousel .prev-arrow {
  cursor: pointer;
  left: 0;
  z-index: 2;
  background-color: white;
  border-radius: 40px;
  position: absolute;
  background-image: url(/img/common/icon_yellow_prev.svg);
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  width: 26px;
  height: 26px;
}
@media screen and (min-width: 768px) {
  .yellow_contents .g_carousel .prev-arrow {
    width: 40px;
    height: 40px;
  }
}
.yellow_contents .g_carousel .next-arrow {
  cursor: pointer;
  right: 0;
  background-color: white;
  border-radius: 40px;
  position: absolute;
  background-image: url(/img/common/icon_yellow_next.svg);
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  width: 26px;
  height: 26px;
}
@media screen and (min-width: 768px) {
  .yellow_contents .g_carousel .next-arrow {
    width: 40px;
    height: 40px;
  }
}
.yellow_contents .g_carousel .slick-dots li button:before {
  font-size: 15px;
}
.yellow_contents .g_carousel .slick-dots li.slick-active button:before {
  color: #fdd000;
}

.red_contents .g_carousel button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.red_contents .g_carousel .slide-arrow {
  position: absolute;
  top: 50%;
  margin-top: -15px;
}
.red_contents .g_carousel .prev-arrow {
  cursor: pointer;
  left: 0;
  z-index: 2;
  background-color: white;
  border-radius: 40px;
  position: absolute;
  background-image: url(/img/common/icon_red_prev.svg);
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  width: 26px;
  height: 26px;
}
@media screen and (min-width: 768px) {
  .red_contents .g_carousel .prev-arrow {
    width: 40px;
    height: 40px;
  }
}
.red_contents .g_carousel .next-arrow {
  cursor: pointer;
  right: 0;
  background-color: white;
  border-radius: 40px;
  position: absolute;
  background-image: url(/img/common/icon_red_next.svg);
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  width: 26px;
  height: 26px;
}
@media screen and (min-width: 768px) {
  .red_contents .g_carousel .next-arrow {
    width: 40px;
    height: 40px;
  }
}
.red_contents .g_carousel .slick-dots li button:before {
  font-size: 15px;
}
.red_contents .g_carousel .slick-dots li.slick-active button:before {
  color: #CC1F3A;
}

/*==================================

g_modal_photo   //写真を拡大するmodal

==================================*/
.g_modal_photo {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.g_modal_photo li {
  position: relative;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .g_modal_photo li {
    margin-bottom: 1rem;
  }
}
.g_modal_photo li img {
  border-radius: 1rem;
}
.g_modal_photo li .icon_modal {
  display: block;
  position: absolute;
  background-image: url(/img/common/icon_black_modal.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px auto;
  right: 1rem;
  bottom: 0.5rem;
  background-color: white;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
}
.g_modal_photo .g_modal_photo_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 100;
}
.g_modal_photo .bigimg {
  position: absolute;
  width: 96%;
  max-width: 800px;
  top: 80px;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
}
.g_modal_photo .bigimg img {
  border-radius: 10px;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .g_modal_photo .bigimg img {
    border-radius: 20px;
    margin-bottom: 0.5rem;
  }
}
.g_modal_photo .close-btn {
  position: absolute;
  right: 20px;
  top: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  background-color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.g_modal_photo .close-btn img {
  width: 30px;
  height: 30px;
  display: block;
}

/*==================================

   //コンテンツを表示するmodal

==================================*/
.g_modal_wrap {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100;
  width: 100%;
  height: 100vh;
}
.g_modal_wrap .g_modal_bg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 100;
  width: 100%;
  height: 100vh;
}
.g_modal_wrap .g_modal_inner {
  background: #fff;
  padding: 10px;
  width: 90%;
  max-width: 1200px;
  border-radius: 1rem;
  margin: 2rem auto;
  max-height: 90%;
  overflow-y: scroll;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  scrollbar-width: none;
}
@media screen and (min-width: 768px) {
  .g_modal_wrap .g_modal_inner {
    padding: 40px;
  }
}
.g_modal_wrap .g_modal_inner img {
  display: block;
  margin: 0 auto;
}
.g_modal_wrap .js-modal-close {
  position: absolute;
  right: 20px;
  top: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  background-color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.g_modal_wrap .js-modal-close img {
  width: 30px;
  height: 30px;
  display: block;
}

.g_modal_inner::-webkit-scrollbar {
  display: none;
}

/*==================================

g_accordion1   //アコーディオンボックス1

==================================*/
.orange_contents .g_accordion1 {
  margin-bottom: 2rem;
  margin-top: 2rem;
  line-height: 1.4;
}
.orange_contents .g_accordion1 dl {
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: 3px solid white;
}
.orange_contents .g_accordion1 dl:hover {
  -webkit-box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
          box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: 3px solid #ea5504;
}
.orange_contents .g_accordion1 .g_accordion_title {
  position: relative;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  padding-right: 2rem;
}
.orange_contents .g_accordion1 .toggle_btn {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #ea5504;
  display: block;
  width: 24px;
  height: 24px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
}
.orange_contents .g_accordion1 .toggle_btn:before, .orange_contents .g_accordion1 .toggle_btn:after {
  display: block;
  content: "";
  background-color: #fff;
  position: absolute;
  width: 10px;
  height: 2px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.orange_contents .g_accordion1 .toggle_btn:before {
  width: 2px;
  height: 10px;
}
.orange_contents .g_accordion1 .g_accordion_title.selected .toggle_btn:before {
  content: normal;
}
.orange_contents .g_accordion1 dd {
  display: none;
  padding: 1.5rem;
  background-color: #F6F6F6;
  margin-top: 1rem;
  border-radius: 1rem;
}

.green_contents .g_accordion1 {
  margin-bottom: 2rem;
  margin-top: 2rem;
  line-height: 1.4;
}
.green_contents .g_accordion1 dl {
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: 3px solid white;
}
.green_contents .g_accordion1 dl:hover {
  -webkit-box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
          box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: 3px solid #007e5c;
}
.green_contents .g_accordion1 .g_accordion_title {
  position: relative;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  padding-right: 2rem;
}
.green_contents .g_accordion1 .toggle_btn {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #007e5c;
  display: block;
  width: 24px;
  height: 24px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
}
.green_contents .g_accordion1 .toggle_btn:before, .green_contents .g_accordion1 .toggle_btn:after {
  display: block;
  content: "";
  background-color: #fff;
  position: absolute;
  width: 10px;
  height: 2px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.green_contents .g_accordion1 .toggle_btn:before {
  width: 2px;
  height: 10px;
}
.green_contents .g_accordion1 .g_accordion_title.selected .toggle_btn:before {
  content: normal;
}
.green_contents .g_accordion1 dd {
  display: none;
  padding: 1.5rem;
  background-color: #F6F6F6;
  margin-top: 1rem;
  border-radius: 1rem;
}

.blue_contents .g_accordion1 {
  margin-bottom: 2rem;
  margin-top: 2rem;
  line-height: 1.4;
}
.blue_contents .g_accordion1 dl {
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: 3px solid white;
}
.blue_contents .g_accordion1 dl:hover {
  -webkit-box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
          box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: 3px solid #0b318f;
}
.blue_contents .g_accordion1 .g_accordion_title {
  position: relative;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  padding-right: 2rem;
}
.blue_contents .g_accordion1 .toggle_btn {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #0b318f;
  display: block;
  width: 24px;
  height: 24px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
}
.blue_contents .g_accordion1 .toggle_btn:before, .blue_contents .g_accordion1 .toggle_btn:after {
  display: block;
  content: "";
  background-color: #fff;
  position: absolute;
  width: 10px;
  height: 2px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.blue_contents .g_accordion1 .toggle_btn:before {
  width: 2px;
  height: 10px;
}
.blue_contents .g_accordion1 .g_accordion_title.selected .toggle_btn:before {
  content: normal;
}
.blue_contents .g_accordion1 dd {
  display: none;
  padding: 1.5rem;
  background-color: #F6F6F6;
  margin-top: 1rem;
  border-radius: 1rem;
}

.yellow_contents .g_accordion1 {
  margin-bottom: 2rem;
  margin-top: 2rem;
  line-height: 1.4;
}
.yellow_contents .g_accordion1 dl {
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: 3px solid white;
}
.yellow_contents .g_accordion1 dl:hover {
  -webkit-box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
          box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: 3px solid #fdd000;
}
.yellow_contents .g_accordion1 .g_accordion_title {
  position: relative;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  padding-right: 2rem;
}
.yellow_contents .g_accordion1 .toggle_btn {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fdd000;
  display: block;
  width: 24px;
  height: 24px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
}
.yellow_contents .g_accordion1 .toggle_btn:before, .yellow_contents .g_accordion1 .toggle_btn:after {
  display: block;
  content: "";
  background-color: #fff;
  position: absolute;
  width: 10px;
  height: 2px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.yellow_contents .g_accordion1 .toggle_btn:before {
  width: 2px;
  height: 10px;
}
.yellow_contents .g_accordion1 .g_accordion_title.selected .toggle_btn:before {
  content: normal;
}
.yellow_contents .g_accordion1 dd {
  display: none;
  padding: 1.5rem;
  background-color: #F6F6F6;
  margin-top: 1rem;
  border-radius: 1rem;
}

.red_contents .g_accordion1 {
  margin-bottom: 2rem;
  margin-top: 2rem;
  line-height: 1.4;
}
.red_contents .g_accordion1 dl {
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: 3px solid white;
}
.red_contents .g_accordion1 dl:hover {
  -webkit-box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
          box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border: 3px solid #CC1F3A;
}
.red_contents .g_accordion1 .g_accordion_title {
  position: relative;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  padding-right: 2rem;
}
.red_contents .g_accordion1 .toggle_btn {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #CC1F3A;
  display: block;
  width: 24px;
  height: 24px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
}
.red_contents .g_accordion1 .toggle_btn:before, .red_contents .g_accordion1 .toggle_btn:after {
  display: block;
  content: "";
  background-color: #fff;
  position: absolute;
  width: 10px;
  height: 2px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.red_contents .g_accordion1 .toggle_btn:before {
  width: 2px;
  height: 10px;
}
.red_contents .g_accordion1 .g_accordion_title.selected .toggle_btn:before {
  content: normal;
}
.red_contents .g_accordion1 dd {
  display: none;
  padding: 1.5rem;
  background-color: #F6F6F6;
  margin-top: 1rem;
  border-radius: 1rem;
}

/*==================================

g_accordion2   //アコーディオンボックス2

==================================*/
.orange {
  color: #ea5504;
}

.orange_contents .g_accordion2 {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.orange_contents .g_accordion2 .g_btn:hover {
  color: black;
  background-color: white;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
}
@media screen and (min-width: 768px) {
  .orange_contents .g_accordion2 .g_btn:hover {
    color: white;
    background-color: #ea5504;
    -webkit-box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
            box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
.orange_contents .g_accordion2 .g_plus_btn:hover:after {
  background-image: url(/img/common/icon_orange_plus.svg);
}
@media screen and (min-width: 768px) {
  .orange_contents .g_accordion2 .g_plus_btn:hover:after {
    background-image: url(/img/common/icon_white_plus.svg);
  }
}
.orange_contents .g_accordion2 .g_minus_btn:hover:after {
  background-image: url(/img/common/icon_orange_minus.svg);
}
@media screen and (min-width: 768px) {
  .orange_contents .g_accordion2 .g_minus_btn:hover:after {
    background-image: url(/img/common/icon_white_minus.svg);
  }
}

.green {
  color: #007e5c;
}

.green_contents .g_accordion2 {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.green_contents .g_accordion2 .g_btn:hover {
  color: black;
  background-color: white;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
}
@media screen and (min-width: 768px) {
  .green_contents .g_accordion2 .g_btn:hover {
    color: white;
    background-color: #007e5c;
    -webkit-box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
            box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
.green_contents .g_accordion2 .g_plus_btn:hover:after {
  background-image: url(/img/common/icon_green_plus.svg);
}
@media screen and (min-width: 768px) {
  .green_contents .g_accordion2 .g_plus_btn:hover:after {
    background-image: url(/img/common/icon_white_plus.svg);
  }
}
.green_contents .g_accordion2 .g_minus_btn:hover:after {
  background-image: url(/img/common/icon_green_minus.svg);
}
@media screen and (min-width: 768px) {
  .green_contents .g_accordion2 .g_minus_btn:hover:after {
    background-image: url(/img/common/icon_white_minus.svg);
  }
}

.blue {
  color: #0b318f;
}

.blue_contents .g_accordion2 {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.blue_contents .g_accordion2 .g_btn:hover {
  color: black;
  background-color: white;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
}
@media screen and (min-width: 768px) {
  .blue_contents .g_accordion2 .g_btn:hover {
    color: white;
    background-color: #0b318f;
    -webkit-box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
            box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
.blue_contents .g_accordion2 .g_plus_btn:hover:after {
  background-image: url(/img/common/icon_blue_plus.svg);
}
@media screen and (min-width: 768px) {
  .blue_contents .g_accordion2 .g_plus_btn:hover:after {
    background-image: url(/img/common/icon_white_plus.svg);
  }
}
.blue_contents .g_accordion2 .g_minus_btn:hover:after {
  background-image: url(/img/common/icon_blue_minus.svg);
}
@media screen and (min-width: 768px) {
  .blue_contents .g_accordion2 .g_minus_btn:hover:after {
    background-image: url(/img/common/icon_white_minus.svg);
  }
}

.yellow {
  color: #fdd000;
}

.yellow_contents .g_accordion2 {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.yellow_contents .g_accordion2 .g_btn:hover {
  color: black;
  background-color: white;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
}
@media screen and (min-width: 768px) {
  .yellow_contents .g_accordion2 .g_btn:hover {
    color: white;
    background-color: #fdd000;
    -webkit-box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
            box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
.yellow_contents .g_accordion2 .g_plus_btn:hover:after {
  background-image: url(/img/common/icon_yellow_plus.svg);
}
@media screen and (min-width: 768px) {
  .yellow_contents .g_accordion2 .g_plus_btn:hover:after {
    background-image: url(/img/common/icon_white_plus.svg);
  }
}
.yellow_contents .g_accordion2 .g_minus_btn:hover:after {
  background-image: url(/img/common/icon_yellow_minus.svg);
}
@media screen and (min-width: 768px) {
  .yellow_contents .g_accordion2 .g_minus_btn:hover:after {
    background-image: url(/img/common/icon_white_minus.svg);
  }
}

.red {
  color: #CC1F3A;
}

.red_contents .g_accordion2 {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.red_contents .g_accordion2 .g_btn:hover {
  color: black;
  background-color: white;
  -webkit-box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
          box-shadow: 0 5px 5px 0 rgba(86, 86, 86, 0.2);
}
@media screen and (min-width: 768px) {
  .red_contents .g_accordion2 .g_btn:hover {
    color: white;
    background-color: #CC1F3A;
    -webkit-box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
            box-shadow: 0 15px 15px 0 rgba(86, 86, 86, 0.3);
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
.red_contents .g_accordion2 .g_plus_btn:hover:after {
  background-image: url(/img/common/icon_red_plus.svg);
}
@media screen and (min-width: 768px) {
  .red_contents .g_accordion2 .g_plus_btn:hover:after {
    background-image: url(/img/common/icon_white_plus.svg);
  }
}
.red_contents .g_accordion2 .g_minus_btn:hover:after {
  background-image: url(/img/common/icon_red_minus.svg);
}
@media screen and (min-width: 768px) {
  .red_contents .g_accordion2 .g_minus_btn:hover:after {
    background-image: url(/img/common/icon_white_minus.svg);
  }
}

/*==================================

   //タブレイアウト

==================================*/
.orange_contents .g_tab_wrap {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.orange_contents .g_tab_wrap input[type=radio] {
  display: none;
}
.orange_contents .g_tab_wrap .tab_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.orange_contents .g_tab_wrap .tab_area label {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  margin: 0 0.1rem;
  display: inline-block;
  width: 100%;
  padding: 0.5rem 0;
  color: #999;
  background: #ddd;
  text-align: center;
  cursor: pointer;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
@media screen and (min-width: 768px) {
  .orange_contents .g_tab_wrap .tab_area label {
    margin: 0 0.5rem;
    padding: 1rem 0;
  }
}
.orange_contents .g_tab_wrap .panel_area {
  margin: 0 auto 2rem auto;
  border: 10px solid #F6F6F6;
  border-radius: 0 0 1rem 1rem;
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .orange_contents .g_tab_wrap .panel_area {
    padding: 3rem;
  }
}
.orange_contents .g_tab_wrap .tab_panel {
  width: 100%;
  display: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.orange_contents .g_tab_wrap #tab1:checked ~ .tab_area .tab1_label {
  background: #ea5504;
  color: white;
}
.orange_contents .g_tab_wrap #tab1:checked ~ .panel_area #panel1 {
  display: block;
}
.orange_contents .g_tab_wrap #tab2:checked ~ .tab_area .tab2_label {
  background: #ea5504;
  color: white;
}
.orange_contents .g_tab_wrap #tab2:checked ~ .panel_area #panel2 {
  display: block;
}
.orange_contents .g_tab_wrap #tab3:checked ~ .tab_area .tab3_label {
  background: #ea5504;
  color: white;
}
.orange_contents .g_tab_wrap #tab3:checked ~ .panel_area #panel3 {
  display: block;
}
.orange_contents .g_tab_wrap #tab4:checked ~ .tab_area .tab4_label {
  background: #ea5504;
  color: white;
}
.orange_contents .g_tab_wrap #tab4:checked ~ .panel_area #panel4 {
  display: block;
}
.orange_contents .g_tab_wrap #tab5:checked ~ .tab_area .tab5_label {
  background: #ea5504;
  color: white;
}
.orange_contents .g_tab_wrap #tab5:checked ~ .panel_area #panel5 {
  display: block;
}
.orange_contents .g_tab_wrap #tab6:checked ~ .tab_area .tab6_label {
  background: #ea5504;
  color: white;
}
.orange_contents .g_tab_wrap #tab6:checked ~ .panel_area #panel6 {
  display: block;
}
.orange_contents .g_tab_wrap #tab7:checked ~ .tab_area .tab7_label {
  background: #ea5504;
  color: white;
}
.orange_contents .g_tab_wrap #tab7:checked ~ .panel_area #panel7 {
  display: block;
}
.orange_contents .g_tab_wrap #tab8:checked ~ .tab_area .tab8_label {
  background: #ea5504;
  color: white;
}
.orange_contents .g_tab_wrap #tab8:checked ~ .panel_area #panel8 {
  display: block;
}
.orange_contents .g_tab_wrap #tab9:checked ~ .tab_area .tab9_label {
  background: #ea5504;
  color: white;
}
.orange_contents .g_tab_wrap #tab9:checked ~ .panel_area #panel9 {
  display: block;
}
.orange_contents .g_tab_wrap #tab10:checked ~ .tab_area .tab10_label {
  background: #ea5504;
  color: white;
}
.orange_contents .g_tab_wrap #tab10:checked ~ .panel_area #panel10 {
  display: block;
}

.green_contents .g_tab_wrap {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.green_contents .g_tab_wrap input[type=radio] {
  display: none;
}
.green_contents .g_tab_wrap .tab_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.green_contents .g_tab_wrap .tab_area label {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  margin: 0 0.1rem;
  display: inline-block;
  width: 100%;
  padding: 0.5rem 0;
  color: #999;
  background: #ddd;
  text-align: center;
  cursor: pointer;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
@media screen and (min-width: 768px) {
  .green_contents .g_tab_wrap .tab_area label {
    margin: 0 0.5rem;
    padding: 1rem 0;
  }
}
.green_contents .g_tab_wrap .panel_area {
  margin: 0 auto 2rem auto;
  border: 10px solid #F6F6F6;
  border-radius: 0 0 1rem 1rem;
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .green_contents .g_tab_wrap .panel_area {
    padding: 3rem;
  }
}
.green_contents .g_tab_wrap .tab_panel {
  width: 100%;
  display: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.green_contents .g_tab_wrap #tab1:checked ~ .tab_area .tab1_label {
  background: #007e5c;
  color: white;
}
.green_contents .g_tab_wrap #tab1:checked ~ .panel_area #panel1 {
  display: block;
}
.green_contents .g_tab_wrap #tab2:checked ~ .tab_area .tab2_label {
  background: #007e5c;
  color: white;
}
.green_contents .g_tab_wrap #tab2:checked ~ .panel_area #panel2 {
  display: block;
}
.green_contents .g_tab_wrap #tab3:checked ~ .tab_area .tab3_label {
  background: #007e5c;
  color: white;
}
.green_contents .g_tab_wrap #tab3:checked ~ .panel_area #panel3 {
  display: block;
}
.green_contents .g_tab_wrap #tab4:checked ~ .tab_area .tab4_label {
  background: #007e5c;
  color: white;
}
.green_contents .g_tab_wrap #tab4:checked ~ .panel_area #panel4 {
  display: block;
}
.green_contents .g_tab_wrap #tab5:checked ~ .tab_area .tab5_label {
  background: #007e5c;
  color: white;
}
.green_contents .g_tab_wrap #tab5:checked ~ .panel_area #panel5 {
  display: block;
}
.green_contents .g_tab_wrap #tab6:checked ~ .tab_area .tab6_label {
  background: #007e5c;
  color: white;
}
.green_contents .g_tab_wrap #tab6:checked ~ .panel_area #panel6 {
  display: block;
}
.green_contents .g_tab_wrap #tab7:checked ~ .tab_area .tab7_label {
  background: #007e5c;
  color: white;
}
.green_contents .g_tab_wrap #tab7:checked ~ .panel_area #panel7 {
  display: block;
}
.green_contents .g_tab_wrap #tab8:checked ~ .tab_area .tab8_label {
  background: #007e5c;
  color: white;
}
.green_contents .g_tab_wrap #tab8:checked ~ .panel_area #panel8 {
  display: block;
}
.green_contents .g_tab_wrap #tab9:checked ~ .tab_area .tab9_label {
  background: #007e5c;
  color: white;
}
.green_contents .g_tab_wrap #tab9:checked ~ .panel_area #panel9 {
  display: block;
}
.green_contents .g_tab_wrap #tab10:checked ~ .tab_area .tab10_label {
  background: #007e5c;
  color: white;
}
.green_contents .g_tab_wrap #tab10:checked ~ .panel_area #panel10 {
  display: block;
}

.blue_contents .g_tab_wrap {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.blue_contents .g_tab_wrap input[type=radio] {
  display: none;
}
.blue_contents .g_tab_wrap .tab_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.blue_contents .g_tab_wrap .tab_area label {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  margin: 0 0.1rem;
  display: inline-block;
  width: 100%;
  padding: 0.5rem 0;
  color: #999;
  background: #ddd;
  text-align: center;
  cursor: pointer;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
@media screen and (min-width: 768px) {
  .blue_contents .g_tab_wrap .tab_area label {
    margin: 0 0.5rem;
    padding: 1rem 0;
  }
}
.blue_contents .g_tab_wrap .panel_area {
  margin: 0 auto 2rem auto;
  border: 10px solid #F6F6F6;
  border-radius: 0 0 1rem 1rem;
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .blue_contents .g_tab_wrap .panel_area {
    padding: 3rem;
  }
}
.blue_contents .g_tab_wrap .tab_panel {
  width: 100%;
  display: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.blue_contents .g_tab_wrap #tab1:checked ~ .tab_area .tab1_label {
  background: #0b318f;
  color: white;
}
.blue_contents .g_tab_wrap #tab1:checked ~ .panel_area #panel1 {
  display: block;
}
.blue_contents .g_tab_wrap #tab2:checked ~ .tab_area .tab2_label {
  background: #0b318f;
  color: white;
}
.blue_contents .g_tab_wrap #tab2:checked ~ .panel_area #panel2 {
  display: block;
}
.blue_contents .g_tab_wrap #tab3:checked ~ .tab_area .tab3_label {
  background: #0b318f;
  color: white;
}
.blue_contents .g_tab_wrap #tab3:checked ~ .panel_area #panel3 {
  display: block;
}
.blue_contents .g_tab_wrap #tab4:checked ~ .tab_area .tab4_label {
  background: #0b318f;
  color: white;
}
.blue_contents .g_tab_wrap #tab4:checked ~ .panel_area #panel4 {
  display: block;
}
.blue_contents .g_tab_wrap #tab5:checked ~ .tab_area .tab5_label {
  background: #0b318f;
  color: white;
}
.blue_contents .g_tab_wrap #tab5:checked ~ .panel_area #panel5 {
  display: block;
}
.blue_contents .g_tab_wrap #tab6:checked ~ .tab_area .tab6_label {
  background: #0b318f;
  color: white;
}
.blue_contents .g_tab_wrap #tab6:checked ~ .panel_area #panel6 {
  display: block;
}
.blue_contents .g_tab_wrap #tab7:checked ~ .tab_area .tab7_label {
  background: #0b318f;
  color: white;
}
.blue_contents .g_tab_wrap #tab7:checked ~ .panel_area #panel7 {
  display: block;
}
.blue_contents .g_tab_wrap #tab8:checked ~ .tab_area .tab8_label {
  background: #0b318f;
  color: white;
}
.blue_contents .g_tab_wrap #tab8:checked ~ .panel_area #panel8 {
  display: block;
}
.blue_contents .g_tab_wrap #tab9:checked ~ .tab_area .tab9_label {
  background: #0b318f;
  color: white;
}
.blue_contents .g_tab_wrap #tab9:checked ~ .panel_area #panel9 {
  display: block;
}
.blue_contents .g_tab_wrap #tab10:checked ~ .tab_area .tab10_label {
  background: #0b318f;
  color: white;
}
.blue_contents .g_tab_wrap #tab10:checked ~ .panel_area #panel10 {
  display: block;
}

.yellow_contents .g_tab_wrap {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.yellow_contents .g_tab_wrap input[type=radio] {
  display: none;
}
.yellow_contents .g_tab_wrap .tab_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.yellow_contents .g_tab_wrap .tab_area label {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  margin: 0 0.1rem;
  display: inline-block;
  width: 100%;
  padding: 0.5rem 0;
  color: #999;
  background: #ddd;
  text-align: center;
  cursor: pointer;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
@media screen and (min-width: 768px) {
  .yellow_contents .g_tab_wrap .tab_area label {
    margin: 0 0.5rem;
    padding: 1rem 0;
  }
}
.yellow_contents .g_tab_wrap .panel_area {
  margin: 0 auto 2rem auto;
  border: 10px solid #F6F6F6;
  border-radius: 0 0 1rem 1rem;
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .yellow_contents .g_tab_wrap .panel_area {
    padding: 3rem;
  }
}
.yellow_contents .g_tab_wrap .tab_panel {
  width: 100%;
  display: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.yellow_contents .g_tab_wrap #tab1:checked ~ .tab_area .tab1_label {
  background: #fdd000;
  color: white;
}
.yellow_contents .g_tab_wrap #tab1:checked ~ .panel_area #panel1 {
  display: block;
}
.yellow_contents .g_tab_wrap #tab2:checked ~ .tab_area .tab2_label {
  background: #fdd000;
  color: white;
}
.yellow_contents .g_tab_wrap #tab2:checked ~ .panel_area #panel2 {
  display: block;
}
.yellow_contents .g_tab_wrap #tab3:checked ~ .tab_area .tab3_label {
  background: #fdd000;
  color: white;
}
.yellow_contents .g_tab_wrap #tab3:checked ~ .panel_area #panel3 {
  display: block;
}
.yellow_contents .g_tab_wrap #tab4:checked ~ .tab_area .tab4_label {
  background: #fdd000;
  color: white;
}
.yellow_contents .g_tab_wrap #tab4:checked ~ .panel_area #panel4 {
  display: block;
}
.yellow_contents .g_tab_wrap #tab5:checked ~ .tab_area .tab5_label {
  background: #fdd000;
  color: white;
}
.yellow_contents .g_tab_wrap #tab5:checked ~ .panel_area #panel5 {
  display: block;
}
.yellow_contents .g_tab_wrap #tab6:checked ~ .tab_area .tab6_label {
  background: #fdd000;
  color: white;
}
.yellow_contents .g_tab_wrap #tab6:checked ~ .panel_area #panel6 {
  display: block;
}
.yellow_contents .g_tab_wrap #tab7:checked ~ .tab_area .tab7_label {
  background: #fdd000;
  color: white;
}
.yellow_contents .g_tab_wrap #tab7:checked ~ .panel_area #panel7 {
  display: block;
}
.yellow_contents .g_tab_wrap #tab8:checked ~ .tab_area .tab8_label {
  background: #fdd000;
  color: white;
}
.yellow_contents .g_tab_wrap #tab8:checked ~ .panel_area #panel8 {
  display: block;
}
.yellow_contents .g_tab_wrap #tab9:checked ~ .tab_area .tab9_label {
  background: #fdd000;
  color: white;
}
.yellow_contents .g_tab_wrap #tab9:checked ~ .panel_area #panel9 {
  display: block;
}
.yellow_contents .g_tab_wrap #tab10:checked ~ .tab_area .tab10_label {
  background: #fdd000;
  color: white;
}
.yellow_contents .g_tab_wrap #tab10:checked ~ .panel_area #panel10 {
  display: block;
}

.red_contents .g_tab_wrap {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.red_contents .g_tab_wrap input[type=radio] {
  display: none;
}
.red_contents .g_tab_wrap .tab_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.red_contents .g_tab_wrap .tab_area label {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  margin: 0 0.1rem;
  display: inline-block;
  width: 100%;
  padding: 0.5rem 0;
  color: #999;
  background: #ddd;
  text-align: center;
  cursor: pointer;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
@media screen and (min-width: 768px) {
  .red_contents .g_tab_wrap .tab_area label {
    margin: 0 0.5rem;
    padding: 1rem 0;
  }
}
.red_contents .g_tab_wrap .panel_area {
  margin: 0 auto 2rem auto;
  border: 10px solid #F6F6F6;
  border-radius: 0 0 1rem 1rem;
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .red_contents .g_tab_wrap .panel_area {
    padding: 3rem;
  }
}
.red_contents .g_tab_wrap .tab_panel {
  width: 100%;
  display: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.red_contents .g_tab_wrap #tab1:checked ~ .tab_area .tab1_label {
  background: #CC1F3A;
  color: white;
}
.red_contents .g_tab_wrap #tab1:checked ~ .panel_area #panel1 {
  display: block;
}
.red_contents .g_tab_wrap #tab2:checked ~ .tab_area .tab2_label {
  background: #CC1F3A;
  color: white;
}
.red_contents .g_tab_wrap #tab2:checked ~ .panel_area #panel2 {
  display: block;
}
.red_contents .g_tab_wrap #tab3:checked ~ .tab_area .tab3_label {
  background: #CC1F3A;
  color: white;
}
.red_contents .g_tab_wrap #tab3:checked ~ .panel_area #panel3 {
  display: block;
}
.red_contents .g_tab_wrap #tab4:checked ~ .tab_area .tab4_label {
  background: #CC1F3A;
  color: white;
}
.red_contents .g_tab_wrap #tab4:checked ~ .panel_area #panel4 {
  display: block;
}
.red_contents .g_tab_wrap #tab5:checked ~ .tab_area .tab5_label {
  background: #CC1F3A;
  color: white;
}
.red_contents .g_tab_wrap #tab5:checked ~ .panel_area #panel5 {
  display: block;
}
.red_contents .g_tab_wrap #tab6:checked ~ .tab_area .tab6_label {
  background: #CC1F3A;
  color: white;
}
.red_contents .g_tab_wrap #tab6:checked ~ .panel_area #panel6 {
  display: block;
}
.red_contents .g_tab_wrap #tab7:checked ~ .tab_area .tab7_label {
  background: #CC1F3A;
  color: white;
}
.red_contents .g_tab_wrap #tab7:checked ~ .panel_area #panel7 {
  display: block;
}
.red_contents .g_tab_wrap #tab8:checked ~ .tab_area .tab8_label {
  background: #CC1F3A;
  color: white;
}
.red_contents .g_tab_wrap #tab8:checked ~ .panel_area #panel8 {
  display: block;
}
.red_contents .g_tab_wrap #tab9:checked ~ .tab_area .tab9_label {
  background: #CC1F3A;
  color: white;
}
.red_contents .g_tab_wrap #tab9:checked ~ .panel_area #panel9 {
  display: block;
}
.red_contents .g_tab_wrap #tab10:checked ~ .tab_area .tab10_label {
  background: #CC1F3A;
  color: white;
}
.red_contents .g_tab_wrap #tab10:checked ~ .panel_area #panel10 {
  display: block;
}

/*==================================

お知らせページ　投稿内容のstyle

==================================*/
.infomation_wrap {
  margin: 3rem auto;
}
@media screen and (min-width: 768px) {
  .infomation_wrap {
    width: 80%;
    margin: 5rem auto 3rem auto;
  }
}

/*==================================

余白

==================================*/
/*=このclassはモジュールの確認が見やすいように作ったものです。モジュール作成時は使用しないでください==*/
.adjustment_box div {
  background-color: #F6F6F6;
}

.mt_0 {
  margin-top: 0;
}

.mt_5 {
  margin-top: 5px;
}

.mt_10 {
  margin-top: 10px;
}

.mt_15 {
  margin-top: 15px;
}

.mt_20 {
  margin-top: 20px;
}

.pt_0 {
  padding-top: 0;
}

.pt_5 {
  padding-top: 5px;
}

.pt_10 {
  padding-top: 10px;
}

.pt_15 {
  padding-top: 15px;
}

.pt_20 {
  padding-top: 20px;
}

.mb_0 {
  margin-bottom: 0;
}

.mb_5 {
  margin-bottom: 5px;
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_15 {
  margin-bottom: 15px;
}

.mb_20 {
  margin-bottom: 20px;
}

.pb_0 {
  padding-bottom: 0;
}

.pb_5 {
  padding-bottom: 5px;
}

.pb_10 {
  padding-bottom: 10px;
}

.pb_15 {
  padding-bottom: 15px;
}

.pb_20 {
  padding-bottom: 20px;
}

.pb_1r {
  padding-bottom: 1rem;
}

.pb_2r {
  padding-bottom: 2rem;
}

/*==================================

float

==================================*/
.f_left {
  float: left;
}

.f_right {
  float: right;
}

.f_clear {
  clear: both;
}

/*==================================

g_bc_main //BCランク main

==================================*/
.g_bc_main {
  width: 100%;
  margin: 0 auto 6rem auto;
}
@media screen and (min-width: 992px) {
  .g_bc_main {
    max-width: 1500px;
  }
}

.g_contents_inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/*==================================

g_common_sec

==================================*/
.g_common_sec {
  position: relative;
  margin-bottom: 5rem;
  background-color: rgba(255, 255, 255, 0);
}
@media screen and (min-width: 576px) {
  .g_common_sec {
    margin-bottom: 8rem;
  }
}

/*==================================

モーダル 背景用class

==================================*/
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

/*==================================

g_our_hoiku //私たちの保育

==================================*/
.g_our_hoiku {
  background-image: url(../img/common/sp_bg_our_hoiku.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
  margin: 4rem auto 2rem auto;
  padding: 2rem 1rem 1.5rem 1rem;
}
@media screen and (min-width: 768px) {
  .g_our_hoiku {
    background-image: url(../img/common/pc_bg_our_hoiku.png);
    padding: 2rem 3rem;
    margin-bottom: 6rem;
    background-size: cover;
    background-position: right top;
  }
}
.g_our_hoiku h2 {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 5px;
  padding: 2rem 0 1.5rem 0;
  text-align: center;
}
.g_our_hoiku p {
  line-height: 2.5;
  max-width: 600px;
  margin: 0 auto;
}
.g_our_hoiku .g_btn {
  margin: 2rem auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .g_our_hoiku .g_btn {
    width: auto;
  }
}