@charset "UTF-8";
html {
  font-size: 62.5%;
}

* {
  font-family: "Noto Sans JP";
}

._sp {
  display: none;
}

#header {
  display: block;
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 0 0 20px;
}
#header .head_line {
  background: #11CC64;
}
#header .head_line .inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 30px;
}
#header .head_line .inner p {
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
}
#header .head_line .inner p:last-child {
  margin-left: auto;
  align-self: flex-end;
}
#header .header_main {
  max-width: 960px;
  margin: 0 auto;
}
#header .header_main .inner {
  display: flex;
}
#header .header_main h1.logo {
  margin-top: 14px;
}
#header .header_main h1.logo a {
  display: block;
  width: 230px;
}
#header .header_main h1.logo a img {
  display: block;
  width: 100%;
}
#header .header_main ._pc {
  width: 100%;
}
#header .header_main .menu {
  display: flex;
  width: 100%;
}
#header .header_main .menu_list {
  align-self: flex-end;
  margin-left: 23px;
}
#header .header_main .menu_list .contact_btn {
  text-align: right;
  margin-bottom: 16px;
  margin-left: auto;
  max-width: 141px;
}
#header .header_main .menu_list ul {
  display: flex;
}
#header .header_main .menu_list ul li {
  margin-left: 14px;
}
#header .header_main .menu_list ul li:first-child {
  margin-left: 0;
}
#header .header_main .menu_list ul li:after {
  content: "/";
  color: #FA9985;
  font-size: 1.4rem;
  margin-left: 14px;
}
#header .header_main .menu_list ul li:last-child:after {
  content: "";
  margin-left: 0;
}
#header .header_main .menu_list ul li a {
  font-size: 1.4rem;
  color: #FA9985;
  text-decoration: none;
}
#header .header_main .menu_list ul li a:hover {
  opacity: 0.8;
}
#header .header_main .info {
  margin-left: auto;
}

#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  transition: all 0.4s;
  height: 3px;
  /*線の太さ*/
  width: 25px;
  /*長さ*/
  border-radius: 3px;
  background: #11CC64;
  display: block;
  content: "";
  cursor: pointer;
  z-index: 9999;
  /*最前面*/
}

#nav-open span:before {
  bottom: -8px;
}

#nav-open span:after {
  bottom: -16px;
}

/*中身*/
#nav-content {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  transition: 0.5s ease-in-out;
  background: white;
  /*背景色*/
}

#nav-content.open {
  display: block;
  opacity: 1;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  height: 100%;
}

/*:beforeにぼかし効果を設定する*/
#nav-content.open:before {
  content: "";
  overflow: hidden;
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
  z-index: -1;
  /*重なり順序を一番下にしておく*/
}

/*チェックが入ったら表示する内容*/
.hamburger-top {
  height: 85px;
  /*×ボタンと被らないように*/
  background: #fff;
}

.category {
  text-align: center;
  background: #fff;
}

.category-title {
  padding: 0.5rem;
  margin-left: -2rem;
  list-style: none;
}

.category-title a {
  color: #333;
  text-decoration: none;
}

/*三本線を動かす*/
#nav-open.active span {
  transform: translateY(8px) rotate(-45deg);
  background-color: #11CC64;
}

#nav-open.active span:before {
  /*打ち消す*/
  transform: translateY(-8px) rotate(45deg);
  /*打ち消す*/
  opacity: 0;
}

#nav-open.active span:after {
  transform: translateY(-16px) rotate(90deg);
  background-color: #11CC64;
}

#acMenu dt {
  display: block;
  cursor: pointer;
}

#acMenu dd {
  display: none;
}

@media only screen and (min-width:641px) and (max-width:959px), only screen and (max-width:640px) {
  ._pc {
    display: none !important;
  }

  ._sp {
    display: block;
  }

  #header {
    padding: 0;
  }
  #header .head_line {
    padding-left: 20px;
    box-sizing: border-box;
  }
  #header .header_main .inner {
    height: 80px;
  }
  #header .header_main h1.logo {
    padding-left: 20px;
    box-sizing: border-box;
  }
  #header .header_main h1.logo a {
    width: 150px;
  }
  #header .header_main ._sp {
    margin-left: auto;
    align-self: center;
  }
  #header .header_main .menu {
    display: block;
  }
  #header .header_main .menu #nav-open {
    margin-right: 20px;
  }
  #header .header_main .menu #nav-content ul.category li.category-title {
    padding-left: 60px;
  }
  #header .header_main .menu #nav-content ul.category li.category-title a {
    font-size: 1.6rem;
    color: #11CC64;
    display: inline-block;
    width: 100%;
    padding: 5px 0;
  }
  #header .header_main .menu #nav-content ul.category li.category-title:first-child {
    border-top: 1px solid #8BE0B1;
  }
  #header .header_main .menu #nav-content ul.category li {
    border-bottom: 1px solid #8BE0B1;
    text-align: left;
    box-sizing: border-box;
  }
  #header .header_main .menu #nav-content ul.category li dl#acMenu dt, #header .header_main .menu #nav-content ul.category li dl#acMenu dd {
    font-size: 1.6rem;
    color: #11CC64;
    width: 100%;
    box-sizing: border-box;
  }
  #header .header_main .menu #nav-content ul.category li dl#acMenu dt {
    display: flex;
    padding: 10px 0 10px 40px;
  }
  #header .header_main .menu #nav-content ul.category li dl#acMenu dt img {
    margin-left: auto;
    margin-right: 25px;
    transition: 0.3s;
  }
  #header .header_main .menu #nav-content ul.category li dl#acMenu dt.open img {
    transform: rotate(-180deg);
  }
  #header .header_main .menu #nav-content ul.category li dl#acMenu dd {
    background: #EBFFF4;
  }
  #header .header_main .menu #nav-content ul.category li dl#acMenu dd a {
    font-size: 1.6rem;
    color: #11CC64;
    display: inline-block;
    width: calc(100% - 40px);
    padding: 10px 0 5px 40px;
    text-decoration: none;
  }
  #header .header_main .menu #nav-content ul.category li dl#acMenu dd .toggle_menu:first-child a {
    padding: 15px 0 10px 40px;
  }
  #header .header_main .menu #nav-content ul.category li dl#acMenu dd .toggle_menu:last-child a {
    padding: 10px 0 15px 40px;
  }
  #header .header_main .menu #nav-content ul.category li.btn {
    border-bottom: none;
    text-align: center;
    padding: 20px 0;
  }
  #header .header_main .menu #nav-content ul.category li.btn img {
    max-width: 202px;
  }
  #header .header_main .menu #nav-content .shop_info {
    border-bottom: none;
    background: #F8F8F8;
    padding: 16px 0;
  }
  #header .header_main .menu #nav-content .shop_info p {
    color: #11CC64;
    font-size: 1.4rem;
    text-align: center;
    font-weight: bold;
  }
  #header .header_main .menu #nav-content .shop_info .btn_icon {
    display: flex;
    justify-content: center;
    padding: 12px 0 14px;
  }
  #header .header_main .menu #nav-content .shop_info .btn_icon a:last-child {
    padding-left: 40px;
  }
}
#nav-content {
  background: rgba(0, 0, 0, 0.7);
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 60%;
  transform: translate(0, -60%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 0.75;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 1;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 10px;
  width: 10px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 0.75;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: #E6E6E6;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  font-family: "slick";
  font-size: 6px;
  line-height: 10px;
  text-align: center;
  color: #E6E6E6;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  background: #11CC64;
  color: #11CC64;
  opacity: 1;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

/*slick setting*/
.slick-prev:before,
.slick-next:before {
  color: #ffffff;
}

#index #top_visual .slick01 .slick-prev,
#index #top_visual .slick01 .slick-next,
#index #top_visual .slick02 .slick-prev,
#index #top_visual .slick02 .slick-next {
  display: none;
}
#index #top_visual .slick01 ul.slick-dots,
#index #top_visual .slick02 ul.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}

