@charset "UTF-8";
/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
html, body, 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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
  padding : 20px 10px;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

html {
  -webkit-text-size-adjust: 100%;
}
html.active {
  height: 100%;
  overflow: hidden;
}
html.active body {
  height: 100%;
  overflow: hidden;
}
html.active header {
  height: 100%;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-size: 14px;
  color: #231815;
}

a {
  text-decoration: none;
  color: #231815;
	outline: none;
}
.link_white {
    text-decoration: none;
    color: #fff;
}
img {
  vertical-align: bottom;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }
}
@font-face {
     font-family: "Font Awesome 5 Free";
     font-weight: 900;
	font-style: normal;
     src: url("https://use.fontawesome.com/releases/v5.7.2/webfonts/fa-solid-900.woff2") format("woff2");
     font-display: swap;
 }
@font-face {
     font-family: "Font Awesome 5 Brands";
     font-weight: 400;
	font-style: normal;
     src: url("https://use.fontawesome.com/releases/v5.7.2/webfonts/fa-brands-400.woff2") format("woff2");
     font-display: swap;
 }
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],
select {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  cursor: pointer;
}
input[type="submit"] option,
input[type="button"] option,
select option {
  padding: 0;
  min-height: inherit;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

main {
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 109px;
  }
}

.container {
  width: 1120px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .container {
    width: 90%;
  }
}

.sm {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .sm {
    display: block !important;
  }

  .md {
    display: none !important;
  }
}
.trans {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.trans:hover,
.trans:hover img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
  opacity: 0.85;
}

.tgl {
  cursor: pointer;
}

/* ======================================================================
 header
====================================================================== */
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.9);
}
header img {
  width: 100%;
}
header.active {
  height: 70px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  header.active {
    height: 74px;
  }
}
header.active .top {
  border-top: none;
}
@media screen and (max-width: 768px) {
  header .container {
    width: 100%;
  }
}
header .top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  border-bottom: 2px solid #e7e7e7;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  header .top {
    padding: 30px 4% 10px;
  }
}
header .top > * {
  width: 50%;
}
@media screen and (max-width: 768px) {
  header .top > * {
    width: 33.33%;
  }
}
header .top .logo {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  header .top .logo {
    display: block;
  }
}
header .top .logo a {
  display: block;
  width: 137px;
}
@media screen and (max-width: 768px) {
  header .top .logo a {
    width: 92px;
  }
}
header .top .logo .catch {
  color: #fff;
  letter-spacing: 0.03em;
  margin-left: 1em;
}
header .catch_top {
  color: #231815;
  letter-spacing: 0.03em;
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  header .top .logo .catch {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    font-size: 12px;
    text-align: center;
    margin-left: 0;
  }
	header .catch_top {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    font-size: 12px;
    text-align: center;
    margin-left: 0;
  }
}
header .top .menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
header .top .menu .user {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 768px) {
  header .top .menu .user {
    order: 2;
    margin-left: 12%;
  }
}
header .top .menu .user a {
  color: black;
  text-align: center;
  margin: 0 7px;
}
header .top .menu .user a {
  color: black;
  text-align: center;
  margin: 0 7px;
}
@media screen and (max-width: 768px) {
  header .top .menu .user a {
    margin: 0;
  }
	header .top .menu .user a:last-child{
    margin: 0 0 0 10px;
  }
}
header .top .menu .user a .fas {
  font-size: 22px;
}
header .top .menu .user a span {
  display: block;
  font-size: 11px;
  margin-top: 3px;
}
header .top .menu .contact {
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  header .top .menu .contact {
    margin-left: 0;
  }
}
header .top .menu .contact .box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  header .top .menu .contact .box {
    margin-bottom: 0;
  }
}
header .top .menu .contact .box a {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  color: white;
  background: #35b597;
  text-align: center;
  font-size: 12px;
  width: 115px;
  height: 28px;
  line-height: 28px;
  padding: 0 10px;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  header .top .menu .contact .box a {
    color: black;
    background: none;
    width: auto;
    height: auto;
    padding: 0;
    margin-left: 0;
    line-height: inherit;
  }
}
header .top .menu .contact .box a .fas {
  font-size: 15px;
  vertical-align: middle;
  margin-right: 8px;
}
@media screen and (max-width: 768px) {
  header .top .menu .contact .box a .fas {
    font-size: 22px;
    margin-right: 0;
  }
}
header .top .menu .contact .txt {
  font-size: 11px;
  text-align: right;
}
header .btm {
	 font-size: 13px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
@media screen and (max-width: 768px) {
  header .btm {
    display: none;
  }
}
header .btm > a, header .btm .ch_btn {
  cursor: pointer;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  letter-spacing: 0.03em;
  text-align: center;
  width: 160px;
  margin: 18px 0;
}
header .btm > a:hover, header .btm .ch_btn:hover {
  color: #35b597;
}
header .btm > a:not(:last-child), header .btm .ch_btn:not(:last-child) {
  border-right: 2px solid #e7e7e7;
}
header .submenu .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
header .submenu .list li {
  width: 33.33%;
  text-align: center;
}
header .submenu .list li a {
  display: block;
  padding: 10px 0;
}
header .submenu .list li a .fas {
  font-size: 10px;
  vertical-align: middle;
  margin: 0 0 2px 5%;
}
header .menu_sm {
  display: none;
  position: fixed;
  left: 0;
  top: 74px;
  z-index: 99999;
  width: 100%;
  height: 100%;
}
header .menu_sm .scroll {
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
header .menu_sm .box01 {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 5%;
  letter-spacing: 0.05em;
}
header .menu_sm .box01 > .ttl {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}
header .menu_sm .box01 > .time {
  text-align: center;
  padding: 4% 4% 2%;
  font-size: 14px;
}
header .menu_sm .box01 .btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
header .menu_sm .box01 .btn a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-content: center;
  -moz-align-content: center;
  -ms-align-content: center;
  align-content: center;
  border: 1px solid #35b597;
  background: #35b597;
  color: white;
  width: 48%;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  border-radius: 7px;
  font-size: 14px;
  margin-top: 4%;
  padding: 4% 0;
}
header .menu_sm .box01 .btn a:not(:nth-child(2n)) {
  margin-right: 0%;
}
header .menu_sm .box01 .btn a.chat {
  background: #35b597;
  color: white;
	width: 100%;
	margin-right: 0;
}
header .menu_sm .box01 .btn a.active {
  background: white;
  color: #35b597;
	margin-right: 4%;
    width: 47.4%;
}
header .menu_sm .box01 .btn a.mail {
  background: white;
  color: #35b597;
	    width: 47.4%;
    margin-right: 0%;
}
header .menu_sm .box01 .btn a .img {
  text-align: right;
  width: 40%;
}
header .menu_sm .box01 .btn a .img i:not(.arrow) {
  font-size: 20px;
  vertical-align: middle;
}
header .menu_sm .box01 .btn a .img i.arrow {
  vertical-align: top;
}
header .menu_sm .box01 .btn a .ttl {
  text-align: left;
    padding-left: 15px;
    width: 60%;
    padding-top: 1%;
}
header .menu_sm .box01 .btn a .ttl.fs {
  letter-spacing: -0.07em;
}
header .menu_sm .box01 .btn a.telbtn .img {
  width: 30%;
}
header .menu_sm .box01 .btn a.telbtn .ttl {
  width: 70%;
}
header .menu_sm .box01 .btn a.mail .img {
  width: 20%;
}
header .menu_sm .box01 .btn a.mail .ttl {
      width: 80%;
    padding-left: 5px;
}
header .menu_sm .box01 .btn a.mailbtn .img {
  width: 20%;
}
header .menu_sm .box01 .btn a.mailbtn .ttl {
  width: 80%;
}
header .menu_sm .box02 {
  background-color: rgba(255, 255, 255, 0.9);
}
header .menu_sm .box02 .list li {
  border-top: 2px solid #cccccc;
  padding: 5%;
}
header .menu_sm .box02 .list li > a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  font-size: 16px;
}
header .menu_sm .box02 .list li > a span {
  font-size: 14px;
}
header .menu_sm .box02 .list li > a i {
  margin-right: 0.5em;
  font-size: 20px;
}
header .menu_sm .box02 .list li .ttl {
  font-size: 16px;
}
header .menu_sm .box02 .list li .sub_ttl {
  color: #038e7c;
  font-size: 16px;
  position: relative;
  padding: 5% 4% 2%;
}
header .menu_sm .box02 .list li .sub_ttl:before {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  vertical-align: middle;
  margin-right: 0.5em;
  font-weight: bold;
}
header .menu_sm .box02 .list li .sub_ttl.active:before {
  content: "\f077";
}
header .menu_sm .box02 .list li .sub_list {
  padding-left: 9%;
}
header .menu_sm .box02 .list li .sub_list a {
  display: block;
  line-height: 2;
}
header .menu_sm .box02 .list li .tag {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 9%;
}
header .menu_sm .box02 .list li .tag a {
  font-size: 12px;
  padding: 0 3%;
  border: 1px solid;
  -moz-border-radius: 22px;
  -webkit-border-radius: 22px;
  border-radius: 22px;
  height: 22px;
  line-height: 22px;
  margin: 3% 3% 0 0;
}
header .menu_sm .box03 {
/*  background-color: rgba(79, 79, 79, 0.9); */
  background-color: #fdd000;
  padding: 5% 5% 20%;
}
header .menu_sm .box03 > .ttl {
  text-align: center;
  color: #434343;
  font-size: 16px;
}
header .menu_sm .box03 .link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 7%;
}
header .menu_sm .box03 .link a {
  text-align: center;
  color: #434343;
  font-size: 11px;
  width: 33.33%;
  padding: 10px 0;
}
header .menu_sm .box03 .link a+ a {
  border-left: 1px solid #434343;
}
header .menu_sm .box03 .link a .img {
  width: 25px;
  margin: 0 auto 7%;
}

/* ======================================================================
 footer
====================================================================== */
footer {
  background: #EEE;
  padding: 50px 0 100px;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 7% 0 22%;
  }
}
@media screen and (max-width: 768px) {
  footer .container {
    width: 100%;
  }
}
footer .menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
@media screen and (max-width: 768px) {
  footer .menu {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 11px;
  }
}
footer .menu li {
  padding: 0 1em;
}
@media screen and (max-width: 768px) {
  footer .menu li {
    margin-bottom: 4%;
  }
}
footer .menu li:not(:last-child) {
  border-right: 1px solid #898989;
}
footer .menu li a {
  color: #898989;
}
footer .sns {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  margin: 60px 0 20px;
}
@media screen and (max-width: 768px) {
  footer .sns {
    margin: 8% 0 4%;
  }
}
footer .sns a {
  color: #898989;
  font-size: 44px;
  margin: 0 20px;
}
@media screen and (max-width: 768px) {
  footer .sns a {
    font-size: 25px;
    margin: 0 15px;
	  color: #898989;
  }
}
footer .copy {
  text-align: center;
  color: #898989;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  footer .copy {
    font-size: 12px;
  }
}

#gototop {
  display: none;
  cursor: pointer;
  position: fixed;
  right: 5%;
  bottom: 14%;
  border: 2px solid #898989;
  color: #898989;
  text-align: center;
  width: 70px;
  height: 70px;
  font-size: 22px;
  letter-spacing: 0.05em;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  #gototop {
    width: 40px;
    height: 40px;
    font-size: 13px;
    border-width: 1px;
    right: 5%;
    bottom: 12%;
  }
}
#gototop span {
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
}
#gototop span .fas {
  display: block;
  font-size: 20px;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  #gototop span .fas {
    font-size: 13px;
    margin-bottom: 3px;
  }
}

.chat_fixed {
  display: none;
  z-index: 9999;
  position: fixed;
  width: 71px;
  right: 5.1%;
  bottom: 26%;
}
.chat_fixed img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .chat_fixed {
    width: 66px;
    right: 2%;
    bottom: 11%;
  }
}