#index #top_visual .slick01 .slick-prev,
#index #top_visual .slick01 .slick-next,
#index #top_visual .slick02 .slick-prev,
#index #top_visual .slick02 .slick-next {
  display: none !important;
}

#page_label {
  margin-top: 90px;
}
#page_label .inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
}
#page_label h2 {
  display: flex;
  position: absolute;
  align-items: center;
  max-width: 422px;
  height: 76px;
  padding: 15px 0;
  padding-right: 48px;
  box-sizing: border-box;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  background-color: #11CC64;
}
#page_label h2:before {
  display: block;
  position: absolute;
  top: 0;
  left: -100vw;
  width: 100vw;
  height: 100%;
  background-color: #11CC64;
  content: "";
}
#page_label h2 p {
  color: #fff;
}
#page_label h2 p:first-child {
  font-size: 3.6rem;
  font-family: "Montserrat", sans-serif;
}
#page_label h2 p:last-child {
  font-size: 2rem;
}
#page_label h2 img.separate {
  max-width: 2px;
  margin: 0 32px;
}

@media only screen and (max-width:640px) {
  #page_label h2 {
    padding-right: 24px;
  }
  #page_label h2 p:first-child {
    font-size: 3.2rem;
  }
  #page_label h2 img.separate {
    margin: 0 11px 0 15px;
  }
}
@media only screen and (max-width:374px) {
  #page_label h2 p:first-child {
    font-size: 3rem;
  }
  #page_label h2 p:last-child {
    font-size: 1.6rem;
  }
}
#breadcrumb .inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
}
#breadcrumb ul.breadcrumb_list {
  display: flex;
  max-width: 420px;
  align-items: center;
  position: absolute;
  margin: 100px auto 0;
  box-sizing: border-box;
}
#breadcrumb ul.breadcrumb_list:before {
  display: block;
  position: absolute;
  top: 0;
  left: -100vw;
  width: 100vw;
  height: 100%;
  content: "";
}
#breadcrumb ul.breadcrumb_list li {
  font-size: 1.4rem;
}
#breadcrumb ul.breadcrumb_list li a {
  color: #585858;
  text-decoration: none;
}
#breadcrumb ul.breadcrumb_list li:not(:last-child) {
  padding: 0 20px 0 0;
  margin: 0 24px 0 0;
  position: relative;
}
#breadcrumb ul.breadcrumb_list li:not(:last-child)::after {
  content: "／";
  position: absolute;
  top: 0;
  right: -10px;
  display: block;
}
#breadcrumb ul.breadcrumb_list li:last-child {
  color: #11CC64;
}
#breadcrumb ul.no_label {
  margin: 0 auto;
}

@media only screen and (min-width:641px) and (max-width:959px), only screen and (max-width:640px) {
  #breadcrumb ul.breadcrumb_list {
    margin: 80px auto 0;
  }
}
@media only screen and (max-width:640px) {
  #breadcrumb ul.breadcrumb_list li {
    font-size: 1.2rem;
  }
  #breadcrumb ul.breadcrumb_list li:not(:last-child) {
    padding: 0 10px 0 0;
    margin: 0 12px 0 0;
  }
}
#footer {
  background: #EBFFF4;
}
#footer .f_box {
  max-width: 960px;
  margin: 0 auto;
}
#footer .f_box01 {
  display: flex;
  padding: 60px 0 0;
}
#footer .f_box01 .con01 {
  max-width: 200px;
  width: calc(25% - 20px);
  margin: 0 20px 0 0;
}
#footer .f_box01 .con01 h5 {
  font-size: 1.4rem;
}
#footer .f_box01 .con01 h5::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #11CC64;
  margin: 10px 0 20px;
}
#footer .f_box01 .con01 .f_list li {
  margin: 0 0 10px;
}
#footer .f_box01 .con01 .f_list li a {
  font-size: 1.4rem;
  color: #333333;
  text-decoration: none;
}
#footer .f_box01 .con01 .f_list li a::before {
  content: ">";
  font-size: 1.6rem;
  padding: 0 5px 0 0;
}
#footer .f_box02 {
  display: flex;
  padding: 30px 0;
}
#footer .f_box02 a {
  font-size: 1.4rem;
  color: #333333;
  text-decoration: none;
}
#footer .f_box02 a::before {
  content: "▶︎";
  color: #11CC64;
}
#footer .f_box02 a:not(:last-child) {
  padding: 0 30px 0 0;
}
#footer .f_box03 {
  display: flex;
  padding: 30px 0 40px;
  border-top: 1px solid #11CC64;
}
#footer .f_box03 .logo img,
#footer .f_box03 .c_btn img,
#footer .f_box03 .address img {
  display: block;
  width: 100%;
}
#footer .f_box03 .logo {
  max-width: 265px;
  margin: 0 21px 0 0;
}
#footer .f_box03 .c_btn {
  max-width: 370px;
  margin: 0 21px 0 0;
}
#footer .f_box03 .address p {
  font-size: 1.4rem;
  color: #FA9985;
  text-align: right;
}
#footer .f_box03 .address p.tel {
  display: block;
  position: relative;
  font-size: 3.6rem;
  padding: 0 0 0 43px;
}
#footer .f_box03 .address p.tel::before {
  content: "";
  background: url(../images/common/footer/pc_tel.svg) no-repeat;
  background-size: contain;
  display: block;
  width: 38px;
  height: 38px;
  position: absolute;
  bottom: 5px;
  left: 0;
}
#footer .f_box03 .address p.time {
  font-weight: bold;
}
#footer #copyright {
  background: #11CC64;
}
#footer #copyright p {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  padding: 12px 0;
}