/* ======================================================================
 common
====================================================================== */
.news {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #F5F5F5;
  /*background-color: rgba(255, 255, 255, 0.5);*/
}
.news.under {
  position: static;
  border-top: 2px solid #e7e7e7;
}
@media screen and (max-width: 768px) {
  .news {
    position: static;
    margin-top: -40px;
    font-size: 12px;
  }
  /* .news.news_bar_position{
    position: absolute;
  } */
  .news.under {
    margin-top: 0;
  }
}
.news .container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding: 20px 70px;
}
@media screen and (max-width: 768px) {
  .news .container {
    padding: 14px 0;
  }
}
.news .container .marquee {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  letter-spacing: 0.03em;
  overflow: hidden;
  /* width: 800px; */
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news .container .marquee {
    width: 100%;
  }
}
.news .container .marquee .box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  /* animation: flowing 15s linear infinite;
  transform: translateX(100%); */
  white-space: nowrap;
}
.news .container .marquee .ttl {
  color: #038e7c;
  margin-right: 2em;
}
.news .container .marquee a {
  color: black;
}
.news .container .more {
  color: black;
  letter-spacing: 0.03em;
  font-size: 12px;
  width: 180px;
  text-align: right;
  margin-left: auto;
}
.news .container .more .fas {
  font-size: 10px;
  text-align: center;
  border: 1px solid;
  width: 11px;
  height: 11px;
  line-height: 11px;
  -moz-border-radius: 11px;
  -webkit-border-radius: 11px;
  border-radius: 11px;
  margin-left: 1em;
}
.news .container .more .fas:before {
  padding-left: 0.25em;
}

@keyframes flowing {
  100% {
    transform: translateX(-100%);
  }
}
.hospital_slider {
  background: white;
  padding: 80px 0 200px;
}
@media screen and (max-width: 768px) {
  .hospital_slider {
    padding: 0 0 32%;
  }
}
.hospital_slider.under .container {
  width: 880px;
}
@media screen and (max-width: 768px) {
  .hospital_slider.under .container {
    width: 100%;
  }
}
.hospital_slider.under .container .slick {
  width: 880px;
}
@media screen and (max-width: 768px) {
  .hospital_slider.under .container .slick {
    width: 85%;
  }
}
@media screen and (max-width: 768px) {
  .hospital_slider .container {
    width: 100%;
  }
}
.hospital_slider .container > .ttl {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .hospital_slider .container > .ttl {
    margin-bottom: 7%;
  }
}
.hospital_slider .container > .ttl span {
  display: block;
}
.hospital_slider .container > .ttl .en {
  color: #038e7c;
  font-size: 22px;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .hospital_slider .container > .ttl .en {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.hospital_slider .container > .ttl .ja {
  font-family: "Noto Serif JP", serif;
  color: black;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .hospital_slider .container > .ttl .ja {
    font-size: 20px;
  }
}
.hospital_slider .container > .txt {
  background: #a1cec9;
  color: white;
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  padding: 18px 0;
}
@media screen and (max-width: 768px) {
  .hospital_slider .container > .txt {
    font-size: 16px;
    padding: 10px 0;
  }
}
.hospital_slider .container .slick {
  width: 980px;
  margin: 50px auto 40px;
}
@media screen and (max-width: 768px) {
  .hospital_slider .container .slick {
    width: 84%;
    margin: 7% auto;
  }
}
.hospital_slider .container .slick a {
  text-align: center;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .hospital_slider .container .slick a {
    padding: 0 0.4%;
  }
}
.hospital_slider .container .slick a img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}
.hospital_slider .container .slick a .name {
  color: #898989;
  line-height: 1.5;
  font-size: 22px;
  margin: 25px 0 15px;
}
@media screen and (max-width: 768px) {
  .hospital_slider .container .slick a .name {
    font-size: 12px;
    margin: 5% 0 4%;
  }
}
.hospital_slider .container .slick a .area {
  color: #a1cec9;
  margin-top: 15px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .hospital_slider .container .slick a .area {
    margin: 0;
    font-size: 12px;
  }
}
.hospital_slider .container .slick .slick-arrow {
  cursor: pointer;
  position: absolute;
  top: 38%;
  color: #898989;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .hospital_slider .container .slick .slick-arrow {
    font-size: 15px;
  }
}
.hospital_slider .container .slick .slick-arrow.slider-prev {
  left: -50px;
}
@media screen and (max-width: 768px) {
  .hospital_slider .container .slick .slick-arrow.slider-prev {
    left: -5%;
  }
}
.hospital_slider .container .slick .slick-arrow.slider-next {
  right: -50px;
}
@media screen and (max-width: 768px) {
  .hospital_slider .container .slick .slick-arrow.slider-next {
    right: -5%;
  }
}
.hospital_slider .container .btn {
  display: block;
  color: #038e7c;
  border: #038e7c 2px solid;
  text-align: center;
  margin: 0 auto;
  font-size: 16px;
  letter-spacing: 0.05em;
  width: 216px;
  height: 46px;
  line-height: 46px;
}
@media screen and (max-width: 768px) {
  .hospital_slider .container .btn {
    width: 156px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    border-width: 1px;
    float: right;
    margin-right: 5%;
  }
}
.hospital_slider .container .btn .fas {
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  .hospital_slider .container .btn .fas {
    margin: 0 0 2px 0.5em;
    vertical-align: middle;
    font-size: 12px;
  }
}