@media only screen and (min-width:641px) and (max-width:959px), only screen and (max-width:640px) {
  #footer .f_box {
    width: 100%;
    max-width: 100%;
  }
  #footer .f_box01 {
    padding: 0;
    background: #F8F8F8;
  }
  #footer .f_box01 .f_list {
    display: block;
    width: 100%;
  }
  #footer .f_box01 .f_list li {
    text-align: center;
  }
  #footer .f_box01 .f_list li a {
    font-size: 2rem;
    color: #11CC64;
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 20px 0;
  }
  #footer .f_box02 {
    border-bottom: 1px solid #11CC64;
  }
  #footer .f_box02 .f_list {
    width: 210px;
    margin: 0 auto;
  }
  #footer .f_box02 .f_list li a {
    font-size: 1.6rem;
    color: #333333;
    text-decoration: none;
  }
  #footer .f_box02 .f_list li a::before {
    content: ">";
    color: #333333;
    font-size: 1.8rem;
    padding: 0 5px 0 0;
  }
  #footer .f_box02 .f_list li:not(:last-child) {
    margin: 0 0 20px;
  }
  #footer .f_box03 {
    display: block;
    padding: 40px 0;
  }
  #footer .f_box03 p {
    font-size: 1.6rem;
    font-weight: bold;
    color: #11CC64;
    text-align: center;
  }
  #footer .f_box03 p.add {
    font-weight: normal;
  }
  #footer .f_box03 .contact_btn {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  #footer .f_box03 .contact_btn a {
    width: 62px;
    height: 62px;
    margin: 30px 20px;
  }
  #footer .f_box03 .logo {
    width: 225px;
    margin: 30px auto 20px;
  }
  #footer #copyright p {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width:640px) {
  #footer .f_box03 p {
    font-size: 1.4rem;
  }
  #footer #copyright p {
    font-size: 1.2rem;
  }
}
#totop {
  margin: 0 20px 0 auto;
  width: 60px;
  height: 60px;
  position: fixed;
  z-index: 100;
  bottom: 20px;
  right: 0;
}
#totop .totop_btn {
  display: block;
}
#totop .totop_btn a img {
  display: block;
  width: 100%;
}

#index {
  margin: 0 auto 190px;
}
#index ._display {
  display: block !important;
}
#index ._mobile {
  display: none !important;
}
#index h2.call_out {
  max-width: 300px;
  width: calc(100% - 30px);
  margin: 0 auto;
}
#index h2.call_out img {
  display: block;
  width: 100%;
}

@media only screen and (max-width:640px) {
  #index {
    margin: 0 auto 290px;
  }
  #index ._display {
    display: none !important;
  }
  #index ._mobile {
    display: block !important;
  }
}
#index #top_visual {
  display: block;
  width: 100%;
  max-width: 1400px;
  margin: 30px auto 0;
}
#index #top_visual .slick01 li img,
#index #top_visual .slick02 li img {
  display: block;
  width: 100%;
}

#news_box {
  max-width: 720px;
  width: calc(100% - 40px);
  margin: 120px auto 160px;
}
#news_box .news_title {
  font-size: 2.4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: #11CC64;
  position: relative;
  padding: 0 0 10px;
  border-bottom: 1px solid #11CC64;
  letter-spacing: 0.2rem;
}
#news_box .news_title span {
  font-size: 1.2rem;
  color: #585858;
  position: absolute;
  top: 4px;
  left: 90px;
}
#news_box .news_title a {
  font-size: 1.2rem;
  color: #11CC64;
  text-decoration: none;
  position: absolute;
  top: 4px;
  right: 23px;
}
#news_box .news_title a::after {
  content: "";
  display: block;
  background: url(../images/index/right_arrow@2x.png) no-repeat;
  width: 17px;
  height: 8px;
  position: absolute;
  top: 4px;
  right: -23px;
}
#news_box .news_topics {
  display: flex;
  padding: 13px 0;
  border-bottom: 0.5px dashed #11CC64;
  position: relative;
}
#news_box .news_topics::after {
  content: "";
  display: block;
  background: url(../images/index/plus_icon@2x.png) no-repeat;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 16px;
  right: 0;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
#news_box .news_topics h4 {
  width: 320px;
  position: relative;
}
#news_box .news_topics h4 span {
  position: absolute;
  font-size: 1.2rem;
  color: #9d9d9d;
  top: 4px;
  left: 0;
}
#news_box .news_topics h4 p {
  font-size: 1.6rem;
  color: #585858;
  padding: 0 0 0 84px;
  font-weight: bold;
}
#news_box .news_topics .description {
  width: calc(100% - 358px);
}
#news_box .news_topics .description a {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  color: #585858;
  text-decoration: none;
  position: relative;
}
#news_box .news_topics .description a::after {
  content: "…もっと見る＞";
  display: block;
  position: absolute;
  bottom: -22px;
  right: 0;
  text-decoration: underline;
}
#news_box .news_topics.open {
  padding: 13px 0 35px;
}
#news_box .news_topics.open::after {
  background: url(../images/index/minus_icon@2x.png) no-repeat;
}

@media only screen and (max-width:640px) {
  #news_box {
    margin: 90px auto 120px;
  }
  #news_box .news_topics {
    display: block;
  }
  #news_box .news_topics h4 {
    width: calc(100% - 28px);
    margin: 0 0 6px;
  }
  #news_box .news_topics h4 p {
    padding: 0 0 0 78px;
  }
  #news_box .news_topics .description {
    width: 100%;
    padding: 0;
  }
}
#index .service .inner {
  display: flex;
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
#index .service .inner .left {
  width: calc(50% - 48px);
  margin: 0 48px 0 0;
}
#index .service .inner .left h3 img {
  display: block;
  width: 100%;
}
#index .service .inner .left p.sub {
  font-size: 2.4rem;
  color: #11CC64;
  font-weight: bold;
  margin: 16px 0;
}
#index .service .inner .left p {
  font-size: 1.6rem;
  color: #585858;
  margin: 16px 0;
}
#index .service .inner .right {
  width: 50%;
  margin: 32px auto 0;
}
#index .service .inner .right img {
  display: block;
  width: 100%;
}
#index .service .service_info {
  display: flex;
  justify-content: center;
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 37px auto 0;
  padding: 0 0 58px;
}
#index .service .service_info .info_box {
  width: calc(33% - 20px);
  border-radius: 30px 0 0 0;
  background: #fff;
}
#index .service .service_info .info_box figure {
  display: block;
  width: 100%;
}
#index .service .service_info .info_box figure img {
  display: block;
  width: 100%;
  border-radius: 30px 0 0 0;
}
#index .service .service_info .info_box .info_text {
  padding: 15px 0 20px;
}
#index .service .service_info .info_box .info_text p {
  font-size: 2rem;
  color: #585858;
  text-align: center;
  margin: 0 auto 10px;
}
#index .service .service_info .info_box .info_text a {
  display: block;
  margin: 0 auto;
  width: 150px;
}
#index .service .service_info .info_box .info_text a img {
  display: block;
  width: 100%;
}
#index .service .service_info .info_box:not(:last-child) {
  margin: 0 30px 0 0;
}

#index #service01 {
  margin: 63px auto 85px;
  background: linear-gradient(180deg, #fff 0%, #fff 38%, #FFE9E5 38%, #FFE9E5 100%);
}
#index #service01 .inner .left h3 {
  width: 159px;
}

#index #service02 {
  margin: 0 auto 85px;
  background: linear-gradient(180deg, #fff 0%, #fff 38%, #CEFDE3 38%, #CEFDE3 100%);
}
#index #service02 .inner {
  flex-direction: row-reverse;
}
#index #service02 .inner .left {
  margin: 0 0 0 48px;
}
#index #service02 .inner .left h3 {
  width: 292px;
}