.top_sec04 {
  background: white;
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .top_sec04 {
    padding-bottom: 10%;
  }
}
@media screen and (max-width: 768px) {
  .top_sec04 .container {
    width: 100%;
  }
}
.top_sec04 .container > .ttl {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .top_sec04 .container > .ttl {
    margin-bottom: 4%;
  }
}
.top_sec04 .container > .ttl span {
  display: block;
	font-size: 18px;
    margin-bottom: 15px;
}
.top_sec04 .container > .ttl .en {
  color: #038e7c;
  font-size: 22px;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .top_sec04 .container > .ttl .en {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .top_sec04 .container > .ttl .en2 {
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 20px;
color: black;
  }
}
.top_sec04 .container > .ttl .ja {
  font-family: "Noto Serif JP", serif;
  color: black;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .top_sec04 .container > .ttl .ja {
    font-size: 20px;
	  margin-top: 5px;
  }
	.ja_sm {
    font-size: 14px !important;
		margin-bottom: 8px !important;
  }

}
.top_sec04 .container .list a {
  color: #282828;
  position: relative;
  display: block;
  width: 100%;
  height: 400px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .top_sec04 .container .list a {
    height: 210px;
    margin-bottom: 10%;
  }
}
.top_sec04 .container .list a.case01 {
  background: url("../img/top/mom01.jpg") no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .top_sec04 .container .list a.case01 {
    background: url("../img/top/sm/mom01.jpg") no-repeat center;
    background-size: cover;
  }
}
.top_sec04 .container .list a.case02 {
  background: url("../img/top/mom02.jpg") no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .top_sec04 .container .list a.case02 {
    background: url("../img/top/sm/mom02.jpg") no-repeat center;
    background-size: cover;
  }
}
.top_sec04 .container .list a:not(:nth-child(2n)) .ttl {
  text-align: right;
  right: 0;
}
.top_sec04 .container .list a:not(:nth-child(2n)) .name {
  right: 0;
}
.top_sec04 .container .list a .ttl {
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 60px;
  width: 47%;
  height: 180px;
}
@media screen and (max-width: 768px) {
  .top_sec04 .container .list a .ttl {
    width: 210px;
    height: 113px;
    top: 40px;
  }
}
.top_sec04 .container .list a .ttl span {
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "Noto Serif JP", serif;
  width: 80%;
  font-size: 28px;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .top_sec04 .container .list a .ttl span {
    font-size: 16px;
    width: 90%;
  }
}

.top_sec04 .container .list a .ttl-special {
  /*  background-color: rgba(255, 255, 255, 0.8); */
    position: absolute;
    top: 100px;
    right: 0;
    text-align: right;
    width: 640px;
    height: 180px;
  }
  @media screen and (max-width: 768px) {
    .top_sec04 .container .list a .ttl-special {
      width: 245px;
      height: 113px;
    top: 110px;
    }
    .top_sec04 .container h3.special--cont{
      padding-top: 10px;
    }
  }
  .top_sec04 .container .list a .ttl-special span {
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: "Noto Serif JP", serif;
    width: 80%;
    font-size: 28px;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
  @media screen and (max-width: 768px) {
    .top_sec04 .container .list a .ttl-special span {
      font-size: 16px;
      width: 90%;
		line-height: 1.4;
    }
  }

.top_sec04 .container .list a .name {
  position: absolute;
  bottom: 0;
  font-size: 20px;
  letter-spacing: 0.025em;
  line-height: 1.5;
  padding: 50px 60px;
}
@media screen and (max-width: 768px) {
  .top_sec04 .container .list a .name {
    padding: 10px 5%;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .top_sec04 .container .list a .name.c01 {
    color: white;
  }
}
.top_sec04 .container .btn {
  display: block;
  color: #038e7c;
  border: #038e7c 2px solid;
  text-align: center;
  margin: 0 auto;
  font-size: 16px;
  letter-spacing: 0.05em;
  width: 216px;
  height: 46px;
  line-height: 46px;
}
@media screen and (max-width: 768px) {
  .top_sec04 .container .btn {
    width: 186px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    border-width: 1px;
    float: right;
    margin-right: 5%;
  }
}
.top_sec04 .container .btn .fas {
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  .top_sec04 .container .btn .fas {
    margin: 0 0 2px 0.5em;
    vertical-align: middle;
    font-size: 12px;
  }
}

.interview_slider {
  background: white;
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .interview_slider {
    padding-bottom: 25%;
  }
}
.interview_slider .container > .ttl {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .interview_slider .container > .ttl {
    margin-bottom: 7%;
  }
}
.interview_slider .container > .ttl span {
  display: block;
}
.interview_slider .container > .ttl .en {
  color: #038e7c;
  font-size: 22px;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .interview_slider .container > .ttl .en {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.interview_slider .container > .ttl .ja {
  font-family: "Noto Serif JP", serif;
  color: black;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .interview_slider .container > .ttl .ja {
    font-size: 20px;
  }
}
.interview_slider .container .slick {
  width: 1040px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .interview_slider .container .slick {
    width: 86%;
  }
}
.interview_slider .container .slick .box {
  background: #f1f0e0;
  letter-spacing: 0.05em;
  margin: 0 30px;
  padding: 30px 40px;
}
@media screen and (max-width: 768px) {
  .interview_slider .container .slick .box {
    margin: 0;
    padding: 1.2%;
  }
}
.interview_slider .container .slick .box .img {
  margin: 0 auto;
  width: 162px;
}
@media screen and (max-width: 768px) {
  .interview_slider .container .slick .box .img {
    width: 120px;
  }
}
.interview_slider .container .slick .box .img img {
  width: 100%;
}
.interview_slider .container .slick .box .name {
  color: #038e7c;
  text-align: center;
  margin: 20px 0;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .interview_slider .container .slick .box .name {
    font-size: 14px;
    margin: 4% 0 7%;
  }
}
.interview_slider .container .slick .box .ttl {
  position: relative;
  font-family: "Noto Serif JP", serif;
  color: black;
  line-height: 1.7;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .interview_slider .container .slick .box .ttl {
    font-size: 16px;
  }
}
.interview_slider .container .slick .box .ttl:before {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  background: #038e7c;
  width: 4px;
  height: 32px;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .interview_slider .container .slick .box .ttl:before {
    width: 3px;
    height: 22px;
    margin-right: 10px;
  }
}
.interview_slider .container .slick .box > .txt {
  line-height: 2;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .interview_slider .container .slick .box > .txt {
    margin: 5% 0;
    line-height: 1.8;
  }
}
.interview_slider .container .slick .box .link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  background: white;
  padding: 7px 30px;
}
@media screen and (max-width: 768px) {
  .interview_slider .container .slick .box .link {
    padding: 2% 6%;
  }
}
.interview_slider .container .slick .box .link .img {
  width: 44px;
}
@media screen and (max-width: 768px) {
  .interview_slider .container .slick .box .link .img {
    width: 15%;
  }
}
.interview_slider .container .slick .box .link .img img {
  width: 100%;
}
.interview_slider .container .slick .box .link .txt {
  width: 256px;
  color: #898989;
  line-height: 1.7;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .interview_slider .container .slick .box .link .txt {
    font-size: 14px;
    width: 81%;
    margin-left: 4%;
  }
}
.interview_slider .container .slick .slick-arrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  color: #898989;
  font-size: 30px;
  margin-top: -15px;
}
@media screen and (max-width: 768px) {
  .interview_slider .container .slick .slick-arrow {
    font-size: 15px;
  }
}
.interview_slider .container .slick .slick-arrow.slider-prev {
  left: -50px;
}
@media screen and (max-width: 768px) {
  .interview_slider .container .slick .slick-arrow.slider-prev {
    left: -10%;
  }
}
.interview_slider .container .slick .slick-arrow.slider-next {
  right: -50px;
}
@media screen and (max-width: 768px) {
  .interview_slider .container .slick .slick-arrow.slider-next {
    right: -10%;
  }
}

.cha_cat {
  display: inline-block;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  letter-spacing: 0.05em;
  border-width: 2px;
  border-style: solid;
  font-size: 18px;
  padding: 4px 14px;
}
@media screen and (max-width: 768px) {
  .cha_cat {
    font-size: 13px;
    padding: 4px 10px;
    border-width: 1px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
  }
}
.cha_cat.c01 {
  border-color: #63c887;
  color: #63c887;
}
.cha_cat.c02 {
  border-color: #eb8baf;
  color: #eb8baf;
}
.cha_cat.c03 {
  border-color: #efaf6a;
  color: #efaf6a;
}
.cha_cat.c04 {
  border-color: #6fb8e6;
  color: #6fb8e6;
}

.cha_btm {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.cha_btm > * {
  width: 50%;
  letter-spacing: 0.05em;
}
.cha_btm .date {
  color: #898989;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .cha_btm .date {
    font-size: 12px;
  }
}
.cha_btm .count {
  text-align: right;
  color: #da7b00;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .cha_btm .count {
    font-size: 14px;
  }
}
.cha_btm .count img {
  display: inline-block;
  vertical-align: baseline;
  width: 20px;
  margin-right: 8px;
}

.common_gift {
  background: white;
  padding-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .common_gift {
    padding: 5% 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  .common_gift.under {
    padding: 0 0 20%;
  }
}
.common_gift.under .container {
  width: 880px;
}
@media screen and (max-width: 768px) {
  .common_gift.under .container {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .common_gift .container {
    width: 100%;
  }
}
.common_gift .container > .ttl {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .common_gift .container > .ttl {
    margin-bottom: 7%;
  }
}
.common_gift .container > .ttl span {
  display: block;
}
.common_gift .container > .ttl .en {
  color: #038e7c;
  font-size: 22px;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .common_gift .container > .ttl .en {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.common_gift .container > .ttl .ja {
  font-family: "Noto Serif JP", serif;
  color: black;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .common_gift .container > .ttl .ja {
    font-size: 20px;
  }
}
.common_gift .container .img {
  position: relative;
}
.common_gift .container .img img {
  width: 100%;
}
.common_gift .container .button--area {
  margin: 30px auto;
}
.see-gift-button {
  text-align: center;
  background-color: white;
  color: #038e7c;
  border: 2px solid #038e7c;
  font-size: 18px;
  width: 220px;
  height: 50px;
  line-height: 50px;
  position: absolute;
    bottom: -80px;
    left: 50%;
    margin: auto -110px auto;
}

.common_gift .container .img:hover {
  opacity: 0.85;
}

@media screen and (max-width: 768px) {
  .common_gift .container .button--area {
    margin: 5% 5% 30%;
  }
.see-gift-button {
    width: 155px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    border-width: 1px;
    margin: auto auto auto -73px;
  }
}
.common_gift .container .img a .fas {
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  .common_gift .container .img a .fas {
    font-size: 12px;
  }
}
.official_instagram {
  background: white;
	margin-top: 150px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .official_instagram {
    padding: 0 0 16% 0;
	  margin-top: 0px;
  }
}
.official_insta {
  background: white;
	margin-top: 150px;
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .official_insta {
    padding: 0 0 5% 0;
    margin-top: 20%;
  }
}
.logo_insta{
	width: 25px;
    margin-right: 10px;
}
@media screen and (max-width: 768px) {
.logo_insta{
	width: 15px;
    margin-right: 10px;
}
}
.official_instagram .container > .ttl {
  text-align: center;
  margin-bottom: 20px;
}
.official_insta .container > .ttl {
  text-align: center;
  margin-bottom: 20px;
}
.official_instagram .container > .ttl span {
  display: block;
}
.official_insta .container > .ttl span {
  display: block;
}
.official_instagram .container > .ttl .en {
  color: #038e7c;
  font-size: 22px;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.official_insta .container > .ttl .en {
  color: #038e7c;
  font-size: 22px;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .official_insta .container > .ttl .en {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .official_insta .container > .ttl .en {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.official_insta .container > .ttl .ja {
  color: black;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .official_insta .container > .ttl .ja {
    font-size: 20px;
  }
}
.official_instagram .container > .ttl .ja {
  color: black;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .official_instagram .container > .ttl .ja {
    font-size: 20px;
  }
}
.official_insta .container > .btn {
  display: table;
  background: #35b597;
  color: white;
  text-align: center;
  margin: 0 auto;
  font-size: 18px;
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .official_insta .container > .btn {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }
}
.official_instagram .container > .btn {
  display: table;
  background: #35b597;
  color: white;
  text-align: center;
  margin: 0 auto;
  font-size: 18px;
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .official_instagram .container > .btn {
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
}
.official_insta .container > .btn .fab {
  margin: 0 10px 5px 0;
  vertical-align: middle;
  font-size: 35px;
}
@media screen and (max-width: 768px) {
  .official_insta .container > .btn .fab {
    font-size: 20px;
    margin: 0 5px 2px 0;
  }
}
.official_insta .container .insta {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .official_insta .container .insta {
    margin-top: 5%;
  }
}
.official_insta .container > .txt {
  text-align: center;
  font-size: 18px;
  margin: 40px 0 50px;
}
@media screen and (max-width: 768px) {
  .official_insta .container > .txt {
    font-size: 14px;
    line-height: 1.8;
    margin: 5% 0;
    text-align: left;
  }
}
.official_insta .container .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 880px;
  margin: 0 auto 25px;
}
@media screen and (max-width: 768px) {
  .official_insta .container .list {
    width: 100%;
  }
}
.official_insta .container .list a {
  width: 200px;
  margin-bottom: 26px;
}
.official_insta .container .list li {
  width: 200px;
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  .official_insta .container .list li{
    width: 48%;
  }
  .official_insta .container .list a {
    margin-bottom: 5%;
    width: 47.5%;
  }
}
.official_insta .container .list a img {
  width: 100%;
}
.official_insta .container .list li img {
  width: 100%;
}
.official_insta .container .list a:not(:nth-child(4n)) {
  margin-right: 26px;
}
.official_insta .container .list li:not(:nth-child(4n)) {
  margin-right: 26px;
}
@media screen and (max-width: 768px) {
  .official_insta .container .list a:not(:nth-child(4n)) {
    margin-right: auto;
  }
  .official_insta .container .list li:not(:nth-child(4n)) {
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .official_insta .container .list a:not(:nth-child(2n)) {
    margin-right: 5%;
  }
}

.official_line {
  background: #00b900;
	position: relative;
    display: flex;
    width: 100%;
    box-sizing: border-box;
  padding: 40px 0;
  letter-spacing: 0.03em;
}
.official_line .line--ico {
    display: flexbox;
    padding: 0 40px;
    width: 20%;
}

.official_line .line--ico img {
    width: 100%;
}

.official_line .intro--txt {
    display: flexbox;
    width: 80%;
    padding: 0 40px;
	border-left: 1px #fff solid;
}

.official_line .intro--txt .catch--line {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-radius: 5px;
    background-color: #fff;
    color: #00b900;
    font-size: 20px;
}

.official_line .intro--txt div .line--txt-left {
  display: flexbox;
  width: 75%;
}

.official_line .intro--txt div .line--txt-left .title--line {
        font-size: 34px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 800;
    margin-top: 25px;
}

.official_line .intro--txt div .line--txt-left .catch--line-02 {
       font-size: 20px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 500;
    margin-top: 20px;
    line-height: 1.8rem;
}

.official_line .intro--txt div .button--line {
        position: absolute;
    bottom: 0;
    right: 0;
    font-size: 24px;
    font-weight: 800;
    line-height: 2rem;
    letter-spacing: 2px;
    padding: 20px;
    border: 1px solid #fff;
    color: #fff;
}

@media screen and (max-width: 768px) {
.official_line{
    position: relative;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 0px;
    background-color: #00b900;
}

	.official_line .container {
    width: 100%;
}

.official_line .line--ico {
    display: flexbox;
    padding: 0 15px;
    width: 18%;
}

.official_line .line--ico img {
    width: 100%;
}

.official_line .intro--txt {
    display: flexbox;
    width: 82%;
    padding: 0 15px;
}

.official_line .intro--txt .catch--line {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 5px 0;
    border-radius: 5px;
    background-color: #fff;
    color: #00b900;
    font-size: 11px;
	font-weight: 600;
}

.official_line .intro--txt div .line--txt-left {
  display: flexbox;
  width: 75%;
}

.official_line .intro--txt div .line--txt-left .title--line {
    font-size: 18px;
    letter-spacing: 0.05em;
    color: #fff;
    font-weight: 800;
    margin-top: 10px;
}

.official_line .intro--txt div .line--txt-left .catch--line-02 {
        font-size: 13px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 500;
    margin-top: 8px;
    line-height: 1.2rem;
}

.official_line .intro--txt div .button--line {
        position: absolute;
    bottom: 0;
    right: 0;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2rem;
    letter-spacing: 1px;
    padding: 10px 7px;
    border: 1px solid #fff;
    color: #fff;
}
	}
/*
@media screen and (max-width: 768px) {
  .official_line {
    padding: 7% 0;
  }
}*/
@media screen and (max-width: 768px) {
  .official_line .container > .ttl {
    color: #00b900;
    font-size: 20px;
    text-align: center;
    margin-bottom: 7%;
  }
}
.official_line .box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin: 0 auto;
  width: 780px;
}
@media screen and (max-width: 768px) {
  .official_line .box {
    width: 100%;
  }
}
/*.official_line .box > * {
  text-align: center;
  width: 50%;
}*/
.official_line .box .img img {
  height: 450px;
}
@media screen and (max-width: 768px) {
  .official_line .box .img img {
    width: 80%;
    height: auto;
  }
}
.official_line .box .detail > .ttl {
  color: #00b900;
  font-size: 32px;
}
.official_line .box .detail > .txt {
  font-family: "Noto Serif JP", serif;
  line-height: 1.7;
  font-size: 20px;
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  .official_line .box .detail > .txt {
    font-size: 13px;
    margin: 7% 0 10%;
  }
}
.official_line .box .detail .coupon {
  position: relative;
  background: white;
  padding: 25px 0;
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .official_line .box .detail .coupon {
    padding: 5% 0;
    font-size: 12px;
  }
}
.official_line .box .detail .coupon:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: white transparent transparent transparent;
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin-left: -20px;
}
@media screen and (max-width: 768px) {
  .official_line .box .detail .coupon:after {
    border-width: 10px 10px 0 10px;
    bottom: -10px;
    margin-left: -10px;
  }
}
.official_line .box .detail .coupon .txt {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .official_line .box .detail .coupon .txt {
    font-size: 12px;
  }
}
.official_line .box .detail .coupon .price {
  color: #bc2221;
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .official_line .box .detail .coupon .price {
    font-size: 16px;
  }
}
.official_line .box .detail .coupon .price span {
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .official_line .box .detail .coupon .price span {
    font-size: 16px;
  }
}
.official_line .box .friend {
  display: block;
  background: #00b900;
  color: white;
  width: 270px;
  height: 68px;
  line-height: 68px;
  font-size: 22px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .official_line .box .friend {
    width: 130px;
    height: 35px;
    line-height: 35px;
    font-size: 12px;
    margin: 10% auto0;
  }
}
.official_line .box .friend img {
  vertical-align: middle;
  margin: 0 1em 5px 0;
}
@media screen and (max-width: 768px) {
  .official_line .box .friend img {
    width: 24px;
    margin: 0 10px 0 0;
  }
}

.staff_contact {
  position: relative;
  background: white;
  padding: 150px 0;
  /*&.ch {
  	&:before {
  		content: "";
  		display: block;
  		width: 100%;
  		height: 460px;
  		position: absolute;
  		left: 0;
  		top: 0;
  		background: $color09;
  	}
  }*/
}
@media screen and (max-width: 768px) {
  .staff_contact {
    padding: 20% 0 5%;
  }
}
@media screen and (max-width: 768px) {
  .staff_contact.under {
    padding: 25% 0;
  }
}
.staff_contact_foot {
    position: relative;
    background: white;
    padding: 10% 0;
}
@media screen and (max-width: 768px) {
	.staff_contact_foot {
    padding: 20% 0;
  }
}
.staff_contact.under .container {
  overflow: hidden;
  width: 880px;
}
@media screen and (max-width: 768px) {
  .staff_contact.under .container {
    width: 90%;
  }
}
.staff_contact .container .chat > .ttl {
  font-family: "Noto Serif JP", serif;
  color: black;
  text-align: center;
	font-weight: 600;
  font-size: 32px;
  line-height: 2;
  letter-spacing: 0.075em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .staff_contact .container .chat > .ttl {
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 600;
  }
}
@media screen and (max-width: 768px) {
  .staff_contact .container .chat > .ttl + .img {
    margin: 5% 0 10%;
  }
}
.staff_contact .container .chat > .txt {
  font-family: "Noto Serif JP", serif;
  color: black;
  text-align: center;
  font-size: 24px;
  line-height: 2;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 768px) {
  .staff_contact .container .chat > .txt {
    font-size: 16px;
  }
}
.staff_contact .container .chat .ttl .ja{
  font-family: "Noto Serif JP", serif;
    color: black;
    font-size: 32px;
}
@media screen and (max-width: 768px) {
  .staff_contact .container .chat .ttl .ja{
   font-size: 20px;
  }
}
.staff_contact .container .chat .contact_style {
  width: 900px;
    margin: 0 auto !important;
    padding-top: 30px;
    padding-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.8);
}
.staff_contact .container .chat .contact {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    margin-top: 70px;
  }
@media screen and (max-width: 768px) {
  .staff_contact .container .chat .contact {
    margin-top: 0;
	      padding-top: 0;
    display: block;
    background-color: rgba(255, 255, 255, 0.6);
    padding-bottom: 0;
    width: 90%;
    margin: 0 auto;
  }
}
.staff_contact .container .chat .btn {
  display: block;
  text-align: center;
  background: #35b597;
  color: white;
  margin: 0 auto;
  width: 376px;
  height: 46px;
  line-height: 46px;
  font-size: 18px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .staff_contact .container .chat .btn {
    width: 250px;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    margin: 5% auto;
  }
}
.amoma_about .container .list .btn {
		width: 160px;
    height: 40px;
    margin-top: 30px;
    line-height: 40px;
    font-size: 16px;
    /* margin: 8% auto; */
    background: #fff;
    text-align: center;
    display: block;
    color: #63bdb3;
    letter-spacing: 0.08em;
  }
@media screen and (max-width: 768px) {
.amoma_about .container .list .btn {
    width: 120px;
    height: 32px;
    margin-top: 14px;
    line-height: 30px;
    font-size: 14px;
    /* margin: 8% auto; */
    background: #fff;
    text-align: center;
    display: block;
    color: #63bdb3;
    letter-spacing: 0.08em;
  }
}
.staff_contact .container .chat .btn2 {
  display: block;
    text-align: center;
    background: white;
    color: #038e7c;
    margin: 0 20px;
    width: 376px;
    height: 46px;
    line-height: 46px;
    font-size: 18px;
    letter-spacing: 0.05em;
    border: 2px solid #35b597;
}
@media screen and (max-width: 768px) {
  .staff_contact .container .chat .btn2 {
    width: 250px;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    margin: 5% auto;
    color: #038e7c;
    background: white;
    border: 1px solid #038e7c;
  }
}
.staff_contact .container .chat .time {
  text-align: center;
  line-height: 1.7;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .staff_contact .container .chat .time {
    font-size: 15px;
  }
}
.staff_contact .container .chat .time span {
  display: block;
  font-size: 22px;
	    margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .staff_contact .container .chat .time span {
    font-size: 15px;
  }
}
.staff_contact .container .chat .img {
  position: relative;
}
.staff_contact .container .chat .img .txt {
  color: black;
  position: absolute;
  bottom: 55px;
  left: 0;
  font-family: "Noto Serif JP", serif;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px 40px;
  font-size: 28px;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .staff_contact .container .chat .img .txt {
    padding: 5%;
    font-size: 16px;
    bottom: 7%;
  }
}
.staff_contact .container .img {
  margin: 30px 0 10px;
}
@media screen and (max-width: 768px) {
  .staff_contact .container .img {
    margin: 10% 0 5%;
  }
}
.staff_contact_foot .container .other {
  text-align: center;
}
.staff_contact_foot .container .other .ttl {
  color: #4b4b4b;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .staff_contact_foot .container .other .ttl {
    font-size: 16px;
  }
}
.staff_contact_foot .container .other .btn {
  display: table;
  margin: 40px auto 0;
  color: #898989;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .staff_contact_foot .container .other .btn {
    font-size: 15px;
    margin: 7% auto 0;
  }
}
.staff_contact_foot .container .other .btn img {
  margin-right: 10px;
  width: 25px;
}
@media screen and (max-width: 768px) {
  .staff_contact_foot .container .other .btn img {
    width: 17px;
    margin: 0 5px 2px 0;
  }
}
/*
.radio_fixed {
  width: 100%;
    display: table;
    background: #f6f6ee;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9999;
}*/
.radio_fixed {
  width: 100%;
    display: table;
    background: #35b497;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9999;
}
@media screen and (max-width: 768px) {
  .radio_fixed {
    display: block;
    background: none;
  }
}
.amm_fixed {
  width: 100%;
  display: table;
  background: #40bcbc;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .amm_fixed {
    display: block;
    background: none;
  }
}
.ch_footer_fixed {
  width: 100%;
  display: table;
  background: #ffb5ce;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .ch_footer_fixed {
    display: block;
    background: none;
  }
}
/*
.radio_fixed > * {
  display: table-cell;
    vertical-align: middle;
}*/
.radio_fixed > * {
      display: table-cell;
    vertical-align: middle;
    text-align: center;
}
@media screen and (max-width: 768px) {
  .radio_fixed > * {
    display: block;
  }
}
.amm_fixed > * {
  display: table-cell;
  vertical-align: middle;
	    text-align: center;
}
@media screen and (max-width: 768px) {
  .amm_fixed > * {
    display: block;
  }
}
.ch_footer_fixed > * {
  display: table-cell;
  vertical-align: middle;
	    text-align: center;
}
@media screen and (max-width: 768px) {
 .ch_footer_fixed > * {
    display: block;
  }
}
.radio_fixed .ttl {
  width: 30%;
  background: #fdd000;
  color: white;
  text-align: right;
  letter-spacing: 0.05em;
  padding: 0 15px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .radio_fixed .ttl {
    width: 70px;
    height: 21px;
    line-height: 21px;
    padding: 0;
    text-align: center;
    font-size: 16px;
    position: absolute;
    top: -21px;
    left: 0;
  }
}
.radio_fixed .box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  width: 70%;
  padding: 0 35px;
}
@media screen and (max-width: 768px) {
  .radio_fixed .box {
    width: 100%;
    padding: 2% 3%;
  }
}
.radio_fixed .box .img {
  width: 52px;
}
@media screen and (max-width: 768px) {
  .radio_fixed .box .img {
    width: 10%;
    margin-right: 2%;
  }
}
.radio_fixed .box .img img {
  width: 100%;
}
.radio_fixed .box .detail {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  color: black;
}
@media screen and (max-width: 768px) {
  .radio_fixed .box .detail {
    display: block;
    width: 65%;
    line-height: 1.3;
  }
}
.radio_fixed .box .detail .time {
  order: 2;
}
@media screen and (max-width: 768px) {
  .radio_fixed .box .detail .time {
    font-size: 12px;
  }
}
.radio_fixed .box .detail .marquee {
  text-decoration: underline;
  margin: 0 20px 0 10px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .radio_fixed .box .detail .marquee {
    margin: 0;
    font-size: 13px;
  }
}
.radio_fixed .box .player {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .radio_fixed .box .player {
    width: 17%;
    margin-left: 0;
  }
}
.radio_fixed .box .player > * {
  cursor: pointer;
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  .radio_fixed .box .player > * {
    margin: 0;
  }
}
.radio_fixed .box .player img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .radio_fixed .box .player img {
    width: 70%;
  }
}
.radio_fixed .box .player .play {
  width: 20px;
}
@media screen and (max-width: 768px) {
  .radio_fixed .box .player .play {
    width: 45%;
  }
}
.radio_fixed .box .player .fast {
  width: 28px;
}
@media screen and (max-width: 768px) {
  .radio_fixed .box .player .fast {
    width: 45%;
    margin-left: 10%;
  }
}

.amoma_brand {
  background: #a1cec9;
  color: white;
  padding: 95px 0 80px;
}
.amoma_brand2 {
    padding: 0%;
  }
.amoma_brand2 .amoma_sns {
    display: flex;
	list-style: none;
	justify-content: center;
  }
.amoma_brand2 .amoma_sns .insta{
  height: 50px;/*高さ*/
	position: relative;/*相対配置*/
  display: inline-block;
	margin: 0 15px;
  }
.amoma_brand2 .amoma_sns .fa-instagram{
     color: #63bdb3;
	font-size: 60px;
	line-height: 50px;
	}
.amoma_brand2 .amoma_sns .fb{
  height: 50px;/*高さ*/
	position: relative;/*相対配置*/
  display: inline-block;
	margin: 0 15px;
  }
.amoma_brand2 .amoma_sns .fa-facebook-square{
     color: #63bdb3;
	font-size: 60px;
	line-height: 50px;
	}
.amoma_brand2 .amoma_sns .twitter{
  height: 50px;/*高さ*/
	position: relative;/*相対配置*/
  display: inline-block;
	margin: 0 15px;
  }
.amoma_brand2 .amoma_sns .fa-twitter-square{
     color: #63bdb3;
	font-size: 60px;
	line-height: 50px;
	}
.blog_new {
		width: 100px;
    margin-left: 10px;
	margin-bottom: 5px;
	}
@media screen and (max-width: 768px) {
	.blog_new {
		width: 80px;
		margin-left: 5px;
		margin-bottom: 0px;
	}
  .amoma_brand {
    padding: 10% 5%;
  }
	.amoma_brand2 {
    padding: 0%;
  }
	.amoma_brand2 .amoma_sns .fa-instagram{
     color: #63bdb3;
	font-size: 40px;
	line-height: 50px;
	}
	.amoma_brand2 .amoma_sns .fa-facebook-square{
     color: #63bdb3;
	font-size: 40px;
	line-height: 50px;
	}
	.amoma_brand2 .amoma_sns .fa-twitter-square{
     color: #63bdb3;
	font-size: 40px;
	line-height: 50px;
	}
}
.amoma_brand .container {
  width: 880px;
}
@media screen and (max-width: 768px) {
  .amoma_brand .container {
    width: 100%;
  }
}
.amoma_brand .container .ttl {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .amoma_brand .container .ttl {
    font-size: 18px;
    margin-bottom: 8%;
  }
}
.amoma_brand .container .txt {
  line-height: 2;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .amoma_brand .container .txt {
    font-size: 14px;
    line-height: 1.8;
  }
}
.amoma_about {
        margin: 10% 0;
    background-color: #63bdb3;
  }
@media screen and (max-width: 768px) {
  .amoma_about {
        margin: 15% 0;
    background-color: #63bdb3;
  }
}
.amoma_about .container {
  width: 880px;
	    padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .amoma_about .container {
    width: 90%;
	      padding: 10% 0;
  }
	.amoma_about .container .list li{
   padding: 3% 0;
    margin-bottom: 0px;
    border-bottom: 1px solid #fff;
}
}
.amoma_about .container .list li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.amoma_about .container .list li{
   padding: 3% 0;
    margin-bottom: 0px;
    border-bottom: 1px solid #fff;
}
.amoma_about .container .list{
   border-top: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .amoma_about .container .list li {
        padding: 5% 0;
    margin-bottom: 0px;
    border-bottom: 1px solid #fff;
  }
}
.amoma_about .container .list li .img {
  margin-right: 50px;
  width: 200px;
}
@media screen and (max-width: 768px) {
  .amoma_about .container .list li .img {
    width: 40%;
    margin-right: 5%;
  }
}
.amoma_about .container .list li .img img {
  width: 100%;
}
.amoma_about .container .list li .box {
  width: 630px;
}
@media screen and (max-width: 768px) {
  .amoma_about .container .list li .box {
    width: 55%;
  }
}
.balloon-left {
	position: relative;
    padding: 5px;
    background-color: #fff;
    display: inline-block;
	border-radius: 10px;
	float:left;
}

.balloon-left:before {
	content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: -6px;
    top: 6px;
    border-right: 10px solid #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}
@media screen and (max-width: 768px) {
.balloon-left {
	position: relative;
    padding: 5px;
    background-color: #fff;
    display: inline-block;
	border-radius: 10px;
	float:left;
}

.balloon-left:before {
	content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: -6px;
    top: 6px;
    border-right: 10px solid #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}
}
.ttl-balloon {
	font-family: "Noto Serif JP", serif;
    font-size: 28px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #fff;
    text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .ttl-balloon {
        font-size: 15px;
    margin-bottom: 2%;
    color: #fff;
	  text-decoration: underline;
  }
}
.amoma_about .container .list li .box .ttl {
  font-family: "Noto Serif JP", serif;
    font-size: 28px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #fff;
    text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .amoma_about .container .list li .box .ttl {
        font-size: 15px;
    margin-bottom: 2%;
    color: #fff;
	  text-decoration: underline;
  }
}
.amoma_about .container .list li .box .txt {
  font-size: 20px;
  line-height: 1.5rem;
	color: #fff;
}
@media screen and (max-width: 768px) {
  .amoma_about .container .list li .box .txt {
        font-size: 12px;
	  line-height: 1.2rem;
    color: #fff;
  }
}


/*新レビューシステム分のCSS*/
/* .common_review {
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .common_review {
    margin-top: 80px;
    padding-bottom: 0;
  }
}
.common_review .container {
  width: 880px;
}
@media screen and (max-width: 768px) {
  .common_review .container {
    width: 90%;
  }
}
.common_review > .top {
  margin: 170px auto 50px auto;
}
@media screen and (max-width: 768px) {
  .common_review > .top {
    margin: 0;
  }
}
.common_review > .top .container > .ttl {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .common_review > .top .container > .ttl {
    margin-bottom: 7%;
  }
}
.common_review > .top .container > .ttl span {
  display: block;
}
.common_review > .top .container > .ttl .en {
  color: #038e7c;
  font-size: 22px;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .common_review > .top .container > .ttl .en {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.common_review > .top .container > .ttl .ja {
  font-family: "Noto Serif JP", serif;
  color: black;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .common_review > .top .container > .ttl .ja {
    font-size: 20px;
  }
}
.common_review > .top .container .box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 768px) {
  .common_review > .top .container .box {
    display: block;
  }
}
.common_review > .top .container .box .all {
  text-align: center;
  background: #f8f6f0;
  width: 480px;
  margin-right: 40px;
  padding: 30px 0;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .common_review > .top .container .box .all {
    width: 92%;
    margin-right: 0;
    padding: 5% 4%;
  }
}
.common_review > .top .container .box .all .ttl {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .common_review > .top .container .box .all .ttl {
    font-size: 18px;
  }
}
.common_review > .top .container .box .all .num {
  color: #da7b00;
  font-size: 65px;
  margin: 15px 0;
}
@media screen and (max-width: 768px) {
  .common_review > .top .container .box .all .num {
    font-size: 40px;
    margin: 4% 0;
  }
}
.common_review > .top .container .box .all .star {
  color: #da7b00;
  font-size: 28px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .common_review > .top .container .box .all .star {
    font-size: 16px;
    margin-bottom: 5%;
  }
}
.common_review > .top .container .box .all .count {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .common_review > .top .container .box .all .count {
    font-size: 16px;
  }
}
.common_review > .top .container .box .detail {
  width: 360px;
}
@media screen and (max-width: 768px) {
  .common_review > .top .container .box .detail {
    width: 100%;
  }
}
.common_review > .top .container .box .detail .list {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .common_review > .top .container .box .detail .list {
    margin: 10% 0 10% 30%;
  }
}
.common_review > .top .container .box .detail .list li {
  font-size: 22px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .common_review > .top .container .box .detail .list li {
    font-size: 14px;
  }
}
.common_review > .top .container .box .detail .list li:not(:last-child) {
  margin-bottom: 15px;
  margin-bottom: 3%;
}
.common_review > .top .container .box .detail .list li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.common_review > .top .container .box .detail .list li .star {
  color: #da7b00;
  text-decoration: underline;
}
.common_review > .top .container .box .detail .list li .num {
  color: #898989;
  margin-left: 1em;
}
.common_review > .top .container .box .detail .btn {
  background: #35b597;
  color: white;
  display: block;
  width: 100%;
  text-align: center;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .common_review > .top .container .box .detail .btn {
    font-size: 14px;
    width: 180px;
    height: 30px;
    line-height: 30px;
    margin: 0 auto;
  }
}
.common_review > .top .container .box .detail .btn i {
  vertical-align: middle;
  margin: 0 15px 5px;
}
@media screen and (max-width: 768px) {
  .common_review > .top .container .box .detail .btn i {
    margin: 0 5% 3%;
  }
}
.common_review > .top .container .box .detail .btn .fa-comment {
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  font-size: 27px;
}
@media screen and (max-width: 768px) {
  .common_review > .top .container .box .detail .btn .fa-comment {
    font-size: 18px;
  }
}
.common_review > .top .container .box .detail .btn .fa-chevron-right {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .common_review > .top .container .box .detail .btn .fa-chevron-right {
    margin: 0 5%;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .common_review > .btm {
    margin-top: 10%;
  }
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container {
    width: 100%;
	  margin-bottom: 15%;
  }
}
.common_review > .btm > .container > .more,
.product_partner > .container > .more {
  color: #038e7c;
  text-align: center;
  display: block;
  margin: 0 auto;
  width: 220px;
  height: 50px;
  line-height: 50px;
  border: 2px solid #038e7c;
  font-size: 16px;
}
.product_partner > .container > .more {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container > .more,
  .product_partner > .container > .more {
    font-size: 14px;
    width: 160px;
    height: 30px;
    line-height: 30px;
  }
}
.common_review > .btm > .container > .more i,
.product_partner > .container > .more i {
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container > .more i,
  .product_partner > .container > .more i {
    margin-left: 0.5em;
  }
}
.common_review > .btm > .container .sort {
  background: white;
  z-index: 99999;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .sort {
    padding: 15px 0;
  }
}
.common_review > .btm > .container .sort .txt {
  cursor: pointer;
  color: black;
  font-size: 18px;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .sort .txt {
    padding: 0 3%;
    font-size: 14px;
  }
}
.common_review > .btm > .container .sort .txt.active {
  color: #038e7c;
}
.common_review > .btm > .container .sort .txt.sort01 {
  border-right: 2px solid #898989;
}
.common_review > .btm > .container .sort .sort_box {
  border-top: 2px solid #cccccc;
  position: absolute;
  width: 100%;
  background: white;
  top: 58px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .sort .sort_box {
    top: 44px;
  }
}
.common_review > .btm > .container .sort .sort_box label {
  cursor: pointer;
}
.common_review > .btm > .container .sort .sort_box .sort01 {
  display: none;
}
.common_review > .btm > .container .sort .sort_box .sort01 label {
  display: block;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .sort .sort_box .sort01 label {
    padding: 4% 3%;
  }
}
.common_review > .btm > .container .sort .sort_box .sort01 label:not(:last-child) {
  border-bottom: 1px solid #cccccc;
}
.common_review > .btm > .container .sort .sort_box .sort01 label input {
  display: none;
}
.common_review > .btm > .container .sort .sort_box .sort01 label input + .fa-check {
  display: none;
  color: #038e7c;
  position: absolute;
  right: 20px;
}
.common_review > .btm > .container .sort .sort_box .sort01 label input:checked + .fa-check {
  display: block;
}
.common_review > .btm > .container .sort .sort_box .sort01 label input:checked + .fa-check + .txt {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.common_review > .btm > .container .sort .sort_box .sort01 label .txt {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  color: #038e7c;
}
.common_review > .btm > .container .sort .sort_box .sort02 {
  display: none;
}
.common_review > .btm > .container .sort .sort_box .sort02 .box {
  border-bottom: 1px solid #cccccc;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .sort .sort_box .sort02 .box {
    padding: 4%;
  }
}
.common_review > .btm > .container .sort .sort_box .sort02 .box .ttl {
  color: #038e7c;
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .sort .sort_box .sort02 .box .ttl {
    font-size: 14px;
    margin-bottom: 0;
  }
}
.common_review > .btm > .container .sort .sort_box .sort02 .box .txt {
  color: #898989;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .sort .sort_box .sort02 .box .txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .sort .sort_box .sort02 .box .check {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
  }
  .common_review > .btm > .container .sort .sort_box .sort02 .box .check.rank label {
    width: 50%;
  }
  .common_review > .btm > .container .sort .sort_box .sort02 .box .check.gender label {
    width: 33.33%;
  }
  .common_review > .btm > .container .sort .sort_box .sort02 .box .check.age label {
    width: 33.33%;
  }
  .common_review > .btm > .container .sort .sort_box .sort02 .box .check.review label {
    width: 50%;
  }
}
.common_review > .btm > .container .sort .sort_box .sort02 .box .check label {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .sort .sort_box .sort02 .box .check label {
    margin: 5% 0 0;
  }
}
.common_review > .btm > .container .sort .sort_box .sort02 .box .check label input {
  display: none;
}
.common_review > .btm > .container .sort .sort_box .sort02 .box .check label input:checked + span {
  background: url("../img/common/check_on.png");
  background-size: cover;
}
.common_review > .btm > .container .sort .sort_box .sort02 .box .check label input + span {
  display: inline-block;
  vertical-align: bottom;
  margin-right: 5px;
  background: url("../img/common/check_off.png");
  background-size: cover;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .sort .sort_box .sort02 .box .check label input + span {
    margin-right: 3px;
    vertical-align: middle;
  }
}
.common_review > .btm > .container .sort .sort_box .sort02 .btn {
  text-align: center;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .sort .sort_box .sort02 .btn {
    padding: 7% 0;
  }
}
.common_review > .btm > .container .sort .sort_box .sort02 .btn input {
  border: 2px solid #35b597;
  color: #038e7c;
  background: white;
  text-align: center;
  font-family: font01;
  font-size: 18px;
  padding: 10px 50px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .sort .sort_box .sort02 .btn input {
    font-size: 16px;
    padding: 1% 10%;
  }
}
.common_review > .btm > .container .list {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list {
    margin-bottom: 0;
  }
}
.common_review > .btm > .container .list li {
  border-top: 2px solid #cccccc;
  padding: 30px 40px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li {
    padding: 5%;
  }
}
.common_review > .btm > .container .list li > .top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li > .top {
    margin-bottom: 5%;
  }
}
.common_review > .btm > .container .list li > .top > * {
  width: 50%;
}
.common_review > .btm > .container .list li > .top .star {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li > .top .star {
    font-size: 14px;
  }
}
.common_review > .btm > .container .list li > .top .star span {
  color: #da7b00;
}
.common_review > .btm > .container .list li > .top .user {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  line-height: 1.4;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li > .top .user {
    font-size: 12px;
  }
}
.common_review > .btm > .container .list li > .top .user .age {
  background: #a1cec9;
  color: white;
  padding: 7px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li > .top .user .age {
    padding: 1% 4%;
  }
}
.common_review > .btm > .container .list li > .top .user .name {
  color: #038e7c;
  padding: 7px;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li > .top .user .name {
    padding: 1% 4%;
    margin-left: 2%;
  }
}
.common_review > .btm > .container .list li > .btm .ttl {
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li > .btm .ttl {
    font-size: 16px;
  }
}
.common_review > .btm > .container .list li > .btm .txt {
  letter-spacing: 0.05em;
  line-height: 1.9;
  font-size: 16px;
	margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li > .btm .txt {
    position: relative;
    font-size: 14px;
    line-height: 1.8;
  }
}
.common_review > .btm > .container .list li > .btm .txt .more {
  cursor: pointer;
  color: #898989;
}
.common_review > .btm > .container .list li > .btm .txt .more a {
     cursor: pointer;
    color: #a9a9a9;
}

.short_review{
  position: relative;
  overflow: hidden;
}

.common_review > .btm > .container .list li > .btm .tag a {
  font-size: 16px;
  color: #038e7c;
  margin-right: 0.5em;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li > .btm .tag a {
    font-size: 14px;
  }
}
.common_review > .btm > .container .list li > .btm .result {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 30px 0;
  font-size: 16px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li > .btm .result {
    margin: 5% 0;
    font-size: 12px;
  }
}
.common_review > .btm > .container .list li > .btm .result > * {
  width: 50%;
}
.common_review > .btm > .container .list li > .btm .result .btn {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  color: #898989;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.common_review > .btm > .container .list li > .btm .result .btn .thanks i {
  margin-right: 0.5em;
}
.common_review > .btm > .container .list li > .btm .result .btn .plus {
  color: #898989;
  cursor: pointer;
  background: white;
  border: 1px solid #898989;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  width: 150px;
  height: 30px;
  line-height: 30px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li > .btm .result .btn .plus {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    font-size: 12px;
    width: 115px;
    height: 22px;
    line-height: 22px;
    margin-right: 5px;
  }
}
.common_review > .btm > .container .list li > .btm .result .btn .plus i {
  margin-right: 5px;
}
.common_review > .btm > .container .list li > .btm .result .date {
  color: #898989;
  text-align: right;
}
.common_review > .btm > .container .list li > .res {
  position: relative;
  border: 3px solid #a1cec9;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li > .res {
    border-width: 2px;
    padding: 4%;
  }
}
.common_review > .btm > .container .list li > .res:before, .common_review > .btm > .container .list li > .res:after {
  content: '';
  display: block;
  position: absolute;
  left: 70px;
  width: 0;
  height: 0;
  border-style: solid;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li > .res:before, .common_review > .btm > .container .list li > .res:after {
    left: 37px;
  }
}
.common_review > .btm > .container .list li > .res:after {
  top: -16px;
  left: 73px;
  border-width: 0 10.5px 16px 10.5px;
  border-color: transparent transparent white transparent;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li > .res:after {
    top: -11px;
    left: 39px;
    border-width: 0 9.5px 11px 9.5px;
  }
}
.common_review > .btm > .container .list li > .res:before {
  top: -22px;
  border-width: 0 13.5px 22px 13.5px;
  border-color: transparent transparent #a1cec9 transparent;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li > .res:before {
    top: -13px;
    border-width: 0 11.5px 11px 11.5px;
  }
}
.common_review > .btm > .container .list li > .res .top .ttl {
  position: relative;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li > .res .top .ttl {
    font-size: 14px;
  }
}
.common_review > .btm > .container .list li > .res .top .ttl:after {
  color: #898989;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  font-weight: bold;
  right: 10px;
  top: 0;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li > .res .top .ttl:after {
    font-size: 12px;
  }
}
.common_review > .btm > .container .list li > .res .top .ttl.on {
  display: none;
  color: #038e7c;
}
.common_review > .btm > .container .list li > .res .top .ttl.on:after {
  content: "\f102";
}
.common_review > .btm > .container .list li > .res .top .ttl.off {
  color: #898989;
}
.common_review > .btm > .container .list li > .res .top .ttl.off:after {
  content: "\f103";
}
.common_review > .btm > .container .list li > .res .top.active .on {
  display: block;
}
.common_review > .btm > .container .list li > .res .top.active .off {
  display: none;
}
.common_review > .btm > .container .list li > .res .btm {
  display: none;
}
.common_review > .btm > .container .list li > .res .btm .txt {
  line-height: 1.9;
  color: black;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li > .res .btm .txt {
    margin: 4% 0;
  }
}
.common_review > .btm > .container .list li > .res .btm .product {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  border: 2px solid #cccccc;
  width: 400px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li > .res .btm .product {
    width: 100%;
  }
}
.common_review > .btm > .container .list li > .res .btm .product .img {
  -moz-border-radius: 10px 0 0 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
  width: 120px;
  height: 85px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li > .res .btm .product .img {
    width: 25%;
  }
}
.common_review > .btm > .container .list li > .res .btm .product .img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li > .res .btm .product .img img {
    width: 125%;
  }
}
.common_review > .btm > .container .list li > .res .btm .product .box {
  width: 280px;
  letter-spacing: 0.05em;
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li > .res .btm .product .box {
    width: 71%;
    padding: 4%;
  }
}
.common_review > .btm > .container .list li > .res .btm .product .box .ttl {
  line-height: 1.6;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li > .res .btm .product .box .ttl {
    font-size: 12px;
  }
}
.common_review > .btm > .container .list li > .res .btm .product .box .page {
  color: #898989;
  text-align: right;
  font-size: 12px;
}
.common_review > .btm > .container .list li > .res .btm .date {
  color: #898989;
  text-align: right;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .common_review > .btm > .container .list li > .res .btm .date {
    font-size: 12px;
    margin-top: 4%;
  }
}
.common_review .common_pager {
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  .common_review .common_pager {
    padding-top: 7%;
  }
}
.common_review .common_pager .container {
  border-bottom: 2px solid #cccccc;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .common_review .common_pager .container {
    width: 100%;
    padding-bottom: 12%;
  }
} */

.common_media {
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .common_media {
    padding-bottom: 15%;
  }
}
.common_media .container {
  width: 880px;
}
@media screen and (max-width: 768px) {
  .common_media .container {
    width: 85%;
  }
}
.common_media .container > .ttl {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .common_media .container > .ttl {
    margin-bottom: 7%;
  }
}
.common_media .container > .ttl span {
  display: block;
}
.common_media .container > .ttl .en {
  color: #038e7c;
  font-size: 22px;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .common_media .container > .ttl .en {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.common_media .container > .ttl .ja {
  font-family: "Noto Serif JP", serif;
  color: black;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .common_media .container > .ttl .ja {
    font-size: 20px;
  }
}
.common_media .container .slick .box {
  text-align: center;
  margin: 0 25px;
}
.common_media .container .slick .box .img {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .common_media .container .slick .box .img {
    margin-bottom: 5%;
  }
}
.common_media .container .slick .box .img img {
  width: 100%;
}
.common_media .container .slick .box .ttl {
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-size: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .common_media .container .slick .box .ttl {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 5%;
  }
}
.common_media .container .slick .box .date {
  color: #898989;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .common_media .container .slick .box .date {
    font-size: 12px;
  }
}
.common_media .container .slick .box .item {
  margin-top: 1em;
  line-height: 1.5;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .common_media .container .slick .box .item {
    font-size: 12px;
  }
}
.common_media .container .slick .slick-arrow {
  cursor: pointer;
  position: absolute;
  top: 27%;
  color: #898989;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .common_media .container .slick .slick-arrow {
    font-size: 15px;
  }
}
.common_media .container .slick .slick-arrow.slider-prev {
  left: -50px;
}
@media screen and (max-width: 768px) {
  .common_media .container .slick .slick-arrow.slider-prev {
    left: -5%;
  }
}
.common_media .container .slick .slick-arrow.slider-next {
  right: -50px;
}
@media screen and (max-width: 768px) {
  .common_media .container .slick .slick-arrow.slider-next {
    right: -5%;
  }
}

.common_cart .container {
  width: 700px;
  border-left: 2px solid #35b597;
  border-right: 2px solid #35b597;
  border-top: 20px solid #35b597;
  border-bottom: 20px solid #35b597;
  padding: 90px;
}
.common_cart .container.b_none{
  border: none;
  padding-top: 45px;
}
@media screen and (max-width: 768px) {
  .common_cart .container {
    width: 82%;
    border-top: 16px solid #35b597;
    border-bottom: 16px solid #35b597;
    padding: 4%;
  }
  .common_cart .container.b_none {
    padding: 4%;
  }

}
.common_cart .container .top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.common_cart .container .top .img {
  width: 200px;
  margin-right: 70px;
}
@media screen and (max-width: 768px) {
  .common_cart .container .top .img {
    width: 35%;
    margin-right: 5%;
  }
}
.common_cart .container .top .img img {
  width: 100%;
}
.common_cart .container .top .detail {
  width: 430px;
}
@media screen and (max-width: 768px) {
  .common_cart .container .top .detail {
    width: 60%;
  }
}
.common_cart .container .top .detail .ttl {
  position: relative;
  font-size: 30px;
  line-height: 1.6;
  letter-spacing: 0.005em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .common_cart .container .top .detail .ttl {
    font-size: 18px;
    margin-bottom: 4%;
  }
}
.common_cart .container .top .detail .ttl:after {
  content: "";
  display: block;
  background: #038e7c;
  width: 54px;
  height: 2px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .common_cart .container .top .detail .ttl:after {
    margin-top: 4%;
    width: 27px;
    height: 1px;
  }
}
.common_cart .container .top .detail .name {
  line-height: 1.5;
  color: #898989;
  font-size: 24px;
  letter-spacing: 0.005em;
}
@media screen and (max-width: 768px) {
  .common_cart .container .top .detail .name {
    font-size: 16px;
  }
}
.common_cart .container .top .detail .cart {
  cursor: pointer;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  background: white;
  display: block;
  color: #038e7c;
  padding: 0;
  border: 2px solid;
  text-align: center;
  font-size: 20px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  .common_cart .container .top .detail .cart {
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    border: 1px solid;
    margin: 7% 0 0;
  }
}
.common_cart .container .top .detail .cart i {
  margin-left: 1em;
}
.common_cart .container .btm > .txt {
  text-align: center;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin: 40px 0 0;
}
@media screen and (max-width: 768px) {
  .common_cart .container .btm > .txt {
    font-size: 16px;
    margin: 10% 0 5%;
  }
}
.common_cart .container .btm .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

	justify-content : center;
}
.common_cart .container .btm .list li {
  width: 332px;
  margin-top: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  background: #eeeeee;
}
@media screen and (max-width: 768px) {
  .common_cart .container .btm .list li {
    width: 100%;
    margin-top: 4%;
  }
}
.common_cart .container .btm .list li:not(:nth-child(2n)) {
  margin-right: 35px;
}
@media screen and (max-width: 768px) {
  .common_cart .container .btm .list li:not(:nth-child(2n)) {
    margin-right: 0;
  }
}
.common_cart .container .btm .list li .img {
  width: 115px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .common_cart .container .btm .list li .img {
    width: 35%;
  }
}
.common_cart .container .btm .list li .img img {
  width: 125%;
}
.common_cart .container .btm .list li .detail {
  width: 185px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .common_cart .container .btm .list li .detail {
    width: 57%;
    padding: 0 4%;
  }
}
.common_cart .container .btm .list li .detail .ttl {
  color: #038e7c;
  letter-spacing: 0.05em;
  font-size: 16px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .common_cart .container .btm .list li .detail .ttl {
    font-size: 13px;
    margin-bottom: 3%;
  }
}
.common_cart .container .btm .list li .detail .txt {
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-size: 16px;
}

.common_products {
  padding: 150px 0;
}
@media screen and (max-width: 768px) {
  .common_products {
    padding: 15% 0;
  }
}
@media screen and (max-width: 768px) {
  .common_products.under .container {
    width: 100%;
  }
  .common_products.under .container .list {
    margin-top: 0;
  }
}
.common_products .container > .ttl {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .common_products .container > .ttl {
    margin-bottom: 7%;
  }
}
.common_products .container > .ttl span {
  display: block;
}
.common_products .container > .ttl .en {
  color: #038e7c;
  font-size: 22px;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .common_products .container > .ttl .en {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.common_products .container > .ttl .ja {
  font-family: "Noto Serif JP", serif;
  color: black;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .common_products .container > .ttl .ja {
    font-size: 20px;
  }
}
.common_products .container .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 880px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .common_products .container .list {
    width: 90%;
    margin-top: 15%;
  }
}
.common_products .container .list li {
  background: white;
  border: 2px solid #a1cec9;
  width: 262px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .common_products .container .list li {
    width: 46%;
    margin-bottom: 5%;
  }
}
.common_products .container .list li:not(:nth-child(3n)) {
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .common_products .container .list li:not(:nth-child(3n)) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .common_products .container .list li:not(:nth-child(2n)) {
    margin-right: 5%;
  }
}
.common_products .container .list li a {
  display: block;
  letter-spacing: 0.05em;
}
.common_products .container .list li a > .ttl {
  position: relative;
  background: #a1cec9;
  color: white;
  text-align: center;
  font-size: 20px;
  line-height: 1.7;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .common_products .container .list li a > .ttl {
    font-size: 14px;
    padding: 3% 0 5%;
  }
}
.common_products .container .list li a > .ttl:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 12.5px 0 12.5px;
  border-color: #a1cec9 transparent transparent transparent;
  display: block;
  position: absolute;
  bottom: -15px;
  left: 50%;
  margin-left: -12.5px;
}
@media screen and (max-width: 768px) {
  .common_products .container .list li a > .ttl:after {
    border-width: 7px 6px 0 6px;
    bottom: -7px;
    margin-left: -3px;
  }
}
.common_products .container .list li a > .box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .common_products .container .list li a > .box {
    padding: 8% 0 8% 8%;
  }
}
.common_products .container .list li a > .box .img {
  width: 88px;
}
@media screen and (max-width: 768px) {
  .common_products .container .list li a > .box .img {
    width: 37%;
  }
}
.common_products .container .list li a > .box .img img {
  width: 100%;
}
.common_products .container .list li a > .box .ttl {
  color: #038e7c;
  font-size: 24px;
  width: 128px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .common_products .container .list li a > .box .ttl {
    width: 63%;
    font-size: 18px;
  }
}
.common_products .container .list li a > .box .ttl.ls {
  letter-spacing: -0.1em;
}

.common_pager .container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  font-size: 22px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .common_pager .container {
    font-size: 16px;
  }
}
.common_pager .container a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  color: #898989;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .common_pager .container a {
    padding: 0 5%;
  }
}
.common_pager .container a.active {
  color: #35b597;
  text-decoration: underline;
}
.common_pager .container a.next {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .common_pager .container a.next {
    font-size: 12px;
  }
}
.common_pager .container a i {
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .common_pager .container a i {
    padding: 0 10%;
  }
}

.telopen {
  cursor: pointer;
}

.tel_popup {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 7%;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .tel_popup {
    top: 3%;
  }
}
.tel_popup .container {
  background: white;
  padding: 50px;
  width: 1020px;
  height: 80%;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .tel_popup .container {
    width: 82%;
    height: 87%;
    padding: 6% 4%;
  }
}
.tel_popup .container .fa-times {
  cursor: pointer;
  color: #898989;
  font-size: 32px;
  position: absolute;
  top: 30px;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .tel_popup .container .fa-times {
    font-size: 16px;
    top: 3%;
    right: 5%;
  }
}
.tel_popup .container .wait {
  border: 2px solid #35b597;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  width: 500px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
  line-height: 2;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .tel_popup .container .wait {
    width: auto;
    display: table;
    padding: 5% 10%;
    font-size: 16px;
  }
}
.tel_popup .container .wait .ttl {
  color: #35b597;
}
.tel_popup .container > .ttl {
  text-align: center;
  margin: 30px 0;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .tel_popup .container > .ttl {
    margin: 10% 0;
  }
}
.tel_popup .container .form {
  width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .tel_popup .container .form {
    width: 100%;
  }
}
.tel_popup .container .form li {
  margin-bottom: 20px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .tel_popup .container .form li {
    margin-bottom: 4%;
    font-size: 14px;
  }
}
.tel_popup .container .form li .ttl {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .tel_popup .container .form li .ttl {
    margin-bottom: 3%;
  }
}
.tel_popup .container .form li .ttl span {
  color: #bc2221;
}
.tel_popup .container .form li input, .tel_popup .container .form li select {
  border: 1px solid #898989;
  background: white;
  width: 94%;
  padding: 2%;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .tel_popup .container .form li input, .tel_popup .container .form li select {
    font-size: 14px;
  }
}
.tel_popup span.wpcf7-form-control-wrap.buy_check,
.tel_popup .container .check {
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  font-size: 16px;
  margin: 10px 0;
}
@media screen and (max-width: 768px) {
  .tel_popup span.wpcf7-form-control-wrap.buy_check,
  .tel_popup .container .check {
    font-size: 14px;
    margin: 2% 0;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
  }
}
.tel_popup .container .check input {
  display: none;
}
.tel_popup .container .check input + span {
  position: relative;
  vertical-align: middle;
  border: 1px solid #898989;
  width: 20px;
  height: 20px;
  text-align: center;
  margin-right: 10px;
}