#index #service03 {
  margin: 0 auto 160px;
}
#index #service03 .inner .left h3 {
  width: 291px;
}

@media only screen and (min-width:641px) and (max-width:959px), only screen and (max-width:640px) {
  #index .service .inner {
    display: block;
  }
  #index .service .inner .left {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
  }
  #index .service .inner .right {
    width: 100%;
    max-width: 480px;
    margin: 42px auto 48px;
  }
  #index .service .inner .more_btn {
    width: 150px;
    margin: 0 auto;
  }
  #index .service .service_info {
    display: block;
    padding: 0 0 80px;
  }
  #index .service .service_info .info_box {
    width: calc(100% - 30px);
    max-width: 300px;
    margin: 0 auto;
  }
  #index .service .service_info .info_box:not(:last-child) {
    margin: 0 auto 40px;
  }

  #index #service01 {
    background: linear-gradient(180deg, #fff 0%, #fff 20%, #FFE9E5 20%, #FFE9E5 100%);
  }

  #index #service02 {
    background: linear-gradient(180deg, #fff 0%, #fff 20%, #CEFDE3 20%, #CEFDE3 100%);
  }
  #index #service02 .inner .left {
    margin: 0 auto;
  }

  #index #service03 .inner .right {
    margin: 40px auto 24px;
  }
  #index #service03 .inner .right img {
    border-radius: 40px 0 0 0;
  }
}
@media only screen and (max-width:640px) {
  #index #service01 {
    background: linear-gradient(180deg, #fff 0%, #fff 25%, #FFE9E5 25%, #FFE9E5 100%);
  }

  #index #service02 {
    background: linear-gradient(180deg, #fff 0%, #fff 25%, #CEFDE3 25%, #CEFDE3 100%);
  }
  #index #service02 .inner .left h3 {
    width: 280px;
  }

  #index #service03 {
    margin: 0 auto 120px;
  }
  #index #service03 .inner .left h3 {
    width: 280px;
  }
}
#index #contact_box {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
#index #contact_box figure {
  max-width: 730px;
  width: calc(100% - 30px);
  margin: 80px auto;
}
#index #contact_box figure img {
  display: block;
  width: 100%;
}
#index #contact_box .btn_box .contact_btn {
  max-width: 370px;
  margin: 0 auto;
  padding: 0 0 20px;
}
#index #contact_box .btn_box .contact_btn a {
  display: block;
  width: 100%;
}
#index #contact_box .btn_box .contact_btn a img {
  display: block;
  width: 100%;
}

@media only screen and (min-width:641px) and (max-width:959px), only screen and (max-width:640px) {
  #index #contact_box figure {
    margin: 80px auto 42px;
  }
  #index #contact_box .btn_box .contact_btn {
    max-width: 295px;
  }
}
@media only screen and (min-width:641px) and (max-width:959px) {
  #index #contact_box .btn_box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 30px);
    margin: 0 auto;
  }
  #index #contact_box .btn_box .contact_btn:first-child {
    margin: 0 20px 0 auto;
  }
}
@media only screen and (max-width:640px) {
  #index #contact_box .btn_box .contact_btn:first-child {
    margin: 0 auto 24px;
    padding: 0;
  }
}
#index .contents_bnr {
  display: flex;
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 135px auto 0;
}
#index .contents_bnr .bnr {
  width: calc(33% - 20px);
}
#index .contents_bnr .bnr a {
  display: block;
}
#index .contents_bnr .bnr a img {
  display: block;
  width: 100%;
}
#index .contents_bnr .bnr:not(:last-child) {
  margin: 0 30px 0 0;
}

@media only screen and (max-width:640px) {
  #index .contents_bnr {
    display: block;
    margin: 90px auto 0;
  }
  #index .contents_bnr .bnr {
    width: calc(100% - 30px);
    max-width: 300px;
    margin: 0 auto;
  }
  #index .contents_bnr .bnr:not(:last-child) {
    margin: 0 auto 25px;
  }
}
#guide {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 220px auto 200px;
}
#guide h3 {
  width: calc(100% - 19px);
  background: #11CC64;
  height: 45px;
  border-radius: 20px 0 0 0;
  padding: 0 0 0 19px;
  position: relative;
  margin: 80px auto;
}
#guide h3 p {
  font-size: 2.3rem;
  font-weight: bold;
  color: #ffffff;
  padding: 5px 0 0 25px;
}
#guide h3::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 8px;
  margin: 0 5px 0 0;
  position: absolute;
  top: 15px;
  left: 19px;
}
#guide table {
  display: block;
}
#guide table tbody {
  display: block;
}
#guide table tbody tr {
  display: block;
}
#guide table tbody tr th, #guide table tbody tr td {
  font-size: 1.6rem;
  color: #333333;
  padding: 32px 0;
}
#guide table tbody tr th {
  font-weight: bold;
  width: 250px;
}
#guide table tbody tr td a {
  color: #333333;
}
#guide table tbody tr td p.att {
  padding-left: 1.2em;
  text-indent: -1.2em;
}
#guide table tbody tr td p.att::before {
  content: "※";
}
#guide table tbody tr td p.point {
  padding-left: 1.2em;
  text-indent: -1.2em;
}
#guide table tbody tr td p.point::before {
  content: "・";
}
#guide table tbody tr:not(:last-child) {
  border-bottom: 1px solid #e6e6e6;
}

@media only screen and (min-width:641px) and (max-width:959px), only screen and (max-width:640px) {
  #guide {
    margin: 130px auto 210px;
  }
  #guide h3 {
    margin: 52px auto 0;
  }
  #guide h3 p {
    font-size: 1.8rem;
    padding: 8px 0 0 25px;
  }
  #guide table tbody tr th, #guide table tbody tr td {
    display: block;
    width: 100%;
  }
  #guide table tbody tr th {
    padding: 32px 0 8px;
  }
  #guide table tbody tr td {
    padding: 0 0 32px;
  }
}
#policy {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin: 220px auto 200px;
}
#policy h3 {
  width: calc(100% - 19px);
  background: #11CC64;
  height: 45px;
  border-radius: 20px 0 0 0;
  padding: 0 0 0 19px;
  position: relative;
  margin: 80px auto 0;
}
#policy h3 p {
  font-size: 2.3rem;
  font-weight: bold;
  color: #ffffff;
  padding: 5px 0 0 25px;
}
#policy h3::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 8px;
  margin: 0 5px 0 0;
  position: absolute;
  top: 15px;
  left: 19px;
}
#policy p.txt {
  font-size: 1.6rem;
  color: #585858;
}
#policy p.intro {
  padding: 24px 0 32px;
}
#policy p.point {
  padding-left: 1.2em;
  text-indent: -1.2em;
}
#policy p.point::before {
  content: "・";
}
#policy p.inner {
  padding: 0 0 0 36px;
}
#policy p.inner.point {
  padding: 0 0 0 52px;
}
#policy p.att {
  color: #11CC64;
}
#policy .policy_box {
  margin: 0 0 32px;
}
#policy .policy_box h4 {
  width: 100%;
  height: 32px;
  border-bottom: 1px solid #11CC64;
  position: relative;
  margin: 0 0 15px;
}
#policy .policy_box h4 p {
  font-size: 1.8rem;
  color: #11CC64;
  font-weight: bold;
  padding: 0 0 5px 19px;
}
#policy .policy_box h4::before {
  content: "";
  display: block;
  width: 7px;
  height: 32px;
  background: #11CC64;
  position: absolute;
  top: 0;
  left: 0;
}
#policy .policy_box h5 {
  font-size: 1.6rem;
  color: #11CC64;
  font-weight: bold;
  padding: 26px 0 0 20px;
}