span.wpcf7-list-item input[type="checkbox"]{
	content: " ";
	content: "\f00c";
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	position: absolute;
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	top: 50%;
	left: 35%;
	background: #35b597;
	color: white;
	/* position: relative; */
	vertical-align: middle;
	border: 1px solid #898989;
	width: 20px;
	height: 20px;
	text-align: center;
	margin-right: 10px;
}
@media screen and (max-width: 768px) {
  span.wpcf7-list-item input[type="checkbox"]{
    left: 0;
  }
  .tel_popup .container .check input + span {
    width: 15px;
    height: 15px;
    margin-right: 0.5em;
  }
}
.tel_popup .container .check input:checked + span {
  background: #35b597;
  color: white;
}
.tel_popup .container .check input:checked + span:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  position: absolute;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .tel_popup .container .check input:checked + span:before {
    font-size: 12px;
  }
}
.tel_popup .container .check .ttl span {
  color: #bc2221;
}
.tel_popup .container .cap {
  text-align: center;
  margin: 10px 0;
}
@media screen and (max-width: 768px) {
  .tel_popup .container .cap {
    margin: 2% 0;
    text-align: left;
    font-size: 10px;
  }
}
.tel_popup .container .cap a {
  text-decoration: underline;
  color: #038e7c;
}
.tel_popup .container .submit {
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .tel_popup .container .submit {
    margin-top: 10%;
  }
}
.tel_popup .container .submit input {
  background: #35b597;
  color: white;
  font-size: 18px;
  width: 300px;
  height: 50px;
  line-height: 50px;
}
@media screen and (max-width: 768px) {
  .tel_popup .container .submit input {
    font-size: 14px;
    width: 150px;
    height: 30px;
    line-height: 30px;
  }
}