@media only screen and (min-width:641px) and (max-width:959px), only screen and (max-width:640px) {
  #policy {
    margin: 130px auto 210px;
  }
  #policy h3 {
    margin: 52px auto 0;
  }
  #policy h3 p {
    font-size: 1.8rem;
    padding: 8px 0 0 25px;
  }
  #policy .policy_box {
    margin: 0 0 48px;
  }
  #policy .policy_box p.inner {
    padding: 0 0 0 16px;
  }
  #policy .policy_box p.inner.point {
    padding: 0 0 0 32px;
  }
  #policy .policy_box h5 {
    padding: 26px 0 8px;
  }
}
.online_top {
  max-width: 960px;
  width: 100%;
  margin: 220px auto 48px;
  padding: 60px 0 0;
}
.online_top img {
  display: block;
  width: 100%;
}

._phone {
  display: none;
}

@media only screen and (min-width:641px) and (max-width:959px), only screen and (max-width:640px) {
  .online_top {
    margin: 40px auto 0;
    padding: 110px 0 0;
  }
}
#online {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 48px auto 210px;
}
#online figure img {
  display: block;
  width: 100%;
}
#online p.intro {
  width: 100%;
  margin: 50px auto;
  font-size: 1.6rem;
  color: #585858;
  text-align: center;
  line-height: 1.8;
}
#online p.intro span.green {
  color: #11CC64;
}
#online p.intro span.line {
  position: relative;
}
#online p.intro span.line::after {
  content: "";
  display: block;
  width: 100%;
  height: 7px;
  background: #FFE9E5;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#online figure.terminal {
  max-width: 377px;
  margin: 0 auto;
}
#online h3 {
  width: calc(100% - 19px);
  background: #11CC64;
  height: 45px;
  border-radius: 20px 0 0 0;
  padding: 0 0 0 19px;
  position: relative;
  margin: 80px auto 52px;
}
#online h3 p {
  font-size: 2.3rem;
  font-weight: bold;
  color: #ffffff;
  padding: 5px 0 0 25px;
}
#online h3::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 8px;
  margin: 0 5px 0 0;
  position: absolute;
  top: 15px;
  left: 19px;
}
#online .online_targetitems {
  display: flex;
}
#online .online_targetitems .bnr {
  margin-right: 30px;
}
#online .online_targetitems .bnr:last-child {
  margin-right: 0;
}
#online .online_targetitems .bnr a:hover {
  opacity: 0.8;
}
#online .online_targetitems .bnr p {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}
#online .online_targetitems.shop {
  margin-top: 30px;
}
#online .online_targetitems.shop .bnr {
  max-width: 300px;
}
#online .online_flow {
  display: flex;
  justify-content: center;
  max-width: 960px;
}
#online .online_flow .box {
  width: calc(100% - 24px);
  border: 2px solid #11CC64;
  background: #EBFFF4;
  border-radius: 20px 0 0 0;
  position: relative;
}
#online .online_flow .box h5 {
  display: inline-block;
  position: absolute;
  padding: 0 10px;
  background: #fff;
  top: -30px;
  right: 10px;
}
#online .online_flow .box h5 p {
  font-size: 1.8rem;
  color: #FA9985;
}
#online .online_flow .box h5 p span {
  font-size: 4rem;
}
#online .online_flow .box .box_inner {
  padding: 50px 0 20px;
  background: #fff;
  border-radius: 20px 0 0 0;
}
#online .online_flow .box .box_inner p {
  font-size: 2rem;
  font-weight: bold;
  color: #11CC64;
  text-align: center;
  margin: 0 auto 32px;
}
#online .online_flow .box .box_inner figure {
  margin: 0 auto;
}
#online .online_flow .box .box_inner figure img {
  display: block;
  width: 100%;
}
#online .online_flow .box .step_desc {
  padding: 13px 20px 18px;
}
#online .online_flow .box .step_desc p {
  font-size: 1.6rem;
  color: #585858;
}
#online .online_flow .box:not(:last-child) {
  margin: 0 30px 0 0;
  position: relative;
}
#online .online_flow .box:not(:last-child)::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 4px solid #11CC64;
  border-right: 4px solid #11CC64;
  transform: rotate(45deg);
  position: absolute;
  top: 150px;
  right: -22px;
}
#online .online_flow .step01 .box_inner figure {
  width: 96px;
}
#online .online_flow .step02 .box_inner figure {
  width: 89px;
}
#online .online_flow .step03 .box_inner figure {
  width: 83px;
}
#online figure.arrow {
  width: 232px;
  margin: 65px auto;
}
#online .start {
  max-width: 960px;
  margin: 0 auto;
  border: 2px solid #11CC64;
  border-radius: 20px 0 20px 0;
  position: relative;
}
#online .start h5 {
  position: absolute;
  display: inline-block;
  padding: 0 10px;
  background: #fff;
  top: -25px;
  left: calc(50% - 202px);
}
#online .start h5 p {
  font-size: 3.2rem;
  color: #11CC64;
  text-align: center;
}
#online .start .start_inner {
  padding: 40px 0 32px;
}
#online .start .start_inner p {
  font-size: 1.6rem;
  color: #585858;
  text-align: center;
  margin: 0 auto 36px;
}
#online .start .start_inner figure {
  width: 568px;
  margin: 0 auto;
}
#online .start .start_inner figure img {
  display: block;
  width: 100%;
}
#online .subscription_btn {
  max-width: 350px;
  margin: 80px auto 0;
}
#online .subscription_btn a {
  display: block;
  width: 100%;
}
#online .subscription_btn a img {
  display: block;
  width: 100%;
}