.overlay {
  display: none;
  background-color: rgba(67, 67, 67, 0.9);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  /* z-index: 99999; */
  z-index: 9999;
}

.call_popup {
  text-align: center;
  position: fixed;
  z-index: 99999;
  top: 7%;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .call_popup {
    top: 3%;
  }
}
.call_popup .container {
  background: white;
  padding: 50px;
  width: 1020px;
  height: 80%;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .call_popup .container {
    width: 82%;
    height: 87%;
    padding: 6% 4%;
  }
}
.call_popup .container .fa-times {
  cursor: pointer;
  color: #898989;
  font-size: 32px;
  position: absolute;
  top: 30px;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .call_popup .container .fa-times {
    font-size: 16px;
    top: 3%;
    right: 5%;
  }
}
.call_popup .container > .ttl {
  font-weight: bold;
  font-size: 18px;
  padding: 5% 0;
}
.call_popup .container > .txt {
  font-size: 16px;
}
.call_popup .container .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .call_popup .container .list {
    width: 90%;
    margin: 7% auto 3%;
  }
}
.call_popup_link {
	text-decoration:underline;
	 border-radius: 0px !important;
	 color: red !important;
	background: #fff !important;
	border: 0px !important;
	padding: 0 !important;
	margin-right: 0 !important;
}
.call_popup .container .list a {
  position: relative;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #35b597;
  color: white;
  border: 2px solid #35b597;
  width: 341px;
  height: 140px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .call_popup .container .list a {
    width: 38.5%;
    height: 100px;
    margin-bottom: 5%;
    border-width: 1px;
    padding: 0 4%;
  }
	.call_popup .container .list .do_chat{
    width: 100%;
    height: 100px;
    margin-bottom: 5%;
	margin-right: 0 !important;
    border-width: 1px;
    padding: 0 4%;
  }
	.call_popup .container .list .tel{
    width: 38.5%;
    height: 100px;
    margin-bottom: 5%;
	margin-right: 5%;
    border-width: 1px;
    padding: 0 4%;
  }
	.call_popup .container .list .mail{
    width: 38.5%;
    height: 100px;
    margin-bottom: 5%;
	margin-right: 0 !important;
    border-width: 1px;
    padding: 0 4%;
  }
}
.call_popup .container .list a:not(:nth-child(2n)) {
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  .call_popup .container .list a:not(:nth-child(2n)) {
    margin-right: 5%;
  }
}
.call_popup .container .list a.active {
  background: white;
  color: #35b597;
}
.call_popup .container .list a .box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .call_popup .container .list a .box {
    display: block;
    width: 90%;
  }
}
.call_popup .container .list a .box .img {
  width: 110px;
}
@media screen and (max-width: 768px) {
  .call_popup .container .list a .box .img {
    width: auto;
    margin-bottom: 6%;
  }
}
.call_popup .container .list a .box .img .fa-phone,
.call_popup .container .list a .box .img .fa-comments,
.call_popup .container .list a .box .img .fa-envelope {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .call_popup .container .list a .box .img .fa-phone,
  .call_popup .container .list a .box .img .fa-comments,
  .call_popup .container .list a .box .img .fa-envelope {
    font-size: 30px;
  }
}
.call_popup .container .list a .box .img .arrow {
  vertical-align: top;
  font-size: 25px;
}
@media screen and (max-width: 768px) {
  .call_popup .container .list a .box .img .arrow {
    font-size: 16px;
  }
}
.call_popup .container .list a .box .detail .ttl {
  display: inline-block;
  font-size: 22px;
  border-bottom: 2px solid;
  padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .call_popup .container .list a .box .detail .ttl {
    display: inline-block;
    font-size: 14px;
  }
}
.call_popup .container .list a .box .detail .txt {
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .call_popup .container .list a .box .detail .txt {
    font-size: 11px;
  }
}
.call_popup .container .list a.mail .box .detail .ttl {
  border-bottom: none;
}
.call_popup .container > .box {
  /*border-top: 2px solid #cccccc;*/
  padding: 7% 0;
}
.call_popup .container > .box .ttl {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 3%;
}
.call_popup .container > .box .time {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 3%;
}
.call_popup .container > .box a {
  display: block;
  padding: 3% 0;
  font-size: 16px;
  color: #898989;
}
.call_popup .container > .box a i {
  margin-right: 0.5em;
}

.tel_popup .telcomplete {
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
}
.tel_popup .telcomplete .ttl {
  font-size: 24px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .tel_popup .telcomplete .ttl {
    font-size: 18px;
    margin-bottom: 5%;
  }
}
.tel_popup .telcomplete p {
  color: #898989;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .tel_popup .telcomplete p {
    font-size: 12px;
    line-height: 1.7;
  }
}
.tel_popup .telcomplete .txt .close {
  cursor: pointer;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  background: #fdd100;
  font-size: 16px;
  letter-spacing: 0.05em;
  width: 220px;
  height: 50px;
  line-height: 50px;
  margin: 40px auto 0;
}
.list_intv {
    display: flex;
    width: 880px;
    margin: 0 auto;
    padding: 50px 0 100px 100px;
	}
@media screen and (max-width: 768px) {
.list_intv {
    display: block;
    width: 80%;
    padding: 5% 5% 5% 16%;
	margin: 0 auto;
	}
}
.list_intv .intv_prod {
	width: 33%;
}
@media screen and (max-width: 768px) {
.list_intv .intv_prod {
	width: 100%;
	    display: flex;
	align-items: center;
}
}
.list_intv .intv_prod .detail {
	    margin-top: 30px;
    line-height: 1.5;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
	.list_intv .intv_prod .detail {
	margin: 0 0 0 5%;
    width: 65%;
	line-height: 1.5;
    letter-spacing: 0.05em;
	}
}
.list_intv .intv_prod .detail .ttl{
	font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    font-family: "Noto Serif JP", serif;
}
.list_intv .intv_prod .detail .ttl:after {
	content: "";
    display: block;
    background: #038e7c;
    width: 54px;
    height: 2px;
    margin-top: 15px;
}
@media screen and (max-width: 768px) {
    .list_intv .intv_prod .detail .ttl {
	font-size: 16px;
    margin-bottom: 10px;
	position: relative;
    font-family: "Noto Serif JP", serif;
}
	.list_intv .intv_prod .detail .ttl:after {
	width: 27px;
    height: 1px;
    margin-top: 10px;
    position: absolute;
	content: "";
    display: block;
    background: #038e7c;
}
}
@media screen and (max-width: 768px) {
  .tel_popup .telcomplete .txt .close {
    width: 150px;
    height: 30px;
    line-height: 30px;
    margin: 5% auto 0;
  }
	.list_intv .intv_prod:not(:first-child) {
	    margin-top: 15%;
}
}
.list_intv .intv_prod .img{
	width: 30%;
}
.list_intv .intv_prod .detail .txt{
	color: #898989;
}
.list_intv .intv_prod .detail .btn{
	color: #038e7c;
    background: white;
    display: inline-block;
    border: 2px solid #038e7c;
    text-align: center;
    width: 176px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    margin-top: 20px;
}
@media screen and (max-width: 768px) {
	.list_intv .intv_prod .img{
	width: 30%;
}
.list_intv .intv_prod .detail .txt{
	padding-top: 10px;
	color: #898989;
}
.list_intv .intv_prod .detail .btn{
	width: 140px;
    height: 25px;
    line-height: 25px;
    font-size: 14px;
    border-width: 1px;
    margin-top: 10px;
	color: #038e7c;
    background: white;
    display: inline-block;
    border: 2px solid #038e7c;
    text-align: center;
}
}

#chamo-window {
  display: none;
}

.news_bar_position {
  z-index: 9997;
}

span.wpcf7-list-item {
  margin: 0 !important;
}

.wpcf7-list-item-label:hover {
  cursor: pointer;
}