@media only screen and (min-width:641px) and (max-width:959px), only screen and (max-width:640px) {
  #online p.intro {
    margin: 80px auto;
  }
  #online h3 {
    margin: 80px auto 75px;
  }
  #online h3.target {
    margin-bottom: 0;
  }
  #online .online_targetitems {
    flex-direction: column;
  }
  #online .online_targetitems .bnr {
    margin-right: 0;
    text-align: center;
    margin: 0 auto;
    margin-top: 30px;
  }
  #online .online_targetitems .bnr:last-child {
    margin-right: auto;
  }
  #online .online_flow {
    flex-direction: column;
  }
  #online .online_flow .box {
    width: calc(100% - 44px);
    min-width: 236px;
    max-width: 600px;
    margin: 0 auto;
  }
  #online .online_flow .box:not(:last-child) {
    margin: 0 auto 80px;
  }
  #online .online_flow .box:not(:last-child)::after {
    transform: rotate(135deg);
    top: auto;
    bottom: -40px;
    right: calc(50% - 8px);
  }
  #online figure.arrow {
    margin: 50px auto;
  }
  #online .start {
    width: calc(100% - 24px);
    min-width: 256px;
    max-width: 640px;
    margin: 0 auto;
    position: static;
    padding: 32px 10px;
  }
  #online .start h5 {
    display: block;
    position: static;
    margin: 0 auto 26px;
    padding: 0;
    background: rgba(255, 255, 255, 0);
  }
  #online .start h5 p {
    font-size: 2.1rem;
  }
  #online .start .start_inner {
    padding: 0;
  }
  #online .start .start_inner p {
    font-size: 1.4rem;
    margin: 0 auto 22px;
  }
  #online .start .start_inner figure {
    width: calc(100% - 20px);
    max-width: 314px;
  }
  #online .subscription_btn {
    margin: 40px auto 0;
  }
}
@media only screen and (max-width:640px) {
  ._display {
    display: none;
  }

  ._phone {
    display: block;
  }

  #online p.intro {
    font-size: 1.4rem;
  }
  #online h3 p {
    font-size: 2rem;
    padding: 7px 0 0 25px;
  }
}
#about {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 220px auto 200px;
  padding: 240px 0 0;
}
#about .about_intro {
  margin: 0 auto 195px;
  position: relative;
}
#about .about_intro .left {
  border: 2px solid #11CC64;
  border-radius: 20px;
  max-width: 431px;
  width: calc(100% - 184px);
  padding: 80px 90px;
}
#about .about_intro .left h2.about {
  display: inline-block;
  position: relative;
  margin: 0 0 24px;
}
#about .about_intro .left h2.about p {
  font-size: 3.6rem;
  color: #11CC64;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.29rem;
}
#about .about_intro .left h2.about::after {
  content: "";
  display: block;
  width: 100%;
  height: 14px;
  background: #FFE9E5;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: -1;
}
#about .about_intro .left p {
  font-size: 2rem;
  color: #11CC64;
}
#about .about_intro .right {
  position: absolute;
  bottom: -92px;
  right: -2px;
  max-width: 500px;
  width: calc(100% - 40px);
  padding: 20px;
  background: #fff;
  z-index: 1;
}
#about .about_intro .right p {
  font-size: 2rem;
  color: #11CC64;
  font-weight: bold;
  line-height: 1.8;
}
#about h3 {
  width: calc(100% - 19px);
  background: #11CC64;
  height: 45px;
  border-radius: 20px 0 0 0;
  padding: 0 0 0 19px;
  position: relative;
  margin: 0 auto 52px;
}
#about h3 p {
  font-size: 2.3rem;
  font-weight: bold;
  color: #ffffff;
  padding: 5px 0 0 25px;
}
#about h3::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 8px;
  margin: 0 5px 0 0;
  position: absolute;
  top: 15px;
  left: 19px;
}
#about #about01 {
  margin: 0 auto 120px;
}
#about #about01 p.promise_txt {
  font-size: 2rem;
  text-align: center;
}
#about #about01 p.promise_txt span {
  color: #11CC64;
  font-weight: bold;
}
#about #about01 .promise {
  display: flex;
  justify-content: center;
  margin: 230px auto 60px;
}
#about #about01 .promise .box {
  width: calc(100% - 20px);
  max-width: 300px;
  position: relative;
  border: 2px solid #FA9985;
  margin: 0;
}
#about #about01 .promise .box figure {
  width: calc(100% + 4px);
  position: absolute;
  top: -160px;
  left: -2px;
}
#about #about01 .promise .box figure img {
  display: block;
  width: 100%;
}
#about #about01 .promise .box p {
  font-size: 1.6rem;
  color: #585858;
  padding: 40px 25px 30px;
  text-align: left;
}
#about #about01 .promise .promise01,
#about #about01 .promise .promise02 {
  margin: 0 30px 0 0;
}
#about #about02 {
  margin: 0 auto 120px;
}
#about #about02 .president {
  display: flex;
}
#about #about02 .president .left {
  width: calc(100% - 334px);
  margin: 0 32px 0 52px;
}
#about #about02 .president .left h4 {
  color: #585858;
  margin: 0 0 22px;
}
#about #about02 .president .left h4 span {
  font-size: 1.4rem;
  font-weight: bold;
}
#about #about02 .president .left h4 p {
  font-size: 2rem;
  font-weight: bold;
}
#about #about02 .president .left p {
  font-size: 1.6rem;
  color: #585858;
  line-height: 1.8;
}
#about #about02 .president .right {
  width: 250px;
}
#about #about02 .president .right img {
  display: block;
  width: 100%;
}
#about #about03 h3 {
  margin: 0 auto;
}
#about #about03 .access {
  width: calc(100% - 40px);
  max-width: 800px;
  margin: 0 auto;
}
#about #about03 .access .box {
  display: flex;
  max-width: 550px;
  margin: 0 auto;
  padding: 40px 0;
}
#about #about03 .access .box span {
  font-size: 1.6rem;
  font-weight: bold;
  color: #FA9985;
  width: 190px;
}
#about #about03 .access .box p {
  font-size: 1.6rem;
  color: #585858;
}
#about #about03 .access .box:nth-child(2) {
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
}
#about #about03 iframe {
  width: 100%;
  height: 600px;
}

@media only screen and (min-width:641px) and (max-width:959px), only screen and (max-width:640px) {
  #about {
    margin: 120px auto 210px;
    padding: 140px 0 0;
  }
  #about .about_intro {
    margin: 0 auto 120px;
    position: static;
  }
  #about .about_intro .left {
    width: calc(100% - 64px);
    padding: 40px 32px;
    max-width: 549px;
  }
  #about .about_intro .right {
    position: static;
    max-width: 100%;
    width: calc(100% - 20px);
    padding: 30px 0 0 20px;
  }
  #about h3 {
    margin: 0 auto 45px;
  }
  #about h3 p {
    font-size: 1.8rem;
    padding: 8px 0 0 25px;
  }
  #about #about01 .promise {
    flex-direction: column;
    margin: 0 auto 60px;
  }
  #about #about01 .promise .box {
    max-width: 260px;
    margin: 180px auto 0;
  }
  #about #about01 .promise .box figure {
    top: -140px;
  }
  #about #about01 .promise .promise01,
#about #about01 .promise .promise02 {
    margin: 180px auto 0;
  }
  #about #about02 .president {
    flex-direction: column-reverse;
  }
  #about #about02 .president .left {
    width: calc(100% - 40px);
    margin: 40px auto 0;
  }
  #about #about02 .president .right {
    margin: 0 auto;
  }
}
@media only screen and (max-width:640px) {
  #about .about_intro .left {
    width: calc(100% - 24px);
    padding: 30px 12px;
  }
  #about .about_intro .left h2.about {
    margin: 0 0 12px;
  }
  #about .about_intro .left h2.about p {
    font-size: 2rem;
    letter-spacing: 0.24rem;
  }
  #about .about_intro .left h2.about::after {
    height: 8px;
  }
  #about .about_intro .left p {
    font-size: 1.4rem;
  }
  #about .about_intro .right {
    padding: 30px 0 0 14px;
  }
  #about .about_intro .right p {
    font-size: 1.4rem;
  }
  #about #about01 p.promise_txt {
    font-size: 1.8rem;
    text-align: left;
  }
  #about #about01 p.promise_txt span {
    display: block;
  }
  #about #about03 .access {
    width: 100%;
  }
  #about #about03 .access .box {
    display: block;
    width: calc(100% - 40px);
    padding: 32px 0;
  }
  #about #about03 .access .box p {
    padding: 20px 0 0;
  }
  #about #about03 .access .box:nth-child(3) {
    margin: 0 auto 52px;
  }
  #about #about03 .access iframe {
    height: 251px;
  }
}
#company {
  max-width: 800px;
  width: calc(100% - 40px);
  margin: 220px auto;
  padding: 240px 0 0;
}
#company figure {
  margin: 10px 0;
}
#company table {
  display: block;
}
#company table tbody {
  display: block;
}
#company table tbody tr {
  display: block;
  border-bottom: 1px solid #e6e6e6;
}
#company table tbody tr th, #company table tbody tr td {
  font-size: 1.6rem;
  color: #585858;
}
#company table tbody tr th {
  font-weight: bold;
  width: 232px;
  padding: 32px 0 32px 32px;
}
#company table tbody tr td {
  padding: 32px 0;
}
#company table tbody tr td span.important {
  color: #FA9985;
}
#company table tbody tr td p.point {
  padding-left: 1.2em;
  text-indent: -1.2em;
}
#company table tbody tr td p.point::before {
  content: "・";
}

@media only screen and (min-width:641px) and (max-width:959px), only screen and (max-width:640px) {
  #company {
    margin: 120px auto 210px;
    padding: 140px 0 0;
  }
}
@media only screen and (max-width:640px) {
  #company table tbody tr th {
    padding: 5px 0;
    width: 111px;
  }
  #company table tbody tr td {
    padding: 5px 0 60px;
  }
  #company table tbody tr td span {
    display: block;
  }
}
#contact {
  max-width: 730px;
  width: calc(100% - 40px);
  margin: 220px auto 200px;
  padding: 240px 0 0;
}
#contact ._display {
  display: block;
}
#contact ._mobile {
  display: none;
}
#contact figure {
  max-width: 730px;
  width: 100%;
  margin: 0 auto 22px;
}
#contact figure img {
  display: block;
  width: 100%;
}
#contact a._display,
#contact a._mobile {
  max-width: 730px;
  width: 100%;
  margin: 0 auto 22px;
}
#contact a._display img,
#contact a._mobile img {
  display: block;
  width: 100%;
}
#contact .contact_btn {
  max-width: 370px;
  margin: 24px auto 80px;
}
#contact .contact_btn a img {
  display: block;
  width: 100%;
}
#contact figure.step {
  max-width: 500px;
  margin: 80px auto 48px;
}

@media only screen and (min-width:641px) and (max-width:959px), only screen and (max-width:640px) {
  #contact {
    margin: 120px auto 210px;
    padding: 140px 0 0;
  }
}
@media only screen and (max-width:640px) {
  #contact ._display {
    display: none;
  }
  #contact ._mobile {
    display: block;
  }
  #contact .bnr {
    width: calc(100% - 40px);
  }
  #contact figure {
    margin: 0 auto;
  }
  #contact a._mobile {
    margin: 0 auto;
    width: calc(100% - 40px);
  }
  #contact figure.step {
    margin: 120px auto 48px;
  }
  #contact .contact_btn {
    width: calc(100% - 40px);
    margin: 24px auto 40px;
  }
}
#contact.input .box {
  display: flex;
  align-items: center;
  padding: 32px 0 0;
}
#contact.input .box label {
  display: block;
  width: 210px;
}
#contact.input .box label p {
  font-size: 1.6rem;
  color: #585858;
}
#contact.input .box label p span {
  font-size: 1.2rem;
  color: #fff;
  background: #FF5353;
  border-radius: 3px;
  padding: 1px 5px;
  margin: 0 0 0 10px;
}
#contact.input .box .inputbox,
#contact.input .box .checkbox {
  width: calc(100% - 210px);
}
#contact.input .box .checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#contact.input .box .checkbox p {
  width: calc(100% - 18px);
  font-size: 1.6rem;
  color: #585858;
  padding: 0 0 0 5px;
  margin: 0 0 10px;
}
#contact.input .box .checkbox input {
  margin: 0 0 10px;
}
#contact.input .box .checkbox input[type=checkbox i] {
  border: 1px solid #585858;
  border-radius: 50%;
  width: 13px;
  height: 13px;
}
#contact.input .box .inputbox input {
  display: block;
  width: calc(100% - 42px);
  border: 1px solid #E0DDDD;
  border-radius: 5px;
  padding: 4px 20px;
  font-size: 1.6rem;
  color: #585858;
}
#contact.input .box .inputbox input::placeholder {
  color: #E0DDDD;
}
#contact.input .box01 {
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px dashed #E6E6E6;
}
#contact.input .box02 {
  align-items: flex-start;
}
#contact.input .box03 {
  text-align: center;
}
#contact.input .box03 p {
  font-size: 1.6rem;
  color: #585858;
  margin: 72px auto;
}
#contact.input .box03 p a {
  color: #11CC64;
}
#contact.input .box03 .inputbox input {
  display: block;
  max-width: 300px;
  width: calc(100% - 40px);
  height: 60px;
  margin: 0 auto;
  border: none;
  text-indent: -9999px;
  background: url(../images/contact/confirm_button.svg) no-repeat;
  background-size: contain;
  opacity: 1;
  transition: 0.3s;
  cursor: pointer;
}
#contact.input .box03 .inputbox input:hover {
  opacity: 0.7;
}

@media only screen and (max-width:640px) {
  #contact.input .box {
    display: block;
  }
  #contact.input .box label {
    width: 100%;
    margin: 0 0 8px;
  }
  #contact.input .box .inputbox,
#contact.input .box .checkbox {
    width: 100%;
    padding: 0;
  }
}
#contact.confirm figure.step {
  margin: 0 auto 48px;
}
#contact.confirm h4 {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 auto 10px;
}
#contact.confirm p {
  font-size: 1.6rem;
  color: #585858;
}
#contact.confirm p.to_finish {
  margin: 0 auto 42px;
}
#contact.confirm .formTable {
  display: block;
}
#contact.confirm .formTable tbody {
  display: block;
}
#contact.confirm .formTable tbody tr {
  display: block;
  border-top: 2px solid #fff;
}
#contact.confirm .formTable tbody tr th, #contact.confirm .formTable tbody tr td {
  font-size: 1.6rem;
  color: #585858;
}
#contact.confirm .formTable tbody tr th {
  width: 190px;
  background: #EBFFF4;
  padding: 32px 0 32px 20px;
}
#contact.confirm .formTable tbody tr td {
  width: calc(100% - 230px);
  padding: 32px 0 32px 20px;
}
#contact.confirm .confirm_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 72px auto 0;
}
#contact.confirm .confirm_btn input {
  display: block;
  max-width: 300px;
  width: calc(100% - 40px);
  height: 60px;
  margin: 0 auto;
  border: none;
  text-indent: -9999px;
  opacity: 1;
  transition: 0.3s;
  cursor: pointer;
}
#contact.confirm .confirm_btn input:hover {
  opacity: 0.7;
}
#contact.confirm .confirm_btn input[type=button] {
  margin: 0 20px 0 0;
  background: url(../images/contact/back_button.png) no-repeat 0 0;
  background-size: contain;
}
#contact.confirm .confirm_btn input[type=submit] {
  margin: 0;
  background: url(../images/contact/finish_button.png) no-repeat 0 0;
  background-size: contain;
}