.wpcf7-list-item-label {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.wpcf7-form-control-wrap label span:before {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  border: 1px solid #898989;
  margin-right: 10px;
}
/*
.wpcf7-form-control-wrap label span::after {
  content: '＊';
  color: #bc2221;

}
*/
span.wpcf7-list-item input[type="checkbox"] {
  display: none;
}

span.wpcf7-list-item input[type="checkbox"]:checked + .wpcf7-list-item-label:before {
  content: '\f00c';
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  background: #35b597;
  color: white;
}

.tel_popup span.wpcf7-form-control-wrap.buy_check, .tel_popup .container .check {
  cursor: auto !important;
}

.item_position {
  position: relative;
  z-index: 2;
}

.wpcf7-not-valid-tip {
  margin-bottom: 10px;
}

.am-postdetail-recopro {
  background-color: #fffdd0;
  margin: 50px 0;
  padding: 20px;
}

.am-postdetail-recopro h3 {
  font-size: 25px;
  color: #666666;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-weight: bold;
  border-bottom: 1px solid #e8e1ce;
}

.pd-recopro-box {
  display: flex;
  align-items: flex-start;
}

.recpro-box-left {
  margin-right: 15px;
}

.recpro-box-right h4 {
  font-size: 20px;
  font-weight: bold;
  color: #fd7270;
  margin-bottom: 20px;
}

.recpro-box-right h3 {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
  padding: 0;
  border-bottom: 0;
}

.recpro-link {
  width: 60%;
  background-color: #fac57a;
  border: 2px solid #e8e1ce;
  border-radius: 5px;
  margin-top: 20px;
}

.recpro-link a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #666666;
  font-weight: bold;
  padding: 20px 0;
}

.recpro-link a:hover {
  cursor: pointer;
}

.area_ttl {
    margin-bottom: 0;
	width: 90%;
    margin: 0 auto;
    padding: 5% 0 5% 0;
	text-align: center;
}
.area_ttl .en {
    color: #038e7c;
    font-size: 22px;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
.area_ttl .en {
    font-size: 16px;
	letter-spacing: 0.03em;
	color: #038e7c;
    margin-bottom: 10px;
}
}
.area_ttl .ja {
    font-family: "Noto Serif JP", serif;
    color: black;
    font-size: 32px;
}
@media screen and (max-width: 768px) {
.area_ttl .ja {
    font-size: 20px;
	    font-family: "Noto Serif JP", serif;
    color: black;
}
}
.area_ttl span {
    display: block;
}

.gotoconsult{
	display: inline-block !important;
	padding: 20px;
	border: 1px solid #231815;
}

@media screen and (max-width: 768px) {
.gotoconsult{
	display: inline-block !important;
	padding: 10px 5px;
	border: 1px solid #231815;
}
}
.official_insta .container > .en {
    font-size: 14px;
    line-height: 1.4;
    padding-bottom: 20px;
    margin: 0 auto;
    display: table;
    text-align: center;
}
.staff_contact_home {
  position: relative;
  background: white;
	padding: 150px 0 0;
}
@media screen and (max-width: 768px) {
  .staff_contact_home {
    padding: 20% 0;
  }
}
.staff_contact {
  position: relative;
  background: white;
	padding: 150px 0 0;
}
@media screen and (max-width: 768px) {
  .staff_contact {
    padding: 20% 0 0;
  }
}
.staff_contact .container .other {
    text-align: center;
    margin: 100px 0;
}
@media screen and (max-width: 768px) {
.staff_contact .container .other {
    text-align: center;
        margin: 10% 0 20%;
}
}
.staff_contact .container .other .ttl {
    color: #4b4b4b;
    font-size: 22px;
}
@media screen and (max-width: 768px){
.staff_contact .container .other .ttl {
    font-size: 16px;
}
}
.staff_contact .container .other .btn {
    display: table;
    margin: 40px auto 0;
    color: #898989;
    font-size: 20px;
}
@media screen and (max-width: 768px){
.staff_contact .container .other .btn {
    font-size: 15px;
    margin: 7% auto 0;
}
}
.staff_contact .container .other .btn img {
    margin-right: 10px;
    width: 25px;
}
@media screen and (max-width: 768px) {
.staff_contact .container .other .btn img {
    width: 17px;
    margin: 0 5px 2px 0;
}
}

/*top slider*/
.top_slider_area {
	text-align: center;
}
@media screen and (max-width: 768px) {
  .top_slider_area {
	  text-align: center;
  }
}
.top_slider {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top_slider {
    width: 100%;
  }
}
.top_slider .slick .slick-arrow {
  cursor: pointer;
  position: absolute;
  top: 38%;
  color: #FFFFFF;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .top_slider .slick .slick-arrow {
    font-size: 20px;
  }
}
.top_slider .slick .slick-arrow.slider-prev {
  left: 100px;
	z-index: 100;
	position: absolute;
    top: 50%;
}
@media screen and (max-width: 768px) {
  .top_slider .slick .slick-arrow.slider-prev{
    left: 15px;
	  z-index: 100;
	      position: absolute;
    top: 50%;
  }
}
.top_slider .slick .slick-arrow.slider-next {
  right: 100px;
	z-index: 100;
	position: absolute;
    top: 50%;
}
@media screen and (max-width: 768px) {
  .top_slider .slick .slick-arrow.slider-next{
    right: 15px;
	  z-index: 100;
	      position: absolute;
    top: 50%;
  }
}
.top_slider .slick .pc { display: block; }
.top_slider .slick .sp { display: none; }
@media only screen and (max-width: 768px) {
 .top_slider .slick .pc { display: none; }
 .top_slider .slick .sp { display: block; }
}

.top_slider .slick img {
	width: 100%;
	height: auto;
}
/*--------LINKS BORDERLESS CORP ----*/
.footer-logoWhite {
  padding: 1rem 0;
  margin-top: 45px;
}

@media screen and (min-width: 64em) {
  .footer-logoWhite {
    margin-top: 1.3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-column-gap: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer-logoWhite__img {
  width: 210px;
  height: auto;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
}

@media screen and (min-width: 64em) {
  .footer-logoWhite__img {
    height: 27px;
    width: auto;
    margin-top: 5.2px;
  }
}

.footer-logoWhite__txtsub {
  color: #000;
  font-size: 11.5px;
  text-align: left;
  display: block;
  letter-spacing: 0.05rem;
  font-weight: 500;
  padding-top: 6px;
  line-height: 1.5;
}

@media screen and (min-width: 64em) {
  .footer-logoWhite__txtsub {
    font-size: 11px;
    line-height: 1.4;
    padding-top: 3px;
  }
}

.footer-common-borderless {
  padding: 0.75rem 0 6.3rem;
  background: #f6f6f6;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, 游ゴシック体, メイリオ, sans-serif;
}

.footer-common-borderless-inner {
  width: 90%;
  max-width: 1024px;
  margin: auto;
}

@media screen and (min-width: 64em) {
  .footer-common-borderless-inner {
    width: 85%;
  }
}

.footer-linksCorp {
  border-top: 2px solid #303030;
  padding: 1.2rem 0 30px;
  grid-row-gap: 7px;
}

@media screen and (min-width: 64em) {
  .footer-linksCorp {
    display: -ms-grid;
    display: grid;
    grid-row-gap: 0.3rem;
    -ms-grid-columns: 50% 50%;
        grid-template-columns: 50% 50%;
  }
}

.footer-linksCorp__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 29% 72%;
      grid-template-columns: 29% 72%;
  margin-bottom: 6px;
  grid-column-gap: 5px;
}

@media screen and (min-width: 64em) {
  .footer-linksCorp__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 24% 76%;
        grid-template-columns: 24% 76%;
    margin: 0 50px 0px 0;
    grid-column-gap: 3px;
  }
}

.footer-linksCorp__content__category {
  color: #FFF;
  font-size: 11px;
  display: block;
  margin: auto;
  text-align: center;
  width: 100%;
  font-weight: 600;
  opacity: 90%;
}

@media screen and (min-width: 64em) {
  .footer-linksCorp__content__category {
    font-size: 11.5px;
  }
}

.footer-linksCorp__content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 19px;
}

@media screen and (min-width: 64em) {
  .footer-linksCorp__content__list {
    line-height: 18px;
  }
}

.footer-linksCorp__content__list_cat_name {
  background: #1d1c1c;
  height: 20px;
  width: 100%;
  border-radius: 50px;
  opacity: 0.9;
  margin-top: 1px;
}

@media screen and (min-width: 64em) {
  .footer-linksCorp__content__list_cat_name {
    height: 19px;
    margin-top: 0;
    opacity: 0.85;
  }
}

.footer-linksCorp__item {
  display: block;
  padding: 0 0.4rem 0 0.4rem;
  position: relative;
}

@media screen and (min-width: 64em) {
  .footer-linksCorp__item {
    padding: 0 0.5rem 0 0.5rem;
  }
}

.footer-linksCorp__item::after {
  content: "";
  width: 0.05rem;
  height: 0.7em;
  top: 5px;
  bottom: 0;
  right: 0;
  position: absolute;
  background-color: #cbcbcb;
}

.footer-linksCorp__item:last-child::after {
  content: none;
}

.footer-linksCorp__link {
  color: #000;
  font-size: 12px;
  text-align: left;
  display: block;
  letter-spacing: 0.02rem;
  width: auto;
  padding: 0;
  font-weight: 300;
  opacity: 90%;
  line-height: 1.6;
}

@media screen and (min-width: 64em) {
  .footer-linksCorp__link {
    letter-spacing: 0rem;
    font-weight: 200;
    font-size: 12px;
  }
}



/*関連記事*/

.ch_column_entry .container  > .kanren .link {
	border-radius: 5px;
	box-shadow: 0 2px 6px 0rgba(0,0,0,.25);
	background-color: #fff;
	border-left: 10px solid #35b597;
	height: 82px;
	overflow: hidden;
	cursor: pointer;
	display: flex;
	align-items: center;
	transition: box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1);
	will-change: box-shadow;
  background:#35b59714;
  }
  
  .ch_column_entry .container  > .kanren .link a {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.36;
	letter-spacing: .7px;
	color: #4e4d4d;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	align-items: center;
	padding: 4px 16px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
  }
  
  .ch_column_entry .container  > .kanren .link a:before {
	content: "関連記事";
	display: flex;
	width: 100%;
	background: url(https://img.petokoto.com/assets/articles/icon/book-v2.svg) no-repeat 0;
	background-size: 15px 12px;
	padding-left: 20px;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.54;
	letter-spacing: .65px;
	color: #4e4d4d;
  }
  
  .ch_column_entry .container  > .kanren {
	grid-template-columns: 1fr;
  }
  
  .ch_column_entry .container  >  .kanren {
	display: grid;    grid-gap: 15px 23px;
	margin: 10px 1px;
  }

  /* 商品ページ 固定フッター金額表示 */
  #footer-fixed-price {
    position: fixed;
    bottom: 0;
    width: 100vw;
    left: 0;
    background-color: #F8F6F0;
    z-index: 9999;
    border-top: 2px solid #3AA589;
  }
  #footer-fixed-price .footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 880px;
    margin: 12px auto;
  }
  #footer-fixed-price .footer-inner-wrp {
    display: flex;
    align-items: center;
  }
  #footer-fixed-price .footer-product-txt {
    font-size: 15px;
    font-weight: 700;
    margin-left: 15px;
  }
  #footer-fixed-price .footer-product-txt.big {
    font-size: 18px;
    letter-spacing: 1px;
  }
  #footer-fixed-price .footer-price-txt {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
  }
  #footer-fixed-price .font-01 {
    font-size: 70%;
  }
  #footer-fixed-price .font-02 {
    font-size: 55%;
  }
  #footer-fixed-price .footer-cart-btn {
    display: block;
    width: 220px;
    font-size: 14px;
    color: #fff;
    background-color: #3AA589;
    border-radius: 100px;
    padding: 15px;
    text-align: center;
  }

  /* リニューアル後 */
  #footer-fixed-price.new-products .footer-inner-wrp {
    flex-direction: column;
    align-items: flex-start;
  }
  #footer-fixed-price .footer-price-ttl {
    font-size: 10px;
    margin-bottom: 2px;
  }
  #footer-fixed-price.new-products {
    border: none;
    padding-top: 14px;
  }
  #footer-fixed-price.new-products .footer-cart-btn {
    font-size: 16px;
  }
  #footer-fixed-price.new-products .footer-flex {
    max-width: 550px;
  }
  #footer-fixed-price.new-products .date .txt {
    text-align: center;
		font-weight: 700;
  }
  #footer-fixed-price.new-products .date .txt br {
    display: none;
  }
  #footer-fixed-price.new-products .footer-price-txt {
    font-size: 32px;
  }
  #footer-fixed-price .footer-price-txt .font-min {
    font-size: 50%;
  }

  @media screen and (max-width: 768px) {
    #footer-fixed-price .footer-flex {
      margin: 15px;
    }
    #footer-fixed-price .footer-inner-wrp {
      flex-direction: column-reverse;
      align-items: flex-start;
    }
    #footer-fixed-price .footer-price-txt {
      font-size: 22px;
      letter-spacing: 1px;
    }
    #footer-fixed-price .footer-product-txt.big {
      font-size: 15px;
    }
    #footer-fixed-price .footer-cart-btn {
      width: 140px;
    }
    #footer-fixed-price .footer-product-txt {
      font-size: 12px;
      margin: 0 0 5px 0;
    }
  }