@media only screen and (max-width:640px) {
  #contact.confirm .formTable tbody tr th, #contact.confirm .formTable tbody tr td {
    display: block;
  }
  #contact.confirm .formTable tbody tr th {
    width: calc(100% - 20px);
    padding: 10px 0 10px 20px;
  }
  #contact.confirm .formTable tbody tr td {
    width: calc(100% - 20px);
    padding: 10px 0 32px 20px;
  }
  #contact.confirm .confirm_btn {
    display: block;
  }
  #contact.confirm .confirm_btn input[type=button] {
    margin: 0 auto 20px;
  }
}
#contact.finish figure.step {
  margin: 0 auto 48px;
}
#contact.finish p {
  font-size: 1.6rem;
  color: #585858;
}
#contact.finish .finish_btn {
  display: block;
  max-width: 300px;
  width: calc(100% - 40px);
  margin: 72px auto 0;
}
#contact.finish .finish_btn a {
  display: block;
  width: 100%;
}
#contact.finish .finish_btn a img {
  display: block;
  width: 100%;
}

#recruit {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 220px auto 200px;
  padding: 240px 0 0;
}
#recruit h3 {
  width: calc(100% - 19px);
  background: #11CC64;
  height: 45px;
  border-radius: 20px 0 0 0;
  padding: 0 0 0 19px;
  position: relative;
  margin: 0 auto 40px;
}
#recruit h3 p {
  font-size: 2.3rem;
  font-weight: bold;
  color: #ffffff;
  padding: 5px 0 0 25px;
}
#recruit h3::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 8px;
  margin: 0 5px 0 0;
  position: absolute;
  top: 15px;
  left: 19px;
}
#recruit .recruit_box {
  margin: 0 auto 120px;
}
#recruit .recruit_box .intro_txt {
  font-size: 1.6rem;
  color: #585858;
  margin: 0 auto 10px;
}
#recruit .recruit_box table {
  display: block;
}
#recruit .recruit_box table tbody {
  display: block;
}
#recruit .recruit_box table tbody tr {
  display: block;
  border-bottom: 1px solid #e6e6e6;
}
#recruit .recruit_box table tbody tr th, #recruit .recruit_box table tbody tr td {
  font-size: 1.6rem;
  color: #333333;
  padding: 32px 0;
}
#recruit .recruit_box table tbody tr th {
  font-weight: bold;
  width: 250px;
}
#recruit .recruit_box table tbody tr td p.point {
  padding-left: 1.2em;
  text-indent: -1.2em;
}
#recruit .recruit_box table tbody tr td p.point::before {
  content: "・";
}
#recruit .recruit_box table tbody tr td .shift {
  display: flex;
}
#recruit .recruit_box table tbody tr td .shift p:first-child {
  margin: 0 18px 0 0;
}
#recruit .recruit_box table tbody tr td .shift:first-child {
  margin: 0 auto 24px;
}

@media only screen and (min-width:641px) and (max-width:959px), only screen and (max-width:640px) {
  #recruit {
    margin: 120px auto 210px;
    padding: 140px 0 0;
  }
}
@media only screen and (max-width:640px) {
  #recruit .recruit_box table tbody tr th {
    width: 120px;
  }
  #recruit .recruit_box table tbody tr td .shift {
    display: block;
  }
  #recruit .recruit_box table tbody tr td .shift p:first-child {
    margin: 0;
  }
}
#news_list {
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 220px auto 200px;
  padding: 240px 0 0;
}
#news_list h3 {
  width: calc(100% - 19px);
  background: #11CC64;
  height: 45px;
  border-radius: 20px 0 0 0;
  padding: 0 0 0 19px;
  position: relative;
  margin: 0 auto 52px;
}
#news_list h3 p {
  font-size: 2.3rem;
  font-weight: bold;
  color: #ffffff;
  padding: 5px 0 0 25px;
}
#news_list h3::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 8px;
  margin: 0 5px 0 0;
  position: absolute;
  top: 15px;
  left: 19px;
}
#news_list .news_topics {
  padding: 13px 0;
  border-bottom: 0.5px dashed #11CC64;
  position: relative;
}
#news_list .news_topics::after {
  content: "";
  display: block;
  background: url(../images/index/plus_icon@2x.png) no-repeat;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 16px;
  right: 0;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
#news_list .news_topics h4 {
  width: calc(100% - 38px);
  position: relative;
}
#news_list .news_topics h4 span {
  position: absolute;
  font-size: 1.2rem;
  color: #9d9d9d;
  top: 4px;
  left: 0;
}
#news_list .news_topics h4 p {
  font-size: 1.6rem;
  color: #585858;
  padding: 0 0 0 84px;
  font-weight: bold;
}
#news_list .news_topics .description {
  width: calc(100% - 158px);
  margin: 16px 74px 0 auto;
}
#news_list .news_topics .description p {
  font-size: 1.4rem;
  color: #585858;
}
#news_list .news_topics .description figure {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
}
#news_list .news_topics .description figure img {
  display: block;
  width: 100%;
}
#news_list .news_topics.open {
  padding: 13px 0 35px;
}
#news_list .news_topics.open::after {
  background: url(../images/index/minus_icon@2x.png) no-repeat;
}

@media only screen and (min-width:641px) and (max-width:959px), only screen and (max-width:640px) {
  #news_list {
    margin: 120px auto 210px;
    padding: 140px 0 0;
  }
  #news_list .news_topics .description {
    width: 100%;
    margin: 16px 0 0;
  }
}
#coming_soon {
  max-width: 500px;
  width: calc(100% - 40px);
  margin: 220px auto 200px;
  padding: 180px 0 0;
  font-size: 16px;
}
#coming_soon ._display {
  display: block;
}
#coming_soon ._mobile {
  display: none;
}
#coming_soon figure {
  max-width: 500px;
  width: 100%;
  margin: 0 auto 22px;
}
#coming_soon figure img {
  display: block;
  width: 100%;
}
#coming_soon a._display,
#coming_soon a._mobile {
  max-width: 500px;
  width: 100%;
  margin: 0 auto 22px;
}
#coming_soon a._display img,
#coming_soon a._mobile img {
  display: block;
  width: 100%;
}

@media only screen and (min-width:641px) and (max-width:959px), only screen and (max-width:640px) {
  #coming_soon {
    margin: 120px auto 210px;
    padding: 140px 0 0;
  }
}