@charset "UTF-8";
html {
  overflow-y: scroll;
  line-height: 1;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  /* iOS 8+ */
}

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section {
  display: block;
}

a {
  background: transparent;
  /* Remove the gray background on active links in IE 10 */
  -webkit-text-decoration-skip: objects;
  /* Remove gaps in links underline in iOS 8+ and Safari 8+ */
}
a:active, a:hover {
  outline-width: 0;
}

img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

li {
  list-style: none;
}

summary {
  display: list-item;
}

hr {
  height: 0;
  overflow: visible;
  /* Show the overflow in Edge and IE */
}

[hidden],
template {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: none;
  text-decoration: none;
  /* Remove text decoration in Firefox 40+ */
}

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

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

b,
strong {
  font-weight: bolder;
  /* Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+ */
}

/* Address styling not present in Safari and Chrome */
dfn {
  font-style: italic;
}

/* Address styling not present in IE 8/9 */
mark {
  background-color: #ff0;
  color: #646464;
}

sub,
sup {
  font-size: 0.75rem;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

input, button, textarea, select {
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
}

textarea {
  overflow: auto;
  /* Internet Explorer 11+ */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
  -webkit-appearance: button;
}

[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
  /* Firefox 36+ */
}

[type=search] {
  -webkit-appearance: textfield;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* Safari 8 */
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

legend {
  border: 0;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  /* Correct the text wrapping in Edge and IE */
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* Correct the inability to style clickable types in iOS and Safari */
  font: inherit;
  /* Change font properties to `inherit` in Chrome and Safari */
}

/* text */
input::-ms-clear {
  visibility: hidden;
}

/* password */
input::-ms-reveal {
  visibility: hidden;
}

/* select */
select::-ms-expand {
  display: none;
}

/* text color */
select::-ms-value {
  color: inherit;
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
  /* Internet Explorer 11- */
}

audio,
canvas,
progress,
video {
  display: inline-block;
  /* Internet Explorer 11+, Windows Phone 8.1+ */
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
}

@-moz-document url-prefix() {
  .font_hack {
    background-color: currentColor;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
/* br
------------------------------------------------- */
.pc_none {
  display: none;
}
@media screen and (max-width: 48em) {
  .pc_none {
    display: inline-block;
  }
}

@media screen and (max-width: 48em) {
  .tab_none {
    display: none;
  }
}

@media screen and (max-width: 23.4375em) {
  .sp_none {
    display: none;
  }
}

@media screen and (max-width: 20em) {
  .xs_none {
    display: none;
  }
}

.xs_only {
  display: none;
}
@media screen and (max-width: 20em) {
  .xs_only {
    display: inline-block;
  }
}

/* float
------------------------------------------------- */
.float_r {
  float: right;
}

.float_l {
  float: left;
}

/* clearfix */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* margin + padding （0から5刻みでクラスを定義 ex: mb0, mb5, mb10...）
------------------------------------------------- */
.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.ml85 {
  margin-left: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mr95 {
  margin-right: 95px !important;
}

.ml95 {
  margin-left: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.pl85 {
  padding-left: 85px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.pr95 {
  padding-right: 95px !important;
}

.pl95 {
  padding-left: 95px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.mauto {
  margin-left: auto;
  margin-right: auto;
}

/* align
------------------------------------------------- */
.align_l {
  text-align: left !important;
}

.align_r {
  text-align: right !important;
}

.align_c {
  text-align: center !important;
}

/* font size
------------------------------------------------- */
.smaller {
  font-size: 85% !important;
}

.larger {
  font-size: 120% !important;
}

.bold {
  font-weight: bold !important;
}

/* display
------------------------------------------------- */
.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.w100 {
  width: 100%;
}

/* list
------------------------------------------------- */
.list_disc {
  margin-left: 1.2em;
  list-style: disc;
}

.list_square {
  margin-left: 1.2em;
  list-style: square;
}

.list_decimal {
  margin-left: 1.7em;
  list-style: decimal;
}

.list_decimal_zero {
  margin-left: 2.3em;
  list-style: decimal-leading-zero;
}

/* list style
------------------------------------------------- */
/* ---- ※ ---- */
.list_asterisk > li {
  text-indent: -1.3em;
  margin-left: 1.3em;
}
.list_asterisk > li::before {
  content: "※ ";
}
.list_asterisk > li > * {
  text-indent: 0;
}

/* ---- ・ ---- */
.list_dot > li {
  text-indent: -1em;
  margin-left: 1em;
}
.list_dot > li::before {
  content: "・";
}
.list_dot > li > * {
  text-indent: 0;
}

/* ---- ● ---- */
.list_circle > li {
  text-indent: -1em;
  margin-left: 1em;
}
.list_circle > li::before {
  content: "● ";
}
.list_circle > li > * {
  text-indent: 0;
}

/* ---- ● ---- */
.list_circle02 > li {
  text-indent: -1em;
  margin-left: 1em;
}
.list_circle02 > li::before {
  content: "●";
}
.list_circle02 > li > * {
  text-indent: 0;
}

/* ---- 1. ---- */
.list_decimal_01 > li {
  counter-increment: decimal_01;
  margin-left: 1.2em;
  text-indent: -1.2em;
}
.list_decimal_01 > li::before {
  content: counter(decimal_01) ". ";
}
.list_decimal_01 > li > * {
  text-indent: 0;
}

/* ---- (1) ---- */
.list_decimal_02 > li {
  counter-increment: decimal_02;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.list_decimal_02 > li::before {
  content: "(" counter(decimal_02) ") ";
}
.list_decimal_02 > li > * {
  text-indent: 0;
}

/* ---- [1] ---- */
.list_decimal_03 > li {
  counter-increment: decimal_03;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.list_decimal_03 > li::before {
  content: "[" counter(decimal_03) "] ";
}
.list_decimal_03 > li > * {
  text-indent: 0;
}

/* ---- 丸数字 ---- */
.list_decimal_04 > li {
  counter-increment: decimal_04;
  margin-left: 1.7em;
  text-indent: -1.7em;
}
.list_decimal_04 > li::before {
  content: counter(decimal_04);
  border: 1px solid #646464;
  padding: 0.2em 0.5em;
  font-size: 12px;
  font-weight: 700;
  margin-right: 9px;
  text-align: center;
  line-height: 1;
  border-radius: 50%;
}
.list_decimal_04 > li > * {
  text-indent: 0;
}

.list_decimal_04_text {
  position: relative;
  margin: 0;
  padding: 0;
}
.list_decimal_04_text li {
  list-style: none;
  list-style-position: outside;
  margin: 0;
  margin-left: 1.25em;
}
.list_decimal_04_text li span.num {
  position: absolute;
  left: 0;
  margin: 0;
}

/* ---- 数字 ---- */
.list_decimal_05 > li {
  counter-increment: decimal_05;
  margin-left: 1em;
  text-indent: -1em;
}
.list_decimal_05 > li::before {
  content: counter(decimal_05) ".";
}

/* ---- upper alpha ---- */
.list_upper_alpha_01 > li {
  counter-increment: upper_alpha_01;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.list_upper_alpha_01 > li::before {
  content: counter(upper_alpha_01, upper-alpha) ") ";
}
.list_upper_alpha_01 > li > * {
  text-indent: 0;
}

/* 注釈
------------------------------------------------- */
/* ---- ※（注釈） ---- */
.notes {
  margin-left: 1.3em;
  text-indent: -1.3em;
}
.notes::before {
  content: "※ ";
}
.notes > * {
  text-indent: 0;
}

/* ---- ※n （番号付き注釈）---- */
.notes_num {
  counter-increment: decimal_notes;
  margin-left: 1.9em;
  text-indent: -1.9em;
}
.notes_num:before {
  content: "※" counter(decimal_notes) " ";
}
.notes_num > * {
  text-indent: 0;
}

/* 章番号用mixin (IE8以上)
usage:
■キャプションに章番号をつける場合
$counterName: oreoreCounter;
.parent-section {
  @include resetCounter($counterName);
  h2 {
    @include addCounter($counterName, '第', '章');
  }
}
■入れ子になってるリストに通し番号(1-1-1など）を付ける場合
$counterName: listCounter;
ol {
  @include resetCounter($counterName);
  li {
    @include addCounters($counterName, '-');
  }
}
------------------------------------------------- */
.i_block {
  display: inline-block;
}

/* body
------------------------------------------------- */
body {
  overflow-x: hidden;
  position: relative;
  background: #fff;
  color: #646464;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
body::after {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100vh;
  margin: auto;
  background: url(../img/common/bg_pc.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 48em) {
  body::after {
    background-image: url(../img/common/bg_sp.jpg);
  }
}

/* noscript
------------------------------------------------- */
.noscript {
  padding: 10px 0;
  background: #fff;
  font-weight: 600;
  text-align: center;
}

/* header
------------------------------------------------- */
.site_header {
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 92px;
  margin: 0 auto;
}
@media screen and (max-width: 48em) {
  .site_header {
    height: 54px;
  }
}
.site_header .header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: auto;
  padding: 0 20px;
  background-color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site_header .site_id {
  width: 224px;
}
@media screen and (max-width: 48em) {
  .site_header .site_id {
    width: 146px;
  }
}
.site_header .site_id a {
  display: block;
}
.site_header .site_id a img {
  display: block;
}
.site_header .header_box .search {
  padding: 52px;
  font-size: 2.8rem;
}
.site_header .header_box .search i {
  color: #949494;
}

/* global nav
------------------------------------------------- */
/* hamburger button */
.nav_toggle {
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  z-index: 100;
  width: 28px;
  height: 28px;
  margin: auto;
  background: #fff;
  cursor: pointer;
}
.nav_toggle span {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  background: #474747;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.nav_toggle span:nth-of-type(1) {
  margin-top: 0;
}
.nav_toggle span:nth-of-type(3) {
  margin-bottom: 0;
}

/* global nav */
.global_nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  z-index: 10;
  width: 100%;
  height: auto;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.global_nav .main_nav_list {
  overflow-y: auto;
  width: 33%;
  height: calc(100vh - 92px);
  padding: 20px 20px 20px 130px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 48em) {
  .global_nav .main_nav_list {
    width: 100%;
    height: calc(100vh - 54px);
    padding-left: 20px;
  }
}
.global_nav .main_nav_list li {
  margin-bottom: 20px;
}
.global_nav .main_nav_list li:last-child a {
  margin-right: 0;
}
.global_nav .main_nav_list li.has_children.open > button {
  color: #e56783;
}
.global_nav .main_nav_list .contact a {
  padding: 10px 40px;
  border-radius: 4px;
  border: 2px solid #e56783;
  background: #fff;
  color: #e56783;
}
.global_nav .main_nav_list .contact a:before {
  display: inline-block;
  content: "";
  width: 24px;
  height: 17px;
  margin-right: 6px;
  background: url(../img/common/icon_mail.svg) no-repeat center center;
  background-size: contain;
}
.global_nav .main_nav_list a, .global_nav .main_nav_list button {
  display: inline-block;
  margin-right: 0;
  font-size: 1.8rem;
  font-weight: 700;
}

/* nav open */
.site_header.nav_open .nav_toggle span:nth-of-type(1) {
  top: 14px;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  margin-top: 0;
}
.site_header.nav_open .nav_toggle span:nth-of-type(2) {
  left: 50%;
  width: 0;
}
.site_header.nav_open .nav_toggle span:nth-of-type(3) {
  top: 14px;
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-top: 0;
}

main.nav_open .global_nav {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
main.nav_open .global_nav .main_nav_list {
  margin-top: 92px;
}
@media screen and (max-width: 48em) {
  main.nav_open .global_nav .main_nav_list {
    margin-top: 54px;
  }
}

.main_nav_list_child {
  display: none;
  overflow-x: auto;
  position: absolute;
  top: 92px;
  left: 33%;
  width: 33%;
  height: calc(100vh - 92px);
  margin-left: 16px;
  padding: 20px;
}
@media screen and (max-width: 48em) {
  .main_nav_list_child {
    position: static;
    width: 100%;
    height: auto;
    padding-bottom: 0;
  }
}
.main_nav_list_child:nth-of-type(2) {
  left: 66%;
}
@media screen and (max-width: 48em) {
  .main_nav_list_child:nth-of-type(2) {
    padding: 0 20px;
  }
}
.main_nav_list_child ul {
  margin-top: 5px;
  margin-left: 16px;
}
.main_nav_list_child ul a:before {
  content: "-";
  margin-right: 0.5em;
}

.global_nav .main_nav_list_child ul li {
  margin-bottom: 5px;
}

.global_nav .menu {
  background: #fff9fb;
}

.global_nav .sp_menu {
  display: none;
}

/* background overlay */
/* main title
------------------------------------------------- */
.page_title_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 304px;
  background: url(../img/common/bg_tit.jpg) no-repeat 50% 50%;
  background-size: cover;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 48em) {
  .page_title_box {
    height: 200px;
  }
}

.page_title {
  color: #fff;
  font-family: "ten-mincho-text", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 3.6rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.06em;
}
@-moz-document url-prefix() {
  .page_title {
    background-color: currentColor;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media screen and (max-width: 48em) {
  .page_title {
    font-size: 2.4rem;
  }
}

/* breadcrumb
------------------------------------------------- */
.breadcrumb {
  width: 95%;
  max-width: calc(1040px + 20px * 2);
  margin: 16px auto 70px;
  padding: 0 20px;
}
@media screen and (max-width: 48em) {
  .breadcrumb {
    margin: 15px auto 30px;
    padding: 0;
  }
}
.breadcrumb ol {
  letter-spacing: -0.5em;
}
.breadcrumb li {
  display: inline-block;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.breadcrumb li::after {
  content: "＞";
}
.breadcrumb li:last-of-type {
  margin: 0;
  padding: 0;
  border: none;
}
.breadcrumb li:last-of-type::after {
  content: none;
}
.breadcrumb li:last-of-type a {
  cursor: default;
  pointer-events: none;
}
.breadcrumb li a {
  color: #878787;
}
.breadcrumb li a:hover {
  color: #e56783;
}

/* _layout.scss add
------------------------------------------------- */
.anchor,
body.goods #top1,
body.goods #top2,
body.goods #top3,
body.goods #top4 {
  margin-top: -92px;
  padding-top: 92px;
}
@media screen and (max-width: 48em) {
  .anchor,
body.goods #top1,
body.goods #top2,
body.goods #top3,
body.goods #top4 {
    margin-top: -54px;
    padding-top: 54px;
  }
}

/* one column layout
------------------------------------------------- */
main {
  margin: 92px auto 0;
}
@media screen and (max-width: 48em) {
  main {
    margin-top: 54px;
  }
}

/* page_content
------------------------------------------------- */
.contents {
  width: 100%;
  max-width: calc(1040px + 20px * 2);
  margin: 0 auto;
  padding: 0 20px;
}

.scroll_mark {
  width: 280px;
  padding: 4px 0 0 4px;
  position: fixed;
  bottom: 244px;
  left: -72px;
  z-index: 100;
  color: #e56783;
  font-size: 1.4rem;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.scroll_mark:before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  top: 0;
  left: 0;
  background-color: #f8dae1;
}
.scroll_mark:after {
  display: block;
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  top: 0;
  right: 0;
  background-color: #fff;
}

.contact_box {
  max-width: 648px;
  margin: 0 auto 40px;
  padding: 20px 5px;
  border: 1px #e56783 solid;
  border-top-width: 7px;
  background-color: #fff;
  text-align: center;
}
.contact_box .address {
  margin-bottom: 0;
}
.contact_box .tel {
  margin-bottom: 0;
}
.contact_box .tel a {
  color: #646464;
  display: inline;
}
.contact_box .name {
  margin-bottom: 8px;
  color: #e56783;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0;
}
.contact_box .email {
  margin-bottom: 16px;
}
.contact_box .email a {
  color: #646464;
  display: inline;
}
.contact_box .btn.btn_01 figure {
  max-height: none;
  margin-bottom: 0;
}
.contact_box .btn.btn_01 .icon img {
  max-height: none;
  width: 100%;
}
.contact_box .btn.btn_01 a {
  display: inline-block;
}

.no_page {
  pointer-events: none !important;
  color: #B0ADAE !important;
}

main.page .top {
  margin-bottom: 105px;
  position: relative;
}
@media screen and (max-width: 48em) {
  main.page .top {
    margin-bottom: 50px;
  }
}
main.page .top::before {
  display: block;
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  top: 0;
  background-color: #fff;
}
main.page .top .contents {
  max-width: calc(1000px + 20px * 2);
}
@media screen and (max-width: 48em) {
  main.page .top .contents {
    padding: 20px;
  }
}
main.page .top .contents .title_01 {
  position: relative;
  text-align: left;
}
main.page .top .contents .flex_box {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 48em) {
  main.page .top .contents .flex_box {
    display: block;
  }
}
main.page .top .contents .flex_box p span {
  font-size: 1.4rem;
}
main.page .top .contents .flex_box .box:nth-of-type(1) {
  width: 100%;
}
@media screen and (max-width: 48em) {
  main.page .top .contents .flex_box .box:nth-of-type(1) {
    margin: 0 auto 20px;
  }
}
main.page .top .contents .flex_box .box:nth-of-type(2) {
  width: 100%;
  margin-left: 30px;
}
@media screen and (max-width: 48em) {
  main.page .top .contents .flex_box .box:nth-of-type(2) {
    margin-left: 0 !important;
  }
}
main.page .contents.bg_color_01.negative {
  max-width: 1040px;
  margin-top: -156px;
  margin-bottom: 146px;
  padding: 156px 80px 92px;
}
@media screen and (max-width: 48em) {
  main.page .contents.bg_color_01.negative {
    padding-right: 20px;
    padding-left: 20px;
    margin-bottom: 72px;
    padding-bottom: 60px;
  }
}
main.page .contents.bg_color_01.negative_02 {
  max-width: 1040px;
  margin-top: -156px;
  padding: 156px 120px 92px;
}
@media screen and (max-width: 48em) {
  main.page .contents.bg_color_01.negative_02 {
    padding-right: 20px;
    padding-left: 20px;
  }
}
main.page .contents.bg_color_01.negative_02 {
  max-width: 1040px;
  margin-top: -156px;
  padding: 156px 120px 92px;
}
@media screen and (max-width: 48em) {
  main.page .contents.bg_color_01.negative_02 {
    padding-right: 20px;
    padding-left: 20px;
  }
}
main.page .please {
  margin-bottom: 150px;
}
@media screen and (max-width: 48em) {
  main.page .please {
    margin-bottom: 70px;
  }
}
main.page .please .bg_color_01.inner {
  padding: 60px 120px;
}
@media screen and (max-width: 48em) {
  main.page .please .bg_color_01.inner {
    padding: 60px 20px;
  }
}
main.page .please .lower {
  padding: 60px 36px 10px;
}
@media screen and (max-width: 48em) {
  main.page .please .lower {
    padding: 60px 0;
  }
}
main.page .please p {
  margin-bottom: 40px;
}
@media screen and (max-width: 48em) {
  main.page .text_area_01 {
    margin-bottom: 70px;
  }
}
main.page .text_area_01 .bg_color_01.inner {
  padding: 60px 120px 30px;
}
@media screen and (max-width: 48em) {
  main.page .text_area_01 .bg_color_01.inner {
    padding: 60px 20px;
  }
}
main.page .text_area_01 .lower {
  padding: 60px 36px 10px;
}
@media screen and (max-width: 48em) {
  main.page .text_area_01 .lower {
    padding: 60px 0;
  }
}
main.page .text_area_01 p {
  margin-bottom: 40px;
}
@media screen and (max-width: 48em) {
  main.page .text_area_02 {
    margin-bottom: 70px;
  }
}
main.page .text_area_02 .bg_color_01.inner {
  padding: 60px 100px;
}
@media screen and (max-width: 48em) {
  main.page .text_area_02 .bg_color_01.inner {
    padding: 60px 20px;
  }
}
main.page .text_area_02 p {
  margin-bottom: 40px;
}
main.page .method {
  padding: 140px;
}
@media screen and (max-width: 48em) {
  main.page .method {
    padding: 70px 20px;
  }
}
main.page .method .contents {
  max-width: calc(812px + 20px * 2);
}
@media screen and (max-width: 48em) {
  main.page .method .contents {
    padding: 0;
  }
}
main.page .method .title_01 {
  color: #fff !important;
}
main.page .method .inner {
  margin-bottom: 8px;
}
@media screen and (max-width: 48em) {
  main.page .method .inner {
    padding: 20px;
  }
}
main.page .account {
  max-width: 648px;
  margin: 0 auto;
}
@media screen and (max-width: 48em) {
  main.page .account {
    display: block;
  }
}
main.page .account .account_title {
  margin-bottom: 8px;
  border-bottom: 1px #e5e5e5 solid;
  font-weight: 700;
}
main.page .account.col_2 .box {
  width: 46%;
}
@media screen and (max-width: 48em) {
  main.page .account.col_2 .box {
    width: 100%;
    margin-bottom: 32px;
  }
}
main.page .about {
  margin: 142px auto;
}
@media screen and (max-width: 48em) {
  main.page .about {
    margin: 70px auto;
  }
}
main.page .about p {
  margin-bottom: 32px;
}
main.page .about .btn {
  margin-bottom: 50px;
}
main.page .top.left_w_area .contents {
  position: relative;
  padding: 50px 145px 50px 50px;
}
@media screen and (max-width: 48em) {
  main.page .top.left_w_area .contents {
    padding: 40px 20px;
  }
}

body.privacypolicy section.contents {
  margin-bottom: 132px;
}
body.privacypolicy section.contents .bg_color_01 {
  padding: 90px 120px;
}
@media screen and (max-width: 48em) {
  body.privacypolicy section.contents .bg_color_01 {
    padding: 90px 20px;
  }
}

.notfound_404.contents {
  margin-bottom: 120px;
}
.notfound_404.contents .bg_color_01 {
  padding: 60px 50px;
}
@media screen and (max-width: 48em) {
  .notfound_404.contents {
    margin-bottom: 60px;
  }
}

.participate .contents.bg_color_01.negative > li {
  padding-bottom: 45px;
}
.participate .contents.bg_color_01.negative > li:not(:first-child) {
  padding-top: 45px;
}
.participate .flex_box.reverse figure {
  width: 26%;
}
.participate .flex_box.reverse p {
  width: 70%;
}
@media screen and (max-width: 48em) {
  .participate .flex_box.reverse figure {
    max-width: 230px;
    width: 100%;
    margin: 0 auto 30px;
  }
  .participate .flex_box.reverse p {
    width: 100%;
  }
}
.participate .skip_contents.flex_box.col_2 {
  margin-bottom: 150px;
}
@media screen and (max-width: 48em) {
  .participate .skip_contents.flex_box.col_2 {
    margin-bottom: 70px;
  }
}

body.activity .bg_color_01 {
  padding-top: 80px;
  padding-bottom: 80px;
  margin-bottom: 80px;
}
body.activity .list_decimal_05.border_box_01 {
  max-width: 595px;
  width: 100%;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 55px auto;
  padding: 36px 100px;
}
body.activity .list_decimal_05.border_box_01 > li:not(:last-child) {
  margin-bottom: 1em;
}
body.activity .list_decimal_05.border_box_01 + p {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
body.activity .contents .card_list_02 {
  margin-bottom: 65px;
}
@media screen and (max-width: 48em) {
  body.activity .bg_color_01 {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 60px;
  }
  body.activity .list_decimal_05.border_box_01 {
    padding: 20px 10px;
    margin: 25px 0;
  }
  body.activity .contents .card_list_02 {
    margin-bottom: 45px;
  }
}

body.early_detection .title_01:not(:first-child) {
  margin-top: 90px;
}
body.early_detection .please .bg_color_01.inner {
  padding-top: 90px;
  padding-bottom: 100px;
}
@media screen and (max-width: 48em) {
  body.early_detection .please .bg_color_01.inner {
    padding: 60px 20px;
  }
}
body.early_detection .bold_text + .graph {
  margin-top: 0.5em;
}
body.early_detection .bold_text + .graph img {
  max-width: 430px;
}
body.early_detection .bold_text + .graph figcaption {
  margin: 0.5em 0 1em;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
body.early_detection .color_01.under_line li:not(:last-child) {
  margin-bottom: 1em;
}

body.cancer .text_area_01 .bg_color_01.inner {
  padding-top: 100px;
  padding-bottom: 40px;
}
@media screen and (max-width: 48em) {
  body.cancer .text_area_01 .bg_color_01.inner {
    padding-top: 60px;
  }
}
body.cancer section.bg_color_05 {
  padding-top: 130px;
  padding-bottom: 100px;
}
@media screen and (max-width: 48em) {
  body.cancer section.bg_color_05 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
body.cancer .flex_box {
  padding-top: 10px;
}
body.cancer .flex_box figure.img_graph_01 {
  max-width: 331px;
  margin-right: 30px;
}
body.cancer .flex_box figure.img_graph_02 {
  max-width: 397px;
}
body.cancer .flex_box figure.img_graph_03 {
  max-width: 397px;
}
body.cancer .flex_box + .list_asterisk {
  margin-top: 50px;
  padding-top: 15px;
  border-top: dashed #707070 1px;
}
@media screen and (max-width: 48em) {
  body.cancer .flex_box {
    display: block;
  }
  body.cancer .flex_box figure {
    margin: 0 auto 30px;
  }
  body.cancer .flex_box figure.img_graph_01 {
    margin-right: auto;
  }
}
body.cancer .table_a .title_01 {
  background: none;
}
body.cancer .title_01.small {
  margin-bottom: 10px;
}

.summary .logo {
  max-width: 223px;
}
.summary .dl_list_02 {
  margin-bottom: 60px;
}
.summary .dl_list_02 dd p:not(:last-child), .summary .dl_list_02 dd figure:not(:last-child) {
  margin-bottom: 1em;
}
.summary .dl_list_02 dd .excar {
  margin-top: 1em;
}
.summary .dl_list_02.houjin dt {
  width: 10em;
}
.summary .dl_list_02.houjin dd {
  width: calc(100% - 10em);
}
.summary .title_03 {
  margin-bottom: 32px;
  padding-left: 50px;
  border-bottom: 1px #e98097 solid;
  color: #e98097;
}
@media screen and (max-width: 48em) {
  .summary .dl_list_02.houjin dd {
    width: 100%;
  }
  .summary .title_06 {
    margin-left: 0;
  }
}
.summary .contents.area {
  padding: 20px 20px 0;
}
.summary .contents.area .accordion h4 {
  line-height: 1.3;
  border-left: 5px #e56783 solid;
  padding-left: 5px;
  color: #e56783;
  margin-bottom: 20px;
}
.summary .contents.area .accordion .facility .table_wrapper .base th:first-child {
  width: 30%;
}
.summary .contents.area .accordion .facility .table_wrapper .base th:nth-child(2) {
  width: 70%;
}

body.patient .skip_contents.flex_box.col_3 {
  margin-bottom: 50px;
}
body.patient .bg_color_01.bg_img_01 {
  padding: 50px 120px;
  margin-bottom: 120px;
}
body.patient .contents.bg_color_01.negative {
  padding-bottom: 60px;
}
@media screen and (max-width: 48em) {
  body.patient .contents.bg_color_01.negative {
    padding-bottom: 40px;
  }
}
body.patient .contents.area {
  padding: 20px 20px 0;
}
body.patient .contents.area .accordion h4 {
  line-height: 1.3;
  border-left: 5px #e56783 solid;
  padding-left: 5px;
  color: #e56783;
  margin-bottom: 20px;
}
body.patient .contents.area .accordion .facility .table_wrapper .base th:first-child {
  width: 30%;
}
body.patient .contents.area .accordion .facility .table_wrapper .base th:nth-child(2) {
  width: 70%;
}
@media screen and (max-width: 48em) {
  body.patient .bg_color_01.bg_img_01 {
    padding: 20px 20px;
  }
}

/* two column layout
------------------------------------------------- */
.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: calc(1040px + 20px * 2);
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 48em) {
  .wrapper {
    display: block;
  }
}
.wrapper main {
  max-width: 720px;
  margin: 0;
}
@media screen and (max-width: 48em) {
  .wrapper main {
    width: 100%;
    margin-bottom: 60px;
  }
}
.wrapper aside {
  width: 260px;
  margin-bottom: 80px;
}
@media screen and (max-width: 48em) {
  .wrapper aside {
    width: 100%;
    margin-bottom: 40px;
  }
}

/* sidebar
------------------------------------------------- */
.sidebar {
  width: 28%;
}
@media screen and (max-width: 48em) {
  .sidebar {
    width: 100%;
  }
}
.sidebar a:hover, .sidebar a:focus {
  color: #e56783;
}

.sidebar_title {
  margin-bottom: 2.7rem;
  padding: 1.2rem 10%;
  background: #e56783;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
}

.sidebar_list {
  margin: 0 10%;
}
.sidebar_list li {
  margin-bottom: 1rem;
}

.sidebar .btn_click span {
  position: relative;
  cursor: pointer;
  padding-right: 1.5em;
}
.sidebar .btn_click span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  border-style: solid;
  border-width: 12px 8px 0 8px;
  border-color: #e56783 transparent transparent transparent;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.sidebar .btn_click.open span:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}

/* footer
------------------------------------------------- */
.site_footer .footer_nav_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: calc(1040px + 20px * 2);
  margin: 20px auto 0;
  padding: 0 20px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 48em) {
  .site_footer .footer_nav_main {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
  }
}
.site_footer .footer_nav_main .footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 20px 0 15px;
}
.site_footer .footer_nav_main .footer_nav li {
  padding: 5px 0;
}
.site_footer .footer_nav_main .footer_nav a {
  color: #646464;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.site_footer .footer_nav_main .footer_nav a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  bottom: -2px;
  -webkit-transform: scale(0, 1);
      -ms-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: center top;
      -ms-transform-origin: center top;
          transform-origin: center top;
}
.site_footer .footer_nav_main .footer_nav a:hover::after {
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
}
.site_footer .footer_nav_main .footer_nav .second {
  margin-left: 1em;
}
.site_footer .footer_nav_main .logo {
  margin-left: 20px;
}
@media screen and (max-width: 48em) {
  .site_footer .footer_nav_main .logo {
    max-width: 260px;
    margin: 0;
  }
}

.footer_about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 90%;
  max-width: calc(1040px + 20px * 2);
  margin: 0 auto;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid #e6e6e6;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.footer_about .logo {
  margin-right: 3%;
}
.footer_about .name {
  display: block;
  color: #e56783;
  font-size: 1.8rem;
}
.footer_about .description {
  display: block;
  color: #707070;
  font-size: 1.2rem;
}

.footer_nav_list > li:not(:last-of-type) {
  margin-bottom: 1em;
}
.footer_nav_list > li > a {
  font-size: 1.4rem;
  font-weight: 900;
}

.footer_main_area {
  padding-top: 40px;
  background: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 48em) {
  .footer_main_area {
    display: none;
  }
}

.footer_nav_list_child {
  margin-left: 1em;
  font-size: 1.3rem;
}

.footer_sub_area {
  margin-bottom: 51px;
  background: rgba(229, 103, 131, 0.69);
  color: #fff;
}
.footer_sub_area a {
  color: #fff;
}
.footer_sub_area .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 90%;
  padding: 1.6rem 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 48em) {
  .footer_sub_area .contents {
    display: block;
    padding: 4.5rem 0 3rem;
  }
}

.footer_nav_sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 1.4rem;
}
@media screen and (max-width: 48em) {
  .footer_nav_sub {
    display: block;
    margin-bottom: 2.1rem;
  }
}
.footer_nav_sub li:not(:last-of-type) {
  margin-right: 5%;
}
.footer_nav_sub a:before {
  content: "-";
}

.footer_share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 48em) {
  .footer_share {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 1.25rem;
  }
}
.footer_share .share_title {
  margin-right: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}
.footer_share .share_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer_share .share_list li:not(:last-of-type) {
  margin-right: 5px;
}
.footer_share .share_list a {
  display: block;
  width: 3.7rem;
  border-radius: 50%;
  border: 1px solid #fff;
  text-align: center;
}
.footer_share .share_list a i {
  font-size: 1.8rem;
  line-height: 2;
}

.footer_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 16px;
}
@media screen and (max-width: 48em) {
  .footer_sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 5rem;
  }
}
.footer_sns .sns_title {
  margin-right: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}
.footer_sns .sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer_sns .sns_list li:not(:last-of-type) {
  margin-right: 5px;
}
.footer_sns .sns_list a {
  display: block;
  width: 3.7rem;
}
.footer_sns .sns_list a i {
  font-size: 3.7rem;
}

.footer_sub_nav_area {
  width: 80%;
  text-align: right;
}
@media screen and (max-width: 48em) {
  .footer_sub_nav_area {
    width: 100%;
    text-align: center;
  }
}

/* copyright
------------------------------------------------- */
.copyright {
  font-size: 1.1rem;
}

/* fixed navi
------------------------------------------------- */
.fixednavi {
  z-index: 4;
  width: 100%;
  padding: 12px 0;
  position: fixed;
  bottom: 0;
  background-color: white;
}

.fixednavi_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.fixednavi_list a {
  font-size: 1.4rem;
}
@media screen and (max-width: 48em) {
  .fixednavi_list a {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 20em) {
  .fixednavi_list a {
    font-size: 1rem;
  }
}

/* page_top
------------------------------------------------- */
.page_top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 5;
}
.page_top a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  padding: 10px;
  background: rgba(229, 103, 131, 0.7);
  border-radius: 50%;
  color: #fff;
  font-size: 0;
  text-align: center;
}
.page_top a::after {
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.page_top a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 48em) {
  .page_top {
    bottom: 55px;
  }
}

/* text link
------------------------------------------------- */
a {
  color: #646464;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
a.underline:hover {
  text-decoration: underline;
}
a.color:hover {
  color: #11c;
}

a[href*="tel:"] {
  cursor: default;
  pointer-events: none;
}
@media screen and (max-width: 48em) {
  a[href*="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
}

/* img
------------------------------------------------- */
img {
  width: 100%;
  height: auto;
  line-height: 1;
  vertical-align: top;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -ms-transition: 　none;
}

/* form
------------------------------------------------- */
input:not([type=submit]), textarea, select {
  padding: 8px 10px;
  border: 1px solid #aaa;
  background: #fff;
}

input[type=text], input[type=tel], input[type=email], textarea {
  width: 100%;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

input[type=text]:focus, input[type=tel]:focus, input[type=email]:focus, textarea:focus {
  border: 1px solid #e56783;
  -webkit-box-shadow: 0 0 3px rgba(229, 103, 131, 0.5);
          box-shadow: 0 0 3px rgba(229, 103, 131, 0.5);
}

textarea {
  height: 200px;
  resize: vertical;
}
@media screen and (max-width: 23.4375em) {
  textarea {
    height: 150px;
  }
}

input::-webkit-input-placeholder {
  color: #ccc;
}

input::-moz-placeholder {
  color: #ccc;
}

input::-ms-input-placeholder {
  color: #ccc;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
          box-shadow: 0 0 0 1000px #fff inset;
}

/* animation
------------------------------------------------- */
.animation {
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.animation.fast {
  -webkit-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.animation.slow {
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.animation.cubic {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
       -o-transition-timing-function: cubic-bezier(1, 0, 0, 1);
          transition-timing-function: cubic-bezier(1, 0, 0, 1);
}

/* pager - WPのページャー
------------------------------------------------- */
/* list */
.pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 100px;
}
@media screen and (max-width: 48em) {
  .pager {
    margin: 0 auto 60px;
  }
}
.pager .pager_item {
  width: 50px;
  height: 50px;
  margin: 0 2px;
  line-height: 1.2;
}
@media screen and (max-width: 48em) {
  .pager .pager_item {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }
}
.pager .prev, .pager .next {
  position: relative;
  color: #e56783;
}
.pager .prev a, .pager .next a {
  height: 100%;
}
.pager .prev a::after, .pager .next a::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 16px;
  height: 16px;
  border-top: 2px solid #e56783;
  border-right: 2px solid #e56783;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.pager .prev a:hover::after, .pager .next a:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.pager .prev a::after {
  -webkit-transform: translate(-30%, -50%) rotate(-135deg);
      -ms-transform: translate(-30%, -50%) rotate(-135deg);
          transform: translate(-30%, -50%) rotate(-135deg);
}
.pager .next a::after {
  -webkit-transform: translate(-70%, -50%) rotate(45deg);
      -ms-transform: translate(-70%, -50%) rotate(45deg);
          transform: translate(-70%, -50%) rotate(45deg);
}
.pager a, .pager span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #e56783;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pager a {
  color: #e56783;
}
.pager a:hover, .pager .current {
  opacity: 1;
  background: #e56783;
  color: #fff;
}
.pager .current {
  cursor: default;
  pointer-events: none;
}

/* detail */
.pager.big {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 610px;
  margin: 100px auto;
}
@media screen and (max-width: 48em) {
  .pager.big {
    width: calc( 100% - 40px );
  }
}
.pager.big .pager_item {
  width: calc( ( 100% - 5px * 2 ) / 3 );
  margin: 0;
}
.pager.big a {
  background: #e56783;
  color: #fff;
}
.pager.big a:hover {
  background: #fff;
  color: #e56783;
}
.pager.big .to_prev a, .pager.big .to_next a {
  position: relative;
}
.pager.big .to_prev a::after, .pager.big .to_next a::after {
  position: absolute;
  top: 50%;
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.pager.big .to_prev a:hover:after, .pager.big .to_next a:hover:after {
  border-top-color: #e56783;
  border-right-color: #e56783;
}
.pager.big .to_prev a::after {
  left: 20px;
  -webkit-transform: translateY(-50%) rotate(-135deg);
      -ms-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}
@media screen and (max-width: 48em) {
  .pager.big .to_prev a::after {
    content: none;
  }
}
.pager.big .to_next a::after {
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 48em) {
  .pager.big .to_next a::after {
    content: none;
  }
}

/* title
------------------------------------------------- */
/* btn
------------------------------------------------- */
.btn {
  display: inline-block;
  text-align: center;
}
.btn a {
  display: inline-block;
  min-width: 280px;
  padding: 14px 40px;
  border: 1px #e56783 solid;
  background-color: #fff;
  color: #e56783;
}
@media screen and (max-width: 23.4375em) {
  .btn a {
    min-width: auto;
  }
}

.btn.btn_01 a {
  border: none;
  background-color: #e56783;
  color: #fff;
}
.btn.btn_01 .icon {
  display: inline-block;
  margin-right: 0.5em;
}
.btn.btn_01 .icon img {
  vertical-align: middle;
}
.btn.btn_01 .credit, .btn.btn_01 .mail, .btn.btn_01 .dw, .btn.btn_01 .cart {
  width: 24px;
}

.lower_btn {
  width: 100%;
  max-width: calc(756px + 20px * 2);
  margin: 0 auto 125px;
  padding: 0 20px;
}
.lower_btn .flex_box .box {
  width: 49%;
  height: 114px;
}
@media screen and (max-width: 48em) {
  .lower_btn .flex_box {
    display: block;
  }
  .lower_btn .flex_box .box {
    width: 100%;
    margin: 0 auto 16px;
  }
}

.btn_02 {
  display: inline-block;
  position: relative;
  width: 100%;
  min-width: 280px;
  height: 114px;
  background: #ee9cae url(../img/common/icon_ribbon.png) no-repeat 40px center;
  background-size: 110px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 48em) {
  .btn_02 {
    width: 100%;
    min-width: auto;
  }
}
.btn_02::after {
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  width: 15px;
  height: 12px;
  margin: auto;
  background: url(../img/common/icon_vector.png) no-repeat center;
  background-size: cover;
  display: block;
  position: absolute;
  content: "";
}
.btn_02 p {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.btn_03_area.col_2 .box {
  width: 49.5%;
  min-width: 280px;
}
@media screen and (max-width: 48em) {
  .btn_03_area.col_2 .box {
    width: 100%;
  }
}
.btn_03_area.col_2 .box:nth-of-type(1) .btn_03 {
  background-color: #e56783;
}
.btn_03_area.col_2 .box:nth-of-type(2) .btn_03 {
  background-color: #cb657b;
}

.btn_03 {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 108px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 48em) {
  .btn_03 {
    width: 100%;
  }
}
.btn_03::after {
  right: 16px;
  bottom: 12px;
  width: 28px;
  height: 26px;
  background: url(../img/common/icon_dw.png) no-repeat center;
  background-size: cover;
  display: block;
  position: absolute;
  content: "";
}
.btn_03 p {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.btn_04 a {
  display: inline-block;
  min-width: 280px;
  padding: 14px 40px;
  position: relative;
  background-color: #e56783;
  color: #fff;
}
@media screen and (max-width: 23.4375em) {
  .btn_04 a {
    min-width: auto;
  }
}
.btn_04 a::after {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  content: "";
  width: 15px;
  height: 5px;
  background: url(../img/common/icon_arrow.svg) no-repeat center;
  background-size: contain;
}

p {
  letter-spacing: 0.02em;
}

.bold {
  font-weight: 700 !important;
}

.under_line {
  text-decoration: underline !important;
}

.fs14 {
  font-size: 1.4rem;
}

a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.color_01 {
  color: #e56783 !important;
}

.color_02 {
  color: #fff !important;
}

.color_03 {
  color: #cb657b !important;
}

.color_04 {
  color: #e98097 !important;
}

.color_05 {
  color: #ae4c61 !important;
}

.bg_color_01 {
  padding: 40px;
  background-color: #fff !important;
}
@media screen and (max-width: 48em) {
  .bg_color_01 {
    padding: 20px;
  }
}

.bg_color_02 {
  background-color: #e56783 !important;
}

.bg_color_03 {
  background-color: #cb657b !important;
}

.bg_color_04 {
  background-color: #e98097 !important;
}

.bg_color_05 {
  background-color: rgba(203, 101, 123, 0.45) !important;
}

.bg_color_06 {
  padding: 40px;
  background-color: #fef4f6 !important;
}
@media screen and (max-width: 48em) {
  .bg_color_06 {
    padding: 20px;
  }
}

.bg_color_07 {
  background-color: #e98097 !important;
}

.bg_color_08 {
  background-color: #ae4c61 !important;
}

.bg_color_09 {
  background-color: #ffe1e7 !important;
}

.bg_color_10 {
  background-color: #f5f5f5 !important;
}

.bg_img_01 {
  background: url(../img/common/img_bg_ribbon.png) no-repeat right 20px bottom 20px/205px;
}

.box_gray {
  padding: 24px 32px;
  background-color: #f5f5f5;
}
.box_gray .mttl {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 48em) {
  .box_gray {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.fukidasi_01 {
  position: relative;
  padding: 0 1.2em;
  display: inline-block;
}
.fukidasi_01::before, .fukidasi_01::after {
  position: absolute;
  width: 3px;
  height: 100%;
  background: #fff;
  content: "";
  top: 0;
  display: inline-block;
  font-size: 1.2em;
}
.fukidasi_01::before {
  -webkit-transform: rotate(-20deg);
      -ms-transform: rotate(-20deg);
          transform: rotate(-20deg);
  left: 0.3em;
}
.fukidasi_01::after {
  -webkit-transform: rotate(20deg);
      -ms-transform: rotate(20deg);
          transform: rotate(20deg);
  right: 0.3em;
}

.flex_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex_box.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 48em) {
  .flex_box.reverse {
    display: block;
  }
}

.flex_box.wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex_box.s_around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 48em) {
  .flex_box.s_around {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.col_2 .box {
  width: 50%;
}

.col_3 .box {
  width: 33.3333%;
}

/* 下層ページ共通
------------------------------------------------- */
main.page {
  /* ---- 数字 ---- */
}
main.page .title_01 {
  margin-bottom: 30px;
  color: #e56783;
  font-family: "ten-mincho-text", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.06em;
}
@-moz-document url-prefix() {
  main.page .title_01 {
    background-color: currentColor;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
main.page .title_01.small {
  font-size: 2rem;
  display: block;
}
main.page .title_01 small {
  font-size: 2rem;
  letter-spacing: 0.05em;
  display: block;
}
@media screen and (max-width: 48em) {
  main.page .title_01 {
    font-size: 2.4rem;
  }
  main.page .title_01.small {
    font-size: 1.5rem;
  }
  main.page .title_01 small {
    font-size: 2rem;
    display: block;
  }
}
main.page .title_obi {
  position: relative;
  z-index: 0;
  width: 75%;
  margin-bottom: 36px;
  padding: 24px 10px 24px 76px;
  color: #fff;
  font-family: "ten-mincho-text", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 48em) {
  main.page .title_obi {
    width: 100%;
    padding: 24px 20px;
  }
}
main.page .short .title_obi {
  width: 25%;
  min-width: 260px;
}
@media screen and (max-width: 48em) {
  main.page .short .title_obi {
    width: 100%;
    min-width: auto;
  }
}
main.page .obi_01, main.page .obi_02, main.page .obi_03, main.page .obi_04 {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 48em) {
  main.page .obi_01, main.page .obi_02, main.page .obi_03, main.page .obi_04 {
    margin-right: 20px;
  }
}
main.page .obi_01::before, main.page .obi_02::before, main.page .obi_03::before, main.page .obi_04::before {
  display: block;
  position: absolute;
  top: 0;
  z-index: -1;
  content: "";
  width: 50%;
  height: 100%;
  background-color: #e98097;
}
@media screen and (max-width: 48em) {
  main.page .obi_01::before, main.page .obi_02::before, main.page .obi_03::before, main.page .obi_04::before {
    width: 100%;
  }
}
main.page .obi_01.short::before, main.page .obi_02.short::before, main.page .obi_03.short::before, main.page .obi_04.short::before {
  width: 25%;
}
main.page .obi_01::before {
  background-color: #e98097;
}
main.page .obi_01 .title_obi {
  background-color: #e98097;
}
@-moz-document url-prefix() {
  main.page .obi_01 .title_obi {
    position: relative;
  }
  main.page .obi_01 .title_obi::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    z-index: -1;
    top: 0;
    bottom: 0;
  }
  main.page .obi_01 .title_obi > span {
    position: relative;
    z-index: 1;
    background-color: currentColor;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  main.page .obi_01 .title_obi::before {
    background-color: #e98097;
  }
}
main.page .obi_02::before {
  background-color: #e56783;
}
main.page .obi_02 .title_obi {
  background-color: #e56783;
}
@-moz-document url-prefix() {
  main.page .obi_02 .title_obi {
    position: relative;
  }
  main.page .obi_02 .title_obi::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    z-index: -1;
    top: 0;
    bottom: 0;
  }
  main.page .obi_02 .title_obi > span {
    position: relative;
    z-index: 1;
    background-color: currentColor;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  main.page .obi_02 .title_obi::before {
    background-color: #e56783;
  }
}
main.page .obi_03::before {
  background-color: #cb657b;
}
main.page .obi_03 .title_obi {
  background-color: #cb657b;
}
@-moz-document url-prefix() {
  main.page .obi_03 .title_obi {
    position: relative;
  }
  main.page .obi_03 .title_obi::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    z-index: -1;
    top: 0;
    bottom: 0;
  }
  main.page .obi_03 .title_obi > span {
    position: relative;
    z-index: 1;
    background-color: currentColor;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  main.page .obi_03 .title_obi::before {
    background-color: #cb657b;
  }
}
main.page .obi_04::before {
  background-color: #ae4c61;
}
main.page .obi_04 .title_obi {
  background-color: #ae4c61;
}
@-moz-document url-prefix() {
  main.page .obi_04 .title_obi {
    position: relative;
  }
  main.page .obi_04 .title_obi::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    z-index: -1;
    top: 0;
    bottom: 0;
  }
  main.page .obi_04 .title_obi > span {
    position: relative;
    z-index: 1;
    background-color: currentColor;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  main.page .obi_04 .title_obi::before {
    background-color: #ae4c61;
  }
}
main.page .obi_contents {
  position: relative;
  z-index: 2;
  padding: 50px 40px 50px 0;
  color: #fff;
}
main.page .obi_contents:before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  content: "";
  width: 200%;
  height: 100%;
}
main.page .obi_contents.bg_main:before {
  background: #e56783;
}
main.page .obi_contents.bg_sub:before {
  background: #cb657b;
}
main.page .obi_contents .title_obi {
  width: 100%;
  padding: 0;
  border-bottom: 1px solid #fff;
}
main.page .bg_color_01.negative.right {
  margin-bottom: 0;
  padding: 156px 0 0;
}
main.page .bg_color_01.negative.right .title_obi {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 48em) {
  main.page .bg_color_01.negative.right .title_obi {
    width: calc(100% - 20px);
    margin: 0 0 0 20px;
    padding: 24px 40px 24px 20px;
    text-align: right;
  }
}
main.page .title_02 {
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px #e56783 dashed;
  color: #e56783;
  font-family: "ten-mincho-text", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.5;
}
@-moz-document url-prefix() {
  main.page .title_02 {
    background-color: currentColor;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media screen and (max-width: 48em) {
  main.page .title_02 {
    font-size: 2.2rem;
  }
}
main.page .title_03 {
  margin-bottom: 16px;
  color: #e56783;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
main.page .title_04 {
  margin-bottom: 16px;
  color: #e56783;
  font-family: "ten-mincho-text", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@-moz-document url-prefix() {
  main.page .title_04 {
    background-color: currentColor;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media screen and (max-width: 48em) {
  main.page .title_04 {
    font-size: 2.4rem;
  }
}
main.page .title_05 {
  margin-bottom: 10px;
  color: #e56783;
  letter-spacing: 0.06em;
  font-size: 2rem;
  line-height: 1.5;
}
main.page .title_06 {
  font-weight: 700;
  font-size: 2.4rem;
  color: #e56783;
  line-height: 1.5;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #cecece;
}
main.page .title_07 {
  font-size: 2rem;
  font-family: "ten-mincho-text", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #e56783;
  letter-spacing: 0.1em;
  padding-left: 2em;
  position: relative;
  margin-bottom: 6px;
}
@-moz-document url-prefix() {
  main.page .title_07 {
    background-color: currentColor;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
main.page .title_07::before {
  background: #e56783;
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 1.7em;
  height: 1px;
}
main.page .title_08 {
  margin-bottom: 8px;
  padding-left: 8px;
  border-left: 5px #e56783 solid;
  color: #e56783;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
main.page .icon_book {
  padding-left: 1.4em;
  background: url(../img/common/icon_book.png) no-repeat left top 0.25em;
  background-size: 24px;
}
main.page .caption {
  margin-bottom: 12px;
  color: #e56783;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
main.page .voice_list .profile {
  font-weight: 700;
  background: url(../img/common/icon_bubble.png) no-repeat left top 0.25em/44px;
  padding: 5px 0 0 54px;
}
main.page .voice_list .title {
  color: #e56783;
  font-size: 2.2rem;
  margin: 0.3em 0;
}
main.page .check_list_01 > li {
  padding-left: 2em;
  background: url(../img/common/icon_checkbox.png) no-repeat left top 0.25em/25px;
  overflow: hidden;
  letter-spacing: 0.02em;
}
main.page .check_list_01 > li:not(:last-child) {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px dashed #ffe1e7;
}
main.page .check_list_01 > li figure {
  float: right;
  margin-left: 60px;
}
main.page .check_list_01 > li .title {
  color: #e56783;
  font-size: 2rem;
  letter-spacing: 0.06em;
}
main.page .check_list_01 > li .bold {
  margin-bottom: 0.3em;
}
@media screen and (max-width: 48em) {
  main.page .check_list_01 > li {
    padding: 0;
    background: none;
  }
  main.page .check_list_01 > li figure {
    float: none;
    margin: 0 auto 20px;
  }
  main.page .check_list_01 > li .title {
    padding-left: 1.2em;
    margin-bottom: 10px;
    background: url(../img/common/icon_checkbox.png) no-repeat left top 0.45em/16px;
  }
}
main.page .card_list_01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
main.page .card_list_01 .card_list_01_child {
  max-width: 303px;
  margin: 16px 28px 0 0;
  width: 100%;
  border-radius: 10px;
  background: #e56783;
}
main.page .card_list_01 .card_list_01_child.long_card {
  max-width: 463px;
}
main.page .card_list_01 .card_list_01_child a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
main.page .card_list_01 .card_list_01_child a:hover {
  opacity: 0.8;
  background: none;
}
main.page .card_list_01 .card_list_01_child a .card_name {
  min-height: 77px;
  padding: 5px;
  border: #e56783 3px solid;
  border-radius: 10px 0 0 10px;
  width: calc(100% - 70px);
  font-size: 1.8rem;
  color: #e56783;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main.page .card_list_01 .card_list_01_child a .card_icon {
  padding: 5px 18px 5px 15px;
  width: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main.page .card_list_01 .card_list_01_child a .card_icon.small_icon {
  padding: 5px 23px 5px 20px;
}
@media screen and (max-width: 48em) {
  main.page .card_list_01 {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  main.page .card_list_01 .card_list_01_child {
    margin: 10px;
  }
}
main.page .card_list_01.color_sub .card_list_01_child {
  background: #cb657b;
}
main.page .card_list_01.color_sub .card_list_01_child .card_name {
  border: #cb657b 3px solid;
  color: #cb657b;
}
main.page .qa_list .qa {
  position: relative;
  counter-increment: decimal_06;
  padding-left: 80px;
  margin-bottom: 40px;
}
main.page .qa_list .qa .que {
  font-weight: 700;
  font-size: 1.8rem;
  color: #e56783;
  margin-bottom: 0.3em;
}
main.page .qa_list .qa::before {
  color: #e56783;
  font-size: 1.65em;
  line-height: 1;
  font-family: "ten-mincho-text", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  position: absolute;
  left: 0;
  top: 0;
  content: "Q" counter(decimal_06);
}
@-moz-document url-prefix() {
  main.page .qa_list .qa::before {
    background-color: currentColor;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
main.page .card_list_02 {
  margin: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
main.page .card_list_02 .card_list_02_child {
  position: relative;
  background: #fff;
  margin: 15px;
  width: calc(100% / 3 - 31px);
}
main.page .card_list_02 .card_list_02_child .card_list_02_text {
  padding: 24px 16px calc(30px + 55px);
  min-height: 320px;
}
main.page .card_list_02 .card_list_02_child .card_list_02_title {
  font-weight: 500;
  color: #e56783;
  font-size: 2.2rem;
  line-height: 1.55;
  margin-bottom: 10px;
}
main.page .card_list_02 .card_list_02_child .btn {
  left: 0;
  bottom: 0;
  width: 100%;
  position: absolute;
  margin-top: auto;
  display: block;
}
main.page .card_list_02 .card_list_02_child .btn a {
  min-width: 100%;
  display: block;
}
@media screen and (max-width: 48em) {
  main.page .card_list_02 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  main.page .card_list_02 .card_list_02_child {
    width: 100%;
    max-width: 325px;
    min-width: 280px;
  }
}
main.page .border_pink_dot {
  border-bottom: 1px dashed #e98097;
}
main.page .border_box_01 {
  border: dotted #e56783 3px;
  border-radius: 8px;
}
main.page .border_box_02 {
  overflow: hidden;
  border: 2px #e56783 solid;
  border-radius: 15px;
}
main.page .border_box_02 .border_box_title {
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 15px;
  text-align: center;
}
main.page .border_box_02 .border_box_text {
  padding: 20px 40px;
  background: #fff;
  letter-spacing: 0.1em;
}
main.page .border_box_02 .border_box_text li {
  display: inline;
  margin: 0 0.8em 0 0;
}
main.page .border_box_02.bg_color_04 {
  border-color: #e98097;
}
main.page .border_box_02.bg_color_03 {
  border-color: #cb657b;
}
main.page .border_box_02.bg_color_08 {
  border-color: #ae4c61;
}
@media screen and (max-width: 48em) {
  main.page .border_box_02 .border_box_text {
    padding: 20px;
  }
  main.page .border_box_02 .border_box_text li {
    display: block;
    margin-left: 1em;
  }
}
main.page .border_box_03 {
  padding: 15px 20px 45px;
  border: 1px solid #e56783;
}
main.page .border_box_03 .title_05 {
  display: inline-block;
  background: #e56783;
  margin-left: -30px;
  margin-bottom: 30px;
  padding: 15px 60px;
  color: #fff;
}
main.page .border_box_03 ul {
  text-align: left;
  display: inline-block;
  margin: 0 auto 30px;
}
main.page .border_box_03 figure {
  margin: 0 auto;
}
@media screen and (max-width: 48em) {
  main.page .border_box_03 .title_05 {
    padding: 15px;
  }
}
main.page .border_box_04 {
  letter-spacing: 0.1em;
  padding: 20px 50px;
  border: 2px #e56783 solid;
}
@media screen and (max-width: 48em) {
  main.page .border_box_04 {
    padding: 20px;
  }
}
main.page .bold_text {
  font-size: 1em;
  font-weight: 700;
  color: #e56783;
}
main.page .dl_list_01 {
  padding: 20px;
  background: #fef4f6;
}
main.page .dl_list_01 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
main.page .dl_list_01 > div dt {
  white-space: nowrap;
  font-weight: 700;
}
main.page .dl_list_01 > div dt::after {
  content: "：";
}
@media screen and (max-width: 48em) {
  main.page .dl_list_01 {
    margin: 0 -20px;
  }
}
main.page .dl_list_02 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  letter-spacing: 0.1em;
  padding: 30px 0;
  border-bottom: 1px solid #cecece;
}
main.page .dl_list_02 > div dt {
  width: 45%;
  font-weight: 700;
  padding-right: 1em;
}
main.page .dl_list_02 > div dd {
  width: 50%;
}
main.page .dl_list_02 > div dd .excar {
  max-width: 220px;
}
@media screen and (max-width: 48em) {
  main.page .dl_list_02 > div {
    display: block;
  }
  main.page .dl_list_02 > div dt {
    width: 100%;
    margin-bottom: 0.5em;
  }
  main.page .dl_list_02 > div dd {
    width: 100%;
  }
}
main.page .text_list .text_list_child:not(:last-child) {
  margin-bottom: 1em;
}
main.page .section_space {
  padding-top: 130px;
  padding-bottom: 150px;
}
main.page .pt_secstart {
  padding-top: 130px;
}
@media screen and (max-width: 48em) {
  main.page .pt_secstart {
    padding-top: 60px;
  }
}
main.page .mb_secend {
  margin-bottom: 150px !important;
}
@media screen and (max-width: 48em) {
  main.page .mb_secend {
    margin-bottom: 70px !important;
  }
}
main.page .mb_secend02 {
  margin-bottom: 130px !important;
}
@media screen and (max-width: 48em) {
  main.page .mb_secend02 {
    margin-bottom: 60px !important;
  }
}
main.page table {
  width: 100%;
  border: 1px #c2c2c2 solid;
  background-color: #fff;
}
main.page table th {
  height: 36px;
  padding: 4px 10px;
  border-right: 1px #c2c2c2 solid;
  border-bottom: 1px #c2c2c2 solid;
  background-color: #ffe1e7;
  color: #e56783;
}
main.page table th:last-child {
  border-right: none;
}
main.page table td {
  height: 36px;
  padding: 4px 10px;
  border-right: 1px #c2c2c2 solid;
  border-bottom: 1px #c2c2c2 solid;
  text-align: left;
}
main.page table td:last-child {
  border-right: none;
}
main.page table tbody > tr:last-child th {
  border-bottom: none;
}
main.page .table_wrapper table.base th {
  height: 64px;
  padding: 12px 16px;
  border-right: 1px #c2c2c2 dashed;
  text-align: left;
}
main.page .table_wrapper table.base thead > tr > th {
  border-bottom: 1px #c2c2c2 dashed;
}
main.page .table_wrapper table.base td {
  height: 64px;
  padding: 12px 16px;
}
main.page .table_wrapper table.base td:not(:last-child) {
  border-right: 1px #c2c2c2 dashed;
}
main.page .table_wrapper table.table_a th {
  min-width: 230px;
  white-space: nowrap;
  border-right: 1px #c2c2c2 solid;
}
main.page .table_wrapper table.table_a td {
  background-color: #fef4f6;
}
@media screen and (max-width: 48em) {
  main.page .table_wrapper table.table_a th, main.page .table_wrapper table.table_a td {
    display: block;
    min-width: auto;
    height: auto;
    border-right: none;
  }
  main.page .table_wrapper table.table_a tbody > tr:last-child th {
    border-bottom: 1px #c2c2c2 solid;
  }
  main.page .table_wrapper table.table_a tbody > tr:last-child td {
    border-bottom: none;
  }
}
main.page .table_wrapper table.table_b th {
  border-right: 1px #c2c2c2 solid;
  text-align: center;
}
main.page .table_wrapper table.table_b th:nth-of-type(odd) {
  background-color: #fef4f6;
}
main.page .table_wrapper table.table_b td {
  border-right: 1px #c2c2c2 solid;
  border-bottom: 1px #c2c2c2 dashed;
  background-color: #ffe1e7;
}
main.page .table_wrapper table.table_b td:nth-of-type(odd) {
  background-color: #fef4f6;
}
main.page .table_wrapper table.table_b tbody > tr:last-child td {
  border-bottom: none;
}
main.page .space_05, main.page .space_1, main.page .space_2, main.page .space_3, main.page .space_4, main.page .space_5, main.page .space_line, main.page .space_line_02, main.page .space_line_03 {
  margin: 0;
  border-color: transparent;
}
main.page .space_05 {
  margin-bottom: 0.5em;
}
main.page .space_1 {
  margin-bottom: 1em;
}
main.page .space_2 {
  margin-bottom: 2em;
}
main.page .space_3 {
  margin-bottom: 3em;
}
main.page .space_4 {
  margin-bottom: 4em;
}
main.page .space_5 {
  margin-bottom: 5em;
}
main.page .space_line {
  margin-top: 1em;
  margin-bottom: 1em;
  border-bottom: 1px #c2c2c2 solid;
}
main.page .space_line_02 {
  margin-top: 1em;
  margin-bottom: 1em;
  border-bottom: 1px #d4d4d4 dashed;
}
main.page .space_line_03 {
  margin-top: 1em;
  margin-bottom: 1em;
  border-bottom: 1px #707070 dashed;
}

body.facilities .area .btn_click, body.super .area .btn_click, body.patient .area .btn_click, body.summary .area .btn_click {
  position: relative;
  cursor: pointer;
  pointer-events: all;
}
body.facilities .area .btn_click::after, body.super .area .btn_click::after, body.patient .area .btn_click::after, body.summary .area .btn_click::after {
  position: absolute;
  top: 8px;
  left: 25px;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  margin: auto;
  -webkit-animation: down 1.5s infinite;
          animation: down 1.5s infinite;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #e98097;
  border-right: 1px solid #e98097;
}
body.facilities .area .btn_click.open::after, body.super .area .btn_click.open::after, body.patient .area .btn_click.open::after, body.summary .area .btn_click.open::after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-animation: down 1.5s infinite;
          animation: down 1.5s infinite;
}
body.facilities .area .btn_click + .accordion, body.super .area .btn_click + .accordion, body.patient .area .btn_click + .accordion, body.summary .area .btn_click + .accordion {
  display: none;
}
body.facilities .area .btn_click.open + .accordion, body.super .area .btn_click.open + .accordion, body.patient .area .btn_click.open + .accordion, body.summary .area .btn_click.open + .accordion {
  display: block;
}

@-webkit-keyframes down {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes down {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* ページ内リンク
--------------------------------------------- */
.skip_contents {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 75%;
  margin: 0 auto;
}
@media screen and (max-width: 48em) {
  .skip_contents {
    display: block;
  }
}
.skip_contents.col_2 .skip_contents_item {
  width: 49%;
}
@media screen and (max-width: 48em) {
  .skip_contents.col_2 .skip_contents_item {
    width: 100%;
  }
}
.skip_contents.col_3 .skip_contents_item {
  width: 32%;
}
@media screen and (max-width: 48em) {
  .skip_contents.col_3 .skip_contents_item {
    width: 100%;
  }
}
.skip_contents.col_4 {
  width: 100%;
}
.skip_contents.col_4 .skip_contents_item {
  width: 24.5%;
}
@media screen and (max-width: 48em) {
  .skip_contents.col_4 .skip_contents_item {
    width: 100%;
  }
}

.skip_contents_item {
  text-align: center;
  margin-bottom: 15px;
}
.skip_contents_item:not(:last-child) {
  margin-right: 2%;
}
@media screen and (max-width: 23.4375em) {
  .skip_contents_item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.skip_contents_item a {
  display: block;
  position: relative;
  padding: 25px 5% 45px;
  border-radius: 6px;
  color: #fff;
  font-size: 1.8rem;
}
.skip_contents_item a:after {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  width: 20px;
  height: 9px;
  background: url(../img/common/icon_arrow.svg) no-repeat center bottom;
  background-size: contain;
}

/* lightbox
------------------------------------------------- */
.lum-lightbox {
  z-index: 999;
}
.lum-lightbox .lum-lightbox-inner .lum-lightbox-position-helper {
  display: block;
  padding: 0 40px;
}
.lum-lightbox .lum-lightbox-inner img {
  width: auto;
  height: auto;
  max-height: 80vh;
}
@media (max-width: 460px) {
  .lum-lightbox .lum-lightbox-inner img {
    max-width: 100%;
    max-height: 100%;
  }
}
.lum-lightbox .lum-lightbox-inner .lum-gallery-button:after {
  width: 24px;
  height: 24px;
}
@media (max-width: 460px) {
  .lum-lightbox .lum-lightbox-caption {
    position: relative;
  }
}

.reference .contents {
  padding: 60px;
  color: #fff;
}
@media screen and (max-width: 48em) {
  .reference .contents {
    padding: 60px 20px;
  }
}
.reference .contents .title_01 {
  color: #fff;
  font-size: 3rem;
}
.reference .contents a {
  color: #fff;
  text-decoration: underline;
}

/* home - トップページ
------------------------------------------------- */
body.home .goods .contents .upper .box_out.col_2:last-child a {
  margin-bottom: 0;
}
@media screen and (max-width: 48em) {
  body.home .goods .contents .upper .box_out.col_2:last-child a {
    margin-bottom: 8px;
  }
}

.mainvisual {
  height: 704px;
  background: url(../img/top/img_mv.png) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 48em) {
  .mainvisual {
    height: 452px;
    background: none;
  }
}
.mainvisual .contents {
  height: 100%;
  position: relative;
}
.mainvisual .contents .mainvisual_on {
  padding: 0 20px;
  position: absolute;
  top: 50px;
  left: 0;
}
@media screen and (max-width: 48em) {
  .mainvisual .contents .mainvisual_on {
    right: 0;
    text-align: center;
  }
}
.mainvisual .contents .mainvisual_on figure {
  width: 486px;
  margin-bottom: 24px;
}
@media screen and (max-width: 48em) {
  .mainvisual .contents .mainvisual_on figure {
    width: auto;
    margin-right: auto;
    margin-left: auto;
  }
  .mainvisual .contents .mainvisual_on figure img {
    max-width: 320px;
  }
}
.mainvisual .contents .mainvisual_on a {
  display: inline-block;
  padding: 12px;
  width: 320px;
  background-color: #e56783;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 48em) {
  .mainvisual .contents .mainvisual_on a {
    width: 100%;
    max-width: 280px;
  }
}

body.home .title_01 {
  font-family: "ten-mincho-text", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 4.3rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}
@-moz-document url-prefix() {
  body.home .title_01 {
    background-color: currentColor;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
body.home .title_01 span {
  display: block;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 48em) {
  body.home .title_01 {
    font-size: 3.8rem;
  }
}
body.home .title_02 {
  font-size: 2.2rem;
  line-height: 1.4;
}
body.home .title_03 {
  font-size: 2rem;
}
body.home .title_04 {
  font-size: 1.8rem;
}
body.home .activities {
  margin-bottom: 198px;
  position: relative;
}
@media screen and (max-width: 48em) {
  body.home .activities {
    margin-bottom: 132px;
  }
}
body.home .activities:before {
  display: block;
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  top: 0;
  background-color: #fff;
}
@media screen and (max-width: 48em) {
  body.home .activities:before {
    width: 100%;
  }
}
body.home .activities .contents {
  padding: 88px 20px 0;
  position: relative;
  z-index: 0;
}
body.home .activities .contents:before {
  display: block;
  position: absolute;
  content: "";
  width: 80%;
  height: 100%;
  top: 0;
  z-index: -1;
  background-color: #fff;
}
@media screen and (max-width: 48em) {
  body.home .activities .contents:before {
    content: none;
  }
}
body.home .activities .contents .title_01 {
  width: 80%;
  margin-bottom: 60px;
  position: relative;
}
body.home .activities .contents .title_01 .icon_mark {
  position: absolute;
  width: 30px;
  height: 24px;
  display: block;
  left: 350px;
  bottom: 0;
}
body.home .activities .contents .title_01 .icon_mark_activity {
  bottom: auto;
  top: 29px;
}
@media screen and (max-width: 48em) {
  body.home .activities .contents .title_01 .icon_mark_activity {
    top: auto;
    bottom: 0;
  }
}
@media screen and (max-width: 48em) {
  body.home .activities .contents .title_01 {
    width: 100%;
  }
  body.home .activities .contents .title_01 .icon_mark {
    left: auto;
    right: 0;
  }
}
body.home .activities .contents .top {
  width: 80%;
  margin-bottom: 32px;
}
@media screen and (max-width: 48em) {
  body.home .activities .contents .top {
    width: 100%;
  }
}
body.home .activities .contents .col_3 .box {
  width: 33%;
  margin-bottom: 4px;
  position: relative;
}
@media screen and (max-width: 57.5em) {
  body.home .activities .contents .col_3 .box {
    width: 49.5%;
  }
}
@media screen and (max-width: 48em) {
  body.home .activities .contents .col_3 .box {
    width: 100%;
    min-height: 210px;
  }
}
body.home .activities .contents .col_3 .box img {
  width: 100%;
  height: 100%;
  font-family: "object-fit: cover;";
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 210px;
}
body.home .activities .contents .col_3 .box .label {
  padding: 4px 12px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #e56783;
  color: #fff;
}
body.home .activities .contents .col_3 .box .ani_area {
  overflow: hidden;
  width: 100%;
  position: absolute;
  bottom: 0;
}
body.home .activities .contents .col_3 .box .ani_area .title_02 {
  padding: 0 20px 20px;
  color: #fff;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 48em) {
  body.home .activities .contents .col_3 .box .ani_area .title_02 {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 23.4375em) {
  body.home .activities .contents .col_3 .box .ani_area .title_02 {
    font-size: 2rem;
  }
}
body.home .activities .contents .col_3 .box .ani_area .description {
  height: 0;
  margin: 0;
  padding: 0 24px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: padding 0.5s ease;
  -o-transition: padding 0.5s ease;
  transition: padding 0.5s ease;
}
@media screen and (max-width: 48em) {
  body.home .activities .contents .col_3 .box .ani_area .description {
    height: 100%;
    padding: 16px 20px;
  }
}
@media screen and (max-width: 23.4375em) {
  body.home .activities .contents .col_3 .box .ani_area .description {
    padding: 8px 10px;
  }
}
body.home .activities .contents .col_3 .box a:hover {
  opacity: 1;
}
body.home .activities .contents .col_3 .box:hover {
  cursor: pointer;
}
body.home .activities .contents .col_3 .box:hover .ani_area .description {
  height: 100%;
  padding: 20px 24px;
  -webkit-transition: padding 0.5s ease;
  -o-transition: padding 0.5s ease;
  transition: padding 0.5s ease;
}
@media screen and (max-width: 48em) {
  body.home .activities .contents .col_3 .box:hover .ani_area .description {
    padding: 16px 20px;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
body.home .activities .contents .kentei {
  width: 100%;
  max-width: 784px;
  margin-left: auto;
  padding: 28px 20px;
  position: relative;
  top: 40px;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 48em) {
  body.home .activities .contents .kentei {
    max-width: auto;
    margin-left: 0;
    padding: 28px 0;
    top: auto;
    text-align: center;
  }
}
body.home .activities .contents .kentei .inner {
  display: inline-block;
  margin-right: 20px;
}
@media screen and (max-width: 48em) {
  body.home .activities .contents .kentei .inner {
    width: 100%;
    margin-right: 0;
  }
}
body.home .activities .contents .kentei .inner figure {
  display: inline-block;
  width: 72px;
  vertical-align: middle;
}
body.home .activities .contents .kentei .inner .text {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 48em) {
  body.home .activities .contents .kentei .inner .text {
    text-align: left;
    margin: 0;
  }
}
@media screen and (max-width: 23.4375em) {
  body.home .activities .contents .kentei .inner .text {
    width: 75%;
    margin: 0;
  }
}
body.home .activities .contents .kentei .inner .text span {
  display: block;
  color: #e56783;
  font-family: "ten-mincho-text", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2.2rem;
}
@-moz-document url-prefix() {
  body.home .activities .contents .kentei .inner .text span {
    background-color: currentColor;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media screen and (max-width: 23.4375em) {
  body.home .activities .contents .kentei .inner .text span {
    font-size: 2rem;
  }
}
body.home .activities .contents .kentei .btn {
  display: inline-block;
  vertical-align: middle;
}
body.home .activities .contents .kentei .btn a {
  display: block;
  padding: 16px;
  background-color: #e56783;
  color: #fff;
  text-align: center;
}
body.home .infotopic {
  margin-bottom: 178px;
}
@media screen and (max-width: 57.5em) {
  body.home .infotopic {
    display: block;
    margin-bottom: 76px;
  }
}
body.home .infotopic .box {
  width: 48.5%;
}
@media screen and (max-width: 57.5em) {
  body.home .infotopic .box {
    width: 100%;
  }
}
body.home .infotopic .title_01 {
  margin-bottom: 20px;
  position: relative;
  line-height: 1.3;
}
body.home .infotopic .title_01 .icon_mark {
  position: absolute;
  width: 30px;
  height: 24px;
  bottom: 0;
  right: 24px;
}
@media screen and (max-width: 57.5em) {
  body.home .infotopic .title_01 .icon_mark {
    right: 0;
  }
}
body.home .infotopic .infobox {
  margin-bottom: 4px;
  padding: 20px 24px;
  background-color: #fff;
}
body.home .infotopic .infobox .day {
  color: #c2c2c2;
  font-weight: 700;
}
body.home .infotopic .topicbox {
  margin-bottom: 4px;
  padding: 38.3px 24px;
  background-color: #fff;
}
body.home .infotopic .topicbox .volnum {
  color: #474747;
  font-size: 1.4rem;
}
body.home .infotopic .topicbox .heading {
  font-weight: 700;
}
@media screen and (max-width: 57.5em) {
  body.home .infotopic .info {
    margin-bottom: 56px;
  }
}
body.home .infotopic .infobox a, body.home .infotopic .topicbox a {
  display: block;
}
body.home .dona_suppo {
  position: relative;
  color: #fff;
  text-align: center;
  background-color: rgba(203, 101, 123, 0.45);
}
body.home .dona_suppo .contents {
  padding: 112px 20px 158px;
  position: relative;
}
@media screen and (max-width: 48em) {
  body.home .dona_suppo .contents {
    padding: 52px 20px 60px;
  }
}
body.home .dona_suppo .contents .title_01 {
  margin-bottom: 32px;
  line-height: 1.5;
}
@media screen and (max-width: 48em) {
  body.home .dona_suppo .contents .title_01 {
    line-height: 1.1;
  }
  body.home .dona_suppo .contents .title_01 span {
    margin-top: 16px;
  }
}
body.home .dona_suppo .contents .top {
  margin-bottom: 52px;
}
@media screen and (max-width: 48em) {
  body.home .dona_suppo .contents .top {
    text-align: left;
  }
}
body.home .dona_suppo .contents .area {
  margin-bottom: 24px;
}
@media screen and (max-width: 48em) {
  body.home .dona_suppo .contents .area {
    display: block;
  }
}
body.home .dona_suppo .contents .box {
  width: 49.5%;
  border-top: 2px #fff solid;
}
@media screen and (max-width: 48em) {
  body.home .dona_suppo .contents .box {
    width: 100%;
  }
}
body.home .dona_suppo .contents .box .title_03 {
  padding: 20px 14px 14px;
  font-family: "ten-mincho-text", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 500;
}
@-moz-document url-prefix() {
  body.home .dona_suppo .contents .box .title_03 {
    background-color: currentColor;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media screen and (max-width: 48em) {
  body.home .dona_suppo .contents .box .flex_box.col_2 {
    display: block;
  }
  body.home .dona_suppo .contents .box:nth-of-type(1) .flex_box.col_2 {
    margin-bottom: 56px;
  }
}
body.home .dona_suppo .contents .box .box_inner {
  display: block;
  width: 49.5%;
  min-height: 234px;
  position: relative;
  color: #fff;
  cursor: pointer;
}
body.home .dona_suppo .contents .box .box_inner:nth-of-type(1) {
  background-color: #e56783;
}
body.home .dona_suppo .contents .box .box_inner:nth-of-type(2) {
  background-color: #cb657b;
}
@media screen and (max-width: 48em) {
  body.home .dona_suppo .contents .box .box_inner {
    width: 100%;
    max-width: 345px;
    min-height: 152px;
    margin: 0 auto 4px;
  }
}
body.home .dona_suppo .contents .box .box_inner .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  padding: 4px;
  position: relative;
}
@media screen and (max-width: 48em) {
  body.home .dona_suppo .contents .box .box_inner .txt {
    top: auto;
    left: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    padding: 34px 65px 34px 20px;
    text-align: left;
  }
}
body.home .dona_suppo .contents .box .box_inner .icon_card {
  display: block;
  position: absolute;
  content: "";
  width: 46px;
  height: 30px;
  right: 32px;
  bottom: 24px;
}
@media screen and (max-width: 48em) {
  body.home .dona_suppo .contents .box .box_inner .icon_card {
    margin: auto;
    top: 0;
    right: 20px;
    bottom: 0;
  }
}
body.home .dona_suppo .contents .link {
  text-align: right;
}
@media screen and (max-width: 48em) {
  body.home .dona_suppo .contents .link {
    text-align: center;
  }
}
body.home .dona_suppo .contents .link a {
  color: #fff;
  text-decoration: underline;
}
body.home .goods .contents {
  padding: 140px 20px;
}
@media screen and (max-width: 48em) {
  body.home .goods .contents {
    padding: 68px 20px 37px;
  }
}
body.home .goods .contents .title_01 {
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 48em) {
  body.home .goods .contents .title_01 {
    line-height: 1.1;
  }
  body.home .goods .contents .title_01 span {
    margin-top: 20px;
  }
}
body.home .goods .contents .title_03 {
  font-family: "ten-mincho-text", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
@-moz-document url-prefix() {
  body.home .goods .contents .title_03 {
    background-color: currentColor;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
body.home .goods .contents .upper {
  margin-bottom: 20px;
  display: block;
}
body.home .goods .contents .upper .box_out {
  width: 34.5%;
  position: relative;
}
body.home .goods .contents .upper .box_out:nth-of-type(1) {
  background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 48em) {
  body.home .goods .contents .upper .box_out {
    width: 100%;
  }
}
body.home .goods .contents .upper .box_out .title_03 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0 84px 0 50px;
  position: relative;
}
@media screen and (max-width: 48em) {
  body.home .goods .contents .upper .box_out .title_03 {
    margin-bottom: 6px;
    padding: 26px 54px 26px 30px;
    top: auto;
    left: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
body.home .goods .contents .upper .box_out .title_03 figure {
  width: 30px;
  height: 24px;
  position: absolute;
  margin: auto;
  top: 0;
  right: 50px;
  bottom: 0;
}
@media screen and (max-width: 48em) {
  body.home .goods .contents .upper .box_out .title_03 figure {
    right: 24px;
  }
}
body.home .goods .contents .upper .box_out.col_2 {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
body.home .goods .contents .upper .box_out.col_2 .box_in {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 49.5%;
  margin-bottom: 6px;
  background-color: #fff;
}
@media screen and (max-width: 48em) {
  body.home .goods .contents .upper .box_out.col_2 .box_in {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
body.home .goods .contents .upper .box_out.col_2 .box_in figure {
  margin-right: 1em;
}
body.home .goods .contents .upper .box_out.col_2 .box_in figure img {
  width: 120px;
}
body.home .goods .contents .upper .box_out.col_2 .box_in:nth-of-type(3),
body.home .goods .contents .upper .box_out.col_2 .box_in:nth-of-type(4) {
  margin-bottom: 0;
}
@media screen and (max-width: 48em) {
  body.home .goods .contents .upper .box_out.col_2 .box_in:nth-of-type(3),
body.home .goods .contents .upper .box_out.col_2 .box_in:nth-of-type(4) {
    margin-bottom: 6px;
  }
}
body.home .goods .contents .upper .box_out.col_4 {
  width: 100%;
}
@media screen and (max-width: 57.5em) {
  body.home .goods .contents .upper .box_out.col_4 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 48em) {
  body.home .goods .contents .upper .box_out.col_4 {
    display: block;
  }
}
body.home .goods .contents .upper .box_out.col_4 .box_in {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  width: 100%;
  margin-right: 6px;
  margin-bottom: 6px;
  background-color: #fff;
}
body.home .goods .contents .upper .box_out.col_4 .box_in:last-child {
  margin-right: 0;
}
body.home .goods .contents .upper .box_out.col_4 .box_in figure {
  max-width: 120px;
  width: 35%;
  margin-right: 3%;
}
body.home .goods .contents .upper .box_out.col_4 .box_in p {
  width: 62%;
  font-size: 1.4rem;
}
@media screen and (max-width: 57.5em) {
  body.home .goods .contents .upper .box_out.col_4 .box_in {
    margin-right: 0;
    width: 49.5%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
@media screen and (max-width: 48em) {
  body.home .goods .contents .upper .box_out.col_4 .box_in {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
body.home .goods .contents .lower {
  background-color: #fff;
  margin-bottom: 8px;
}
body.home .goods .contents .lower a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 48em) {
  body.home .goods .contents .lower a {
    display: block;
  }
}
body.home .goods .contents .lower .box {
  width: 65%;
  padding: 0 50px;
}
@media screen and (max-width: 48em) {
  body.home .goods .contents .lower .box {
    width: 100%;
    padding: 40px 28px;
  }
}
body.home .goods .contents .lower .box .title_03 {
  margin-bottom: 28px;
}
body.home .goods .contents .lower figure {
  width: 35%;
}
body.home .goods .contents .lower figure.icon_mark {
  display: inline-block;
  margin-left: 50px;
  -webkit-transform: translateY(5px);
      -ms-transform: translateY(5px);
          transform: translateY(5px);
  width: 30px;
}
@media screen and (max-width: 48em) {
  body.home .goods .contents .lower figure {
    width: 100%;
  }
}

/* archive
--------------------------------------------- */
.archive_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.archive_item .categories {
  margin-right: 3%;
}
.archive_item:not(:last-child) {
  margin-bottom: 4rem;
}

.archive_title {
  color: #646464;
  font-size: 1.6rem;
  font-weight: 500;
}

/* post
--------------------------------------------- */
.post_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12.5rem;
  padding: 1.4rem 0 8rem 0;
  background: #fff;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 48em) {
  .post_area {
    display: block;
    padding: 5% 2% 10%;
  }
}

.post {
  width: 70%;
  margin: 5% 2% 0 5%;
}
@media screen and (max-width: 48em) {
  .post {
    width: 100%;
    margin: 0 0 80px 0;
  }
}

.post_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 48em) {
  .post_head {
    display: block;
  }
}

.post_title {
  margin-right: 1%;
  color: #e98097;
  font-size: 2rem;
  font-weight: 900;
}

.categories {
  font-size: 0;
}

.categories_item {
  display: inline-block;
  padding: 0 0.8rem;
  background: #e98097;
  color: #fff;
  font-size: 1.4rem;
}
.categories_item a {
  display: block;
  color: #fff;
}
.categories_item:not(:last-child) {
  margin-right: 0.8rem;
}

.entry_content h2 {
  margin-bottom: 3.6rem;
  padding-left: 8px;
  border-left: 8px solid;
  color: #e98097;
  font-size: 1.8rem;
}
.entry_content h3 {
  margin-bottom: 3.6rem;
  color: #e98097;
  font-size: 1.8rem;
}
.entry_content h4 {
  position: relative;
  margin-bottom: 3.6rem;
  padding-left: 1.2em;
  color: #646464;
  font-size: 1.5rem;
}
.entry_content h4:before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 1em;
  height: 1em;
  background: #646464;
}
.entry_content hr {
  margin-bottom: 3.6rem;
  border-top: 2px solid #e98097;
}
.entry_content ul {
  margin-bottom: 3.6rem;
  margin-left: 1.2em;
}
.entry_content ul li {
  list-style: disc;
}
.entry_content p {
  margin-bottom: 3rem;
  color: #646464;
}
.entry_content th, .entry_content td {
  border: 1px solid #c2c2c2;
  font-size: 1.4rem;
}
.entry_content th {
  background: #ffe1e7;
  color: #e98097;
}
.entry_content td {
  color: #646464;
}

.post_area.news .midashi,
.post_area.prnj .midashi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 48em) {
  .post_area.news .midashi,
.post_area.prnj .midashi {
    display: block;
  }
}
.post_area.news .midashi .categories_item,
.post_area.prnj .midashi .categories_item {
  margin: 0.8rem 0;
  white-space: nowrap;
}
.post_area.news time,
.post_area.prnj time {
  display: inline-block;
  margin-right: 0.8rem;
  color: #e98097;
  font-weight: 700;
}
.post_area.news .archive_title,
.post_area.prnj .archive_title {
  color: #e98097;
  font-weight: 700;
}

.post_area.facility .archive_title {
  color: #e98097;
  font-weight: 700;
}

.post_area.prnj .midashi {
  width: calc(100% - 70px);
  position: relative;
}
@media screen and (max-width: 48em) {
  .post_area.prnj .midashi {
    width: 100%;
  }
}
.post_area.prnj .pdf_btn {
  width: 66px;
  position: absolute;
  top: 0;
  right: -70px;
}
@media screen and (max-width: 48em) {
  .post_area.prnj .pdf_btn {
    margin: 1rem 0;
    position: relative;
    right: auto;
    left: 0;
  }
}
.post_area.prnj .pdf_btn a {
  display: block;
  background-color: transparent;
  color: #e56783;
  border: 1px #e56783 solid;
  font-size: 1.4rem;
  text-align: center;
}
.post_area.prnj .pdf_btn .icon.dw {
  display: inline-block;
  width: 16px;
  margin-right: 0.5rem;
}
.post_area.prnj .pdf_btn .icon.dw img {
  vertical-align: middle;
}

/* single
------------------------------------------------- */
body.single .news .midashi, body.single .prnj .midashi {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.6rem;
}
body.single .news .archive_title, body.single .prnj .archive_title {
  margin-right: 0.8rem;
  font-size: 2rem;
}
body.single .prnj .archive_title {
  margin-bottom: 2rem;
}
body.single .facility .midashi {
  margin-bottom: 3rem;
  margin-right: 0;
}
body.single .facility .categories_item {
  font-size: 2.2rem;
}

.entry-content {
  margin-bottom: 10rem;
}
.entry-content figure {
  width: auto;
  max-height: 450px;
  margin-bottom: 16px;
  text-align: center;
}
.entry-content h2 {
  margin-bottom: 2.8rem;
  padding: 0.8rem 1.2rem;
  border-left: 8px #e56783 solid;
  color: #e56783;
  font-size: 2rem;
}
.entry-content h3 {
  margin-bottom: 1.2rem;
  color: #e56783;
  font-size: 1.8rem;
}
.entry-content h4 {
  margin-bottom: 1.2rem;
  color: #616161;
  font-size: 1.8rem;
}
.entry-content h4:before {
  display: inline-block;
  content: "";
  width: 0.8em;
  height: 0.8em;
  background: #616161;
}
.entry-content p {
  margin-bottom: 1.5rem;
}
.entry-content hr {
  height: 2px;
  margin-bottom: 4rem;
  background-color: #e98097;
  border: none;
}
.entry-content ul {
  margin-bottom: 4rem;
}
.entry-content ul li {
  margin-left: 1em;
  list-style: initial;
}
.entry-content ol {
  margin-bottom: 4rem;
}
.entry-content ol li {
  margin-left: 1em;
  list-style: decimal;
}
.entry-content .alignright {
  display: block;
  margin: 0 0 0 auto;
}
.entry-content .alignleft {
  display: block;
  margin: 0 auto 0 0;
}
.entry-content .aligncenter {
  display: block;
  margin: 0 auto;
}
.entry-content a {
  color: #11c;
}
.entry-content a:hover {
  text-decoration: underline;
}
.entry-content img {
  width: auto;
  max-width: 100%;
  max-height: 450px;
}
.entry-content blockquote {
  position: relative;
  margin-top: 15rem 0 8rem;
  padding: 6rem 3rem 3rem;
  background: #eee;
}
@media screen and (max-width: 23.4375em) {
  .entry-content blockquote {
    padding: 6rem 2rem 2rem;
  }
}
.entry-content blockquote:before {
  position: absolute;
  top: 0.5rem;
  left: 2rem;
  content: "";
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-size: 4rem;
  font-weight: 900;
}
.entry-content blockquote cite {
  display: block;
  font-style: normal;
  text-align: right;
}
@media screen and (max-width: 48em) {
  .entry-content table {
    display: table;
  }
  .entry-content table tbody {
    display: table-row-group;
  }
  .entry-content table tr {
    display: table-row;
  }
}
.entry-content table th,
.entry-content table td {
  padding: 5px;
  border-left: 1px #e56783 solid;
}
.entry-content table th:first-child,
.entry-content table td:first-child {
  border-left: none;
}
@media screen and (max-width: 48em) {
  .entry-content table th,
.entry-content table td {
    display: table-cell;
    min-width: auto;
    border-bottom: none;
  }
}
.entry-content table th {
  color: #e98097;
}
.entry-content table thead tr th {
  background-color: #ffe1e7;
}
.entry-content table tbody tr th {
  background-color: #ffe1e7;
}

/* 認定ＮＰＯ法人制度による税制上の優遇措置について tax
------------------------------------------------- */
body.tax .top .contents .flex_box {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body.tax .top .contents .flex_box .box:nth-of-type(1) {
  max-width: 129px;
}
body.tax .contents.inner {
  max-width: calc(790px + 20px * 2);
  margin-bottom: 96px;
}
body.tax .contents.inner .p_link {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 0 -7px 12px;
}
body.tax .contents.inner .p_link .box {
  position: relative;
  width: 254px;
  margin-bottom: 16px;
  height: 136px;
  border-radius: 6px;
}
body.tax .contents.inner .p_link .box p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  padding-bottom: 8px;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0;
}
body.tax .contents.inner .p_link .box::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  margin: auto;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
body.tax .contents.inner .title_02 {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
body.tax #anchor_01, body.tax #anchor_02, body.tax #anchor_03 {
  margin-top: -116px;
  padding-top: 116px;
}
@media screen and (max-width: 48em) {
  body.tax #anchor_01, body.tax #anchor_02, body.tax #anchor_03 {
    margin-top: -78px;
    padding-top: 78px;
  }
}
body.tax #anchor_01 .flex_box, body.tax #anchor_02 .flex_box, body.tax #anchor_03 .flex_box {
  margin-bottom: 54px;
}
@media screen and (max-width: 48em) {
  body.tax #anchor_01 .flex_box, body.tax #anchor_02 .flex_box, body.tax #anchor_03 .flex_box {
    display: block;
  }
}
body.tax #anchor_01 .flex_box .box, body.tax #anchor_02 .flex_box .box, body.tax #anchor_03 .flex_box .box {
  width: 49.5%;
  margin-bottom: 16px;
  border: 3px #e98097 solid;
}
@media screen and (max-width: 48em) {
  body.tax #anchor_01 .flex_box .box, body.tax #anchor_02 .flex_box .box, body.tax #anchor_03 .flex_box .box {
    width: 100%;
  }
}
body.tax #anchor_01 .flex_box .box .box_caption, body.tax #anchor_02 .flex_box .box .box_caption, body.tax #anchor_03 .flex_box .box .box_caption {
  padding: 12px;
  background-color: #e98097;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
body.tax #anchor_01 .flex_box .box:nth-of-type(1) figure img, body.tax #anchor_02 .flex_box .box:nth-of-type(1) figure img, body.tax #anchor_03 .flex_box .box:nth-of-type(1) figure img {
  max-width: 338px;
}
body.tax #anchor_01 .flex_box .box:nth-of-type(2) figure img, body.tax #anchor_02 .flex_box .box:nth-of-type(2) figure img, body.tax #anchor_03 .flex_box .box:nth-of-type(2) figure img {
  max-width: 385px;
}
body.tax #anchor_01 .flex_box .box figure, body.tax #anchor_02 .flex_box .box figure, body.tax #anchor_03 .flex_box .box figure {
  padding: 16px;
  text-align: center;
}
@media screen and (max-width: 48em) {
  body.tax #anchor_01 .table_wrapper, body.tax #anchor_02 .table_wrapper, body.tax #anchor_03 .table_wrapper {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
body.tax #anchor_01 .table_wrapper .table_b, body.tax #anchor_02 .table_wrapper .table_b, body.tax #anchor_03 .table_wrapper .table_b {
  position: relative;
  border: none;
}
body.tax #anchor_01 .table_wrapper .table_b:after, body.tax #anchor_02 .table_wrapper .table_b:after, body.tax #anchor_03 .table_wrapper .table_b:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #c2c2c2;
}
body.tax #anchor_01 .table_wrapper .table_b th, body.tax #anchor_01 .table_wrapper .table_b td, body.tax #anchor_02 .table_wrapper .table_b th, body.tax #anchor_02 .table_wrapper .table_b td, body.tax #anchor_03 .table_wrapper .table_b th, body.tax #anchor_03 .table_wrapper .table_b td {
  width: 25%;
}
body.tax #anchor_01 .table_wrapper .table_b th:nth-of-type(1), body.tax #anchor_01 .table_wrapper .table_b td:nth-of-type(1), body.tax #anchor_02 .table_wrapper .table_b th:nth-of-type(1), body.tax #anchor_02 .table_wrapper .table_b td:nth-of-type(1), body.tax #anchor_03 .table_wrapper .table_b th:nth-of-type(1), body.tax #anchor_03 .table_wrapper .table_b td:nth-of-type(1) {
  width: 30.5%;
}
@media screen and (max-width: 48em) {
  body.tax #anchor_01 .table_wrapper .table_b th, body.tax #anchor_01 .table_wrapper .table_b td, body.tax #anchor_02 .table_wrapper .table_b th, body.tax #anchor_02 .table_wrapper .table_b td, body.tax #anchor_03 .table_wrapper .table_b th, body.tax #anchor_03 .table_wrapper .table_b td {
    white-space: nowrap;
  }
}
body.tax #anchor_01 .table_wrapper .table_b .nowrap, body.tax #anchor_02 .table_wrapper .table_b .nowrap, body.tax #anchor_03 .table_wrapper .table_b .nowrap {
  white-space: nowrap;
}
body.tax #anchor_01 .table_wrapper .table_b td span, body.tax #anchor_02 .table_wrapper .table_b td span, body.tax #anchor_03 .table_wrapper .table_b td span {
  display: block;
  margin-left: 1.8rem;
  text-indent: -1.8rem;
}
body.tax .space_line {
  margin: 2em 0;
  border: 1px #e98097 dashed;
}
body.tax #anchor_02 .obi_01:before {
  background-color: #e56783;
}
body.tax #anchor_02 .flex_box {
  margin-bottom: 0;
}
body.tax #anchor_02 .flex_box .box p:nth-of-type(2) {
  padding: 32px 5px;
  color: #e56783;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}
body.tax #anchor_03 .obi_01:before {
  background-color: #cb657b;
}

/* オフィシャルサポーター・パートナー概要  official
------------------------------------------------- */
body.official .standard {
  margin-top: 70px;
}
body.official .standard .details {
  margin-bottom: 80px;
  padding: 24px 125px 100px;
  max-width: 1040px;
}
@media screen and (max-width: 48em) {
  body.official .standard .details {
    padding: 24px 20px 60px;
  }
}
body.official .standard .title_03 {
  margin-bottom: 0;
  font-size: 1.6rem;
}
body.official .standard .p_indent, body.official .standard .ol_indent {
  margin-bottom: 20px;
  margin-left: 1em;
}
@media screen and (max-width: 48em) {
  body.official .standard .p_indent, body.official .standard .ol_indent {
    margin-left: 0;
  }
}

/* 個人サポーター概要  individual
------------------------------------------------- */
body.individual .please .lower {
  padding-top: 70px;
  padding-bottom: 0;
}
body.individual .skip_contents_item {
  max-width: 400px;
  margin: 0 auto;
  padding-bottom: 60px;
}
body.individual .btn_individual {
  min-width: 336px;
}
@media screen and (max-width: 48em) {
  body.individual .btn_individual {
    min-width: 0;
  }
}

/* ピンクリボン啓発グッズ  goods
------------------------------------------------- */
body.goods .goods_top .inner {
  margin-bottom: 100px;
  padding: 60px;
}
@media screen and (max-width: 48em) {
  body.goods .goods_top .inner {
    padding: 60px 20px;
  }
}
body.goods .goods_top .title_01 {
  font-size: 3.6rem;
}
@media screen and (max-width: 48em) {
  body.goods .goods_top .title_01 {
    font-size: 2.6rem;
  }
}
body.goods .goods_top .title_01 span {
  font-size: 3rem;
}
@media screen and (max-width: 48em) {
  body.goods .goods_top .title_01 span {
    font-size: 2rem;
    display: inline-block;
  }
}
body.goods .goods_park .title_obi {
  width: 80%;
  padding-top: 48px;
  padding-bottom: 48px;
}
@media screen and (max-width: 48em) {
  body.goods .goods_park .title_obi {
    width: 100%;
  }
}
body.goods .goods_park .contents.bg_color_01.negative {
  margin-bottom: 88px;
  padding-bottom: 64px;
}
body.goods .method .contents {
  max-width: calc(1040px + 20px * 2);
}
body.goods .method .contents .inner:nth-child(1) {
  padding: 40px 9.5vw;
}
@media screen and (max-width: 64em) {
  body.goods .method .contents .inner:nth-child(1) {
    padding: 40px;
  }
}
@media screen and (max-width: 48em) {
  body.goods .method .contents .inner:nth-child(1) {
    padding-right: 20px;
    padding-left: 20px;
  }
}
body.goods .method .contents .inner:nth-child(2) {
  padding: 62px 9.5vw 80px;
}
@media screen and (max-width: 64em) {
  body.goods .method .contents .inner:nth-child(2) {
    padding: 40px;
  }
}
@media screen and (max-width: 48em) {
  body.goods .method .contents .inner:nth-child(2) {
    padding-right: 20px;
    padding-left: 20px;
  }
}
body.goods .method .space_line {
  margin: 35px auto 300px;
}
body.goods .method .account {
  max-width: none;
  margin: 0 auto 40px;
}
body.goods #anchor_01 {
  margin-top: -140px;
  padding-top: 140px;
}
body.goods .goods_list .flex_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -8px;
}
body.goods .goods_list .flex_wrapper .item {
  position: relative;
  z-index: 2;
  width: 25%;
  min-width: 226px;
  margin-bottom: 48px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 48em) {
  body.goods .goods_list .flex_wrapper .item {
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  body.goods .goods_list .flex_wrapper .item {
    width: 100%;
  }
}
body.goods .goods_list .flex_wrapper .item .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 8px;
  height: 100%;
  background-color: #fff;
}
body.goods .goods_list .flex_wrapper .item .btn_details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
body.goods .goods_list .flex_wrapper .item .main_img {
  padding: 16px;
  text-align: center;
}
body.goods .goods_list .flex_wrapper .item .main_img img {
  width: auto;
  max-width: 100%;
}
body.goods .goods_list .flex_wrapper .item .name {
  padding: 0 16px;
  font-weight: 700;
}
body.goods .goods_list .flex_wrapper .item .price {
  padding: 0 16px 10px;
}
body.goods .goods_list .flex_wrapper .item .btn {
  display: block;
}
body.goods .goods_list .flex_wrapper .item .btn a {
  width: 100%;
  min-width: auto;
  padding: 16px;
}
body.goods .view {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 100;
}
body.goods .view .view_bg {
  width: 100%;
  height: 100vh;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
body.goods .view .view_content {
  overflow-y: scroll;
  display: block;
  width: 80%;
  max-width: 500px;
  max-height: 70vh;
  padding: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff8f8;
  border: 6px #e98097 solid;
  z-index: 1;
}
@media screen and (max-width: 48em) {
  body.goods .view .view_content {
    padding: 2.5%;
  }
}
body.goods .view .view_content .photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
body.goods .view .view_content .photo figure {
  margin-bottom: 32px;
}
body.goods .view .view_content .photo figure img {
  width: auto;
  max-width: 100%;
}
body.goods .view .view_inner .btn {
  display: block;
  margin: 2em 0;
}
body.goods .view .view_inner .btn a {
  display: block;
}
body.goods .view .view_inner .close {
  text-align: center;
}
body.goods .view .view_inner .close .view_close {
  background-color: #cb657b;
  padding: 0.5em 1em;
  border-radius: 24px;
  color: #fff;
  cursor: pointer;
}

/* ピンクリボン温泉ネットワーク spa
------------------------------------------------- */
body.spa .top .contents .flex_box .box:nth-of-type(1) {
  max-width: 129px;
}
body.spa .goods {
  margin-bottom: 150px;
}
body.spa .upper_box {
  margin-bottom: 4px;
}
@media screen and (max-width: 48em) {
  body.spa .upper_box {
    display: block;
  }
}
body.spa .upper_box .box:nth-of-type(1) {
  width: 70%;
  margin-right: 12px;
}
@media screen and (max-width: 48em) {
  body.spa .upper_box .box:nth-of-type(1) {
    width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
  }
}
body.spa .upper_box .box:nth-of-type(2) {
  width: auto;
  min-width: 280px;
}
@media screen and (max-width: 48em) {
  body.spa .upper_box .box:nth-of-type(2) {
    min-width: auto;
    text-align: center;
  }
}
body.spa .upper_box .box figure {
  display: inline-block;
  font-size: 1.4rem;
}
body.spa .upper_box .box img {
  max-width: 130px;
}
@media screen and (max-width: 48em) {
  body.spa .lower_box {
    display: block;
  }
}
body.spa .lower_box .box {
  width: 49.8%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 48em) {
  body.spa .lower_box .box {
    display: block;
    width: 100%;
    margin-bottom: 4px;
  }
}
body.spa .lower_box .box .box_inner {
  width: 70%;
}
@media screen and (max-width: 48em) {
  body.spa .lower_box .box .box_inner {
    width: 100%;
  }
}
body.spa .lower_box .box .box_inner span {
  display: block;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 48em) {
  body.spa .lower_box .box .box_inner span {
    margin-bottom: 12px;
  }
}
body.spa .lower_box .box figure {
  text-align: center;
}
body.spa .lower_box .box figure img {
  max-width: 103px;
}
body.spa .partner {
  margin-bottom: 70px;
  padding: 90px 0;
  color: #fff;
}
body.spa .partner .title_01 {
  padding-bottom: 12px;
  border-bottom: 1px rgba(255, 255, 255, 0.5) solid;
  color: #fff;
  text-align: left;
}
body.spa .partner .btn_03_area {
  margin-bottom: 12px;
}
body.spa .partner .bg_color_01 {
  color: #646464;
}
body.spa .partner .bg_color_01 .space_line {
  border-style: dashed;
}
body.spa .contact {
  margin-bottom: 98px;
}

/* 温泉施設紹介 facilities
日帰り温泉ネットワーク super
------------------------------------------------- */
body.facilities .area,
body.super .area {
  margin-bottom: 116px;
}
body.facilities .area .title_03,
body.super .area .title_03 {
  margin-bottom: 32px;
  padding-left: 50px;
  border-bottom: 1px #e98097 solid;
  color: #e98097;
}

/* 温泉施設紹介 facilities
------------------------------------------------- */
body.facilities .top .contents .flex_box a {
  text-decoration: underline;
}
body.facilities .top .contents .box:nth-of-type(1) {
  max-width: 129px;
}
body.facilities .area .accordion {
  margin-bottom: 64px;
}
body.facilities .area .logo {
  margin-bottom: 40px;
  text-align: center;
}
body.facilities .area .logo img {
  width: auto;
  max-width: 200px;
  max-height: 200px;
}
body.facilities .area .name {
  color: #e98097;
}
body.facilities .area .name a {
  color: #e98097;
  text-decoration: underline;
}
body.facilities .area .coment {
  margin-bottom: 16px;
}
body.facilities .area .facility {
  margin-bottom: 20px;
}
@media screen and (max-width: 48em) {
  body.facilities .area .facility {
    padding: 20px;
  }
}
body.facilities .area .guide {
  margin-bottom: 20px;
}
@media screen and (max-width: 48em) {
  body.facilities .area .guide {
    padding: 20px;
  }
}
body.facilities .area .guide .flex_box.col_2 .box {
  width: 49.5%;
}
@media screen and (max-width: 48em) {
  body.facilities .area .guide .flex_box.col_2 .box {
    width: 100%;
  }
}
body.facilities .area .guide .flex_box.col_3 .box {
  width: 33%;
}
@media screen and (max-width: 48em) {
  body.facilities .area .guide .flex_box.col_3 .box {
    width: 100%;
  }
}
@media screen and (max-width: 48em) {
  body.facilities .area .guide .flex_box {
    display: block;
  }
}
body.facilities .area .guide .flex_box .box {
  margin-bottom: 16px;
  padding: 32px 32px 12px;
  background-color: #FEF4F6;
}
@media screen and (max-width: 48em) {
  body.facilities .area .guide .flex_box .box {
    padding: 32px 20px 12px;
  }
}
body.facilities .area .guide .flex_box .box .ofi {
  margin-bottom: 16px;
  text-align: center;
}
body.facilities .area .guide .flex_box .box .ofi img {
  max-width: 254px;
  height: 190px;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}
body.facilities .area .guide .flex_box .box .caption {
  color: #646464;
  font-size: 1.5rem;
  text-align: left;
}
body.facilities .area .guide .flex_box .box .caption a {
  text-decoration: underline;
}
body.facilities .area .guide .flex_box .box .text, body.facilities .area .guide .flex_box .box dl {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 48em) {
  body.facilities .area .facility .table_wrapper {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 48em) {
  body.facilities .area .facility .table_wrapper .base {
    position: relative;
    min-width: 726px;
    border: none;
  }
  body.facilities .area .facility .table_wrapper .base:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #c2c2c2;
  }
}
body.facilities .area .facility .table_wrapper .base th {
  width: 90px;
}
body.facilities .area .facility .table_wrapper .base td {
  width: calc(100% - 90px);
}
@media screen and (max-width: 48em) {
  body.facilities .area .guide .table_wrapper {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 48em) {
  body.facilities .area .guide .table_wrapper .base {
    min-width: 726px;
    position: relative;
    border: none;
  }
  body.facilities .area .guide .table_wrapper .base:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #c2c2c2;
  }
}
body.facilities .area .guide .table_wrapper .base thead > tr th:nth-of-type(1) {
  width: 23%;
}
body.facilities .area .guide .table_wrapper .base thead > tr th:nth-of-type(2) {
  width: 34%;
}
body.facilities .area .guide .table_wrapper .base thead > tr th:nth-of-type(3) {
  width: 20%;
}
body.facilities .area .guide .table_wrapper .base thead > tr th:nth-of-type(4) {
  width: 23%;
}
body.facilities .area .guide .table_wrapper .base tr td:nth-of-type(3) {
  white-space: nowrap;
}

/* 全国の乳がん患者会 patient
------------------------------------------------- */
body.patient .area {
  margin-bottom: 116px;
}
body.patient .area .title_03 {
  margin-bottom: 32px;
  padding-left: 50px;
  border-bottom: 1px #e98097 solid;
  color: #e98097;
}
body.patient .top .contents .flex_box a {
  text-decoration: underline;
}
body.patient .top .contents .box:nth-of-type(1) {
  max-width: 129px;
}
body.patient .area .accordion {
  margin-bottom: 64px;
}
body.patient .area .logo {
  margin-bottom: 40px;
  text-align: center;
}
body.patient .area .logo img {
  width: auto;
  max-width: 200px;
  max-height: 200px;
}
body.patient .area .name {
  color: #e98097;
}
body.patient .area .name a {
  color: #e98097;
  text-decoration: underline;
}
body.patient .area .coment {
  margin-bottom: 16px;
}
body.patient .area .facility {
  margin-bottom: 20px;
}
@media screen and (max-width: 48em) {
  body.patient .area .facility {
    padding: 20px;
  }
}
body.patient .area .guide {
  margin-bottom: 20px;
}
@media screen and (max-width: 48em) {
  body.patient .area .guide {
    padding: 20px;
  }
}
body.patient .area .guide .flex_box.col_2 .box {
  width: 49.5%;
}
@media screen and (max-width: 48em) {
  body.patient .area .guide .flex_box.col_2 .box {
    width: 100%;
  }
}
body.patient .area .guide .flex_box.col_3 .box {
  width: 33%;
}
@media screen and (max-width: 48em) {
  body.patient .area .guide .flex_box.col_3 .box {
    width: 100%;
  }
}
@media screen and (max-width: 48em) {
  body.patient .area .guide .flex_box {
    display: block;
  }
}
body.patient .area .guide .flex_box .box {
  margin-bottom: 16px;
  padding: 32px 32px 12px;
  background-color: #FEF4F6;
}
@media screen and (max-width: 48em) {
  body.patient .area .guide .flex_box .box {
    padding: 32px 20px 12px;
  }
}
body.patient .area .guide .flex_box .box .ofi {
  margin-bottom: 16px;
  text-align: center;
}
body.patient .area .guide .flex_box .box .ofi img {
  max-width: 254px;
  height: 190px;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}
body.patient .area .guide .flex_box .box .caption {
  color: #646464;
  font-size: 1.5rem;
  text-align: left;
}
body.patient .area .guide .flex_box .box .caption a {
  text-decoration: underline;
}
body.patient .area .guide .flex_box .box .text, body.patient .area .guide .flex_box .box dl {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 48em) {
  body.patient .area .facility .table_wrapper {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 48em) {
  body.patient .area .facility .table_wrapper .base {
    position: relative;
    min-width: 726px;
    border: none;
  }
  body.patient .area .facility .table_wrapper .base:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #c2c2c2;
  }
}
body.patient .area .facility .table_wrapper .base th {
  width: 20%;
  white-space: nowrap;
}
@media screen and (max-width: 48em) {
  body.patient .area .guide .table_wrapper {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 48em) {
  body.patient .area .guide .table_wrapper .base {
    min-width: 726px;
    position: relative;
    border: none;
  }
  body.patient .area .guide .table_wrapper .base:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #c2c2c2;
  }
}
body.patient .area .guide .table_wrapper .base thead > tr th:nth-of-type(1) {
  width: 23%;
}
body.patient .area .guide .table_wrapper .base thead > tr th:nth-of-type(2) {
  width: 34%;
}
body.patient .area .guide .table_wrapper .base thead > tr th:nth-of-type(3) {
  width: 20%;
}
body.patient .area .guide .table_wrapper .base thead > tr th:nth-of-type(4) {
  width: 23%;
}
body.patient .area .guide .table_wrapper .base tr td:nth-of-type(3) {
  white-space: nowrap;
}

/* 日帰り温泉ネットワーク super
------------------------------------------------- */
body.super .top .contents .flex_box {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body.super .top .contents .flex_box .box:nth-of-type(1) {
  max-width: 237px;
}
body.super .top .contents .flex_box .box:nth-of-type(2) {
  margin-left: 40px;
}
body.super .area .table_wrapper {
  margin-bottom: 64px;
}
@media screen and (max-width: 48em) {
  body.super .area .table_wrapper {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 48em) {
  body.super .area .table_wrapper .base {
    min-width: 726px;
    position: relative;
    border: none;
  }
  body.super .area .table_wrapper .base:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #c2c2c2;
  }
}
body.super .area .table_wrapper .base thead > tr th:nth-of-type(1) {
  width: 23%;
}
body.super .area .table_wrapper .base thead > tr th:nth-of-type(2) {
  width: 34%;
}
body.super .area .table_wrapper .base thead > tr th:nth-of-type(3) {
  width: 20%;
}
body.super .area .table_wrapper .base thead > tr th:nth-of-type(4) {
  width: 23%;
}
body.super .area .table_wrapper .base tr td:nth-of-type(3) {
  white-space: nowrap;
}
body.super .area .table_wrapper .rental_cover,
body.super .area .table_wrapper .rental_shawl {
  display: inline-block;
  margin-bottom: 4px;
  padding: 4px 0;
  min-width: 135px;
  border-radius: 5px;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
body.super .area .table_wrapper .rental_cover {
  background: #E56783;
}
body.super .area .table_wrapper .rental_shawl {
  background: #CB657B;
}

/* 奨学金まなび基金 scholarship
------------------------------------------------- */
body.scholarship .top .contents {
  width: 75%;
  padding: 40px 20px;
}
@media screen and (max-width: 48em) {
  body.scholarship .top .contents {
    width: 100%;
  }
}
body.scholarship .top p {
  position: relative;
  padding-right: 68px;
}
@media screen and (max-width: 48em) {
  body.scholarship .top p {
    padding-right: 0;
  }
}
body.scholarship .thought {
  margin-bottom: 136px;
}
@media screen and (max-width: 48em) {
  body.scholarship .thought {
    margin-bottom: 68px;
  }
}
body.scholarship .thought .contents {
  max-width: calc(980px + 20px * 2);
  padding: 82px 20px 68px;
  color: #fff;
}
body.scholarship .thought .title_01 {
  padding-bottom: 6px;
  color: #fff;
  text-align: left;
  border-bottom: 1px #fff solid;
}
body.scholarship .thought .space {
  float: right;
  margin-bottom: 14em;
}
@media screen and (max-width: 48em) {
  body.scholarship .thought .space {
    display: none;
  }
}
body.scholarship .thought figure {
  float: right;
  clear: both;
  max-width: 473px;
  margin: 16px 0 16px 52px;
}
@media screen and (max-width: 48em) {
  body.scholarship .thought figure {
    float: none;
    margin: 0 auto;
  }
}
body.scholarship .thought p {
  letter-spacing: 0.1em;
}

/* 募集要項 requirement
------------------------------------------------- */
body.requirement .essential .inner {
  margin-bottom: 100px;
  padding: 60px 145px;
}
@media screen and (max-width: 48em) {
  body.requirement .essential .inner {
    padding: 60px 20px;
  }
}
body.requirement .title_01 span {
  display: block;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  color: #646464;
  font-size: 1.4rem;
}
body.requirement main.page .table_wrapper {
  margin-bottom: 56px;
}

/* ピンクリボン啓発活動助成金 assistance
------------------------------------------------- */
body.assistance .top .flex_box .box:nth-of-type(1) {
  max-width: 349px;
}
body.assistance .top .flex_box .box:nth-of-type(2) {
  padding-right: 100px;
}
@media screen and (max-width: 48em) {
  body.assistance .top .flex_box .box:nth-of-type(2) {
    padding-right: 0;
  }
}
body.assistance .top .title_01 span {
  display: block;
  font-size: 2.4rem;
}
@media screen and (max-width: 48em) {
  body.assistance .top .title_01 span {
    font-size: 1.8rem;
  }
}
body.assistance .inner {
  margin-bottom: 132px;
  padding: 100px 145px 60px;
}
@media screen and (max-width: 48em) {
  body.assistance .inner {
    padding: 40px 20px;
  }
}
body.assistance .inner .title_01 {
  font-size: 3rem;
}

/* シッターサポートプログラム sitter
------------------------------------------------- */
body.sitter .top .flex_box .box:nth-of-type(1) {
  max-width: 349px;
}
body.sitter .top .flex_box .box:nth-of-type(2) {
  padding-right: 100px;
}
@media screen and (max-width: 48em) {
  body.sitter .top .flex_box .box:nth-of-type(2) {
    padding-right: 0;
  }
}
body.sitter .inner {
  margin-bottom: 132px;
  padding: 100px 145px 60px;
}
@media screen and (max-width: 48em) {
  body.sitter .inner {
    padding: 40px 20px;
  }
}
body.sitter .inner .title_01 {
  font-size: 3rem;
}
body.sitter .inner .table_wrapper table.table_a th {
  text-align: center;
}

/* JMGプログラム,JMSプログラム
------------------------------------------------- */
body.lmg .jmsprogram, body.jms .jmsprogram, body.tissue .jmsprogram, body.heartsharing .jmsprogram {
  margin: 0 auto 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  max-width: 495px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #e56783;
}
body.lmg .jmsprogram figure, body.jms .jmsprogram figure, body.tissue .jmsprogram figure, body.heartsharing .jmsprogram figure {
  max-width: 250px;
  margin-right: 20px;
}
body.lmg .jmsprogram p, body.jms .jmsprogram p, body.tissue .jmsprogram p, body.heartsharing .jmsprogram p {
  margin-bottom: 0 !important;
  font-family: "ten-mincho-text", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #fff;
  font-size: 2.3rem;
}
@-moz-document url-prefix() {
  body.lmg .jmsprogram p, body.jms .jmsprogram p, body.tissue .jmsprogram p, body.heartsharing .jmsprogram p {
    background-color: currentColor;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media screen and (max-width: 48em) {
  body.lmg .jmsprogram, body.jms .jmsprogram, body.tissue .jmsprogram, body.heartsharing .jmsprogram {
    display: block;
    max-width: 400px;
  }
  body.lmg .jmsprogram figure, body.jms .jmsprogram figure, body.tissue .jmsprogram figure, body.heartsharing .jmsprogram figure {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
body.lmg .lmgprogram, body.jms .lmgprogram, body.tissue .lmgprogram, body.heartsharing .lmgprogram {
  margin: 0 auto 40px;
  max-width: 380px;
}
body.lmg .essential .inner, body.jms .essential .inner, body.tissue .essential .inner, body.heartsharing .essential .inner {
  margin-bottom: 130px;
  padding: 100px 145px 50px;
}
@media screen and (max-width: 48em) {
  body.lmg .essential .inner, body.jms .essential .inner, body.tissue .essential .inner, body.heartsharing .essential .inner {
    margin-bottom: 100px;
    padding: 40px 20px;
  }
}
body.lmg .title_01 span, body.jms .title_01 span, body.tissue .title_01 span, body.heartsharing .title_01 span {
  display: block;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  color: #646464;
  font-size: 1.4rem;
}
body.lmg .title_02, body.jms .title_02, body.tissue .title_02, body.heartsharing .title_02 {
  font-size: 3rem;
}
@media screen and (max-width: 48em) {
  body.lmg .title_02, body.jms .title_02, body.tissue .title_02, body.heartsharing .title_02 {
    font-size: 2.4rem;
  }
}
body.lmg main.page .table_wrapper, body.jms main.page .table_wrapper, body.tissue main.page .table_wrapper, body.heartsharing main.page .table_wrapper {
  margin-bottom: 100px;
  letter-spacing: 0.1em;
}
body.lmg main.page .table_wrapper table.base th, body.jms main.page .table_wrapper table.base th, body.tissue main.page .table_wrapper table.base th, body.heartsharing main.page .table_wrapper table.base th {
  text-align: center;
}
body.lmg .text_area_02, body.jms .text_area_02, body.tissue .text_area_02, body.heartsharing .text_area_02 {
  margin-bottom: 110px;
}
body.lmg .text_area_02 .bg_color_01.inner, body.jms .text_area_02 .bg_color_01.inner, body.tissue .text_area_02 .bg_color_01.inner, body.heartsharing .text_area_02 .bg_color_01.inner {
  padding-bottom: 80px;
}
body.lmg .text_area_02 p, body.jms .text_area_02 p, body.tissue .text_area_02 p, body.heartsharing .text_area_02 p {
  margin-bottom: 20px;
}
@media screen and (max-width: 48em) {
  body.lmg .text_area_02, body.jms .text_area_02, body.tissue .text_area_02, body.heartsharing .text_area_02 {
    margin-bottom: 60px;
  }
  body.lmg .text_area_02 .bg_color_01.inner, body.jms .text_area_02 .bg_color_01.inner, body.tissue .text_area_02 .bg_color_01.inner, body.heartsharing .text_area_02 .bg_color_01.inner {
    padding-bottom: 60px;
  }
}

body.jms .flex_box.reverse p {
  width: 64.5%;
}
body.jms .flex_box.reverse figure {
  width: 32.5%;
}
@media screen and (max-width: 48em) {
  body.jms .flex_box.reverse {
    padding: 0;
  }
  body.jms .flex_box.reverse p {
    width: 100%;
  }
  body.jms .flex_box.reverse figure {
    margin: 0 auto 30px;
    max-width: 243px;
    width: 100%;
  }
}

/* 出版事業・こころのメッセージ publication
------------------------------------------------- */
body.publication .top {
  margin-bottom: 90px;
}
@media screen and (max-width: 48em) {
  body.publication .top {
    margin-bottom: 40px;
  }
}
body.publication .top .contents {
  padding: 60px 50px;
}
@media screen and (max-width: 48em) {
  body.publication .top .contents {
    width: 100%;
    padding: 40px 20px;
  }
}
body.publication .top p {
  position: relative;
  padding-right: 68px;
}
@media screen and (max-width: 48em) {
  body.publication .top p {
    padding-right: 0;
  }
}
body.publication .bg_color_01 {
  margin-bottom: 90px;
  padding: 80px 50px 100px;
}
body.publication .bg_color_01 > p {
  margin-bottom: 1.5em;
}
body.publication .flex_box {
  margin-bottom: 30px;
}
body.publication .flex_box .box {
  width: 48.5%;
}
body.publication .flex_box figure {
  max-width: 247px;
  width: 26%;
}
body.publication .flex_box .text_box {
  width: 70%;
}
body.publication h3.color_01 {
  margin-bottom: 1em;
}
body.publication .title_02 {
  font-size: 2.2rem;
  line-height: 1.3;
}
body.publication .title_02 small {
  font-size: 1.6rem;
}
@media screen and (max-width: 48em) {
  body.publication .bg_color_01 {
    margin-bottom: 60px;
    padding: 60px 20px;
  }
  body.publication .flex_box {
    display: block;
  }
  body.publication .flex_box .box {
    width: 100%;
  }
  body.publication .flex_box figure {
    width: 100%;
    margin: 0 auto 10px;
  }
  body.publication .flex_box .text_box {
    width: 100%;
  }
}

/* 自己検診啓発ティッシュ配りキャンペーン tissue
------------------------------------------------- */
body.tissue .top.left_w_area .contents, body.heartsharing .top.left_w_area .contents {
  padding-bottom: 60px;
}
body.tissue .top .title_01 small, body.heartsharing .top .title_01 small {
  font-size: 3rem;
}
body.tissue .top .flex_box figure, body.heartsharing .top .flex_box figure {
  max-width: 350px;
  width: 41.5%;
}
body.tissue .top .flex_box .text_box, body.heartsharing .top .flex_box .text_box {
  width: 55%;
}
body.tissue .top .bg_color_06, body.heartsharing .top .bg_color_06 {
  padding: 50px;
}
body.tissue .top .bg_color_06 .title_02, body.heartsharing .top .bg_color_06 .title_02 {
  border-bottom-color: rgba(112, 112, 112, 0.3);
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-size: 2.6rem;
}
body.tissue .top .bg_color_06 .title_02 span, body.heartsharing .top .bg_color_06 .title_02 span {
  line-height: 1;
  font-size: 1.77em;
}
body.tissue .top .bg_color_06 .title_02 h3, body.heartsharing .top .bg_color_06 .title_02 h3 {
  font-weight: 500;
  margin-bottom: 8px;
}
body.tissue .top .bg_color_06 .title_02 .list_asterisk, body.heartsharing .top .bg_color_06 .title_02 .list_asterisk {
  font-size: 1.6rem;
  color: #646464;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
}
body.tissue .top .bg_color_06 p, body.heartsharing .top .bg_color_06 p {
  letter-spacing: 0.1em;
}
body.tissue .essential .bg_color_06.flex_box .img_box, body.heartsharing .essential .bg_color_06.flex_box .img_box {
  max-width: 375px;
  width: 56%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
body.tissue .essential .bg_color_06.flex_box .img_box > figure, body.heartsharing .essential .bg_color_06.flex_box .img_box > figure {
  max-width: 180px;
  text-align: center;
  width: 48.5%;
}
body.tissue .essential .bg_color_06.flex_box .img_box > figure figcaption, body.heartsharing .essential .bg_color_06.flex_box .img_box > figure figcaption {
  font-size: 1rem;
}
body.tissue .essential .bg_color_06.flex_box .text_box, body.heartsharing .essential .bg_color_06.flex_box .text_box {
  width: 40%;
}
@media screen and (max-width: 48em) {
  body.tissue .top .flex_box figure, body.heartsharing .top .flex_box figure {
    margin: 0 auto 20px;
    width: 100%;
  }
  body.tissue .top .flex_box .text_box, body.heartsharing .top .flex_box .text_box {
    width: 100%;
  }
  body.tissue .top .bg_color_06, body.heartsharing .top .bg_color_06 {
    padding: 20px;
  }
  body.tissue .essential .bg_color_06.flex_box .img_box, body.heartsharing .essential .bg_color_06.flex_box .img_box {
    margin: 0 auto 20px;
    width: 100%;
    display: block;
  }
  body.tissue .essential .bg_color_06.flex_box .img_box > figure, body.heartsharing .essential .bg_color_06.flex_box .img_box > figure {
    margin: 0 auto 20px;
    width: 100%;
  }
  body.tissue .essential .bg_color_06.flex_box .text_box, body.heartsharing .essential .bg_color_06.flex_box .text_box {
    width: 100%;
  }
}

/* 啓発ツール supporter
------------------------------------------------- */
.supporter h3 {
  margin-top: 10px;
  font-size: 2.2rem;
  font-family: "ten-mincho-text", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 0.06em;
  font-weight: 500;
  line-height: 1.3;
}
@-moz-document url-prefix() {
  .supporter h3 {
    background-color: currentColor;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.supporter .skip_contents {
  margin-bottom: 100px;
}
.supporter .float_box {
  overflow: hidden;
  margin-bottom: 40px;
}
.supporter .float_box .item, .supporter .float_box figure {
  float: right;
  margin-left: 30px;
}
.supporter .border_box_02 {
  margin-bottom: 50px;
}
.supporter .contents.contact {
  padding-top: 25px;
  padding-bottom: 70px;
}
.supporter .contents.bg_color_01.negative .btn.btn_01 {
  margin: 40px 0 20px;
}
@media screen and (max-width: 48em) {
  .supporter .float_box .item, .supporter .float_box figure {
    float: none;
    margin: 0 auto 20px;
  }
}
.supporter .item {
  cursor: pointer;
}
@media screen and (max-width: 48em) {
  .supporter .item {
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .supporter .item {
    width: 100%;
  }
}
.supporter .item .btn_details {
  cursor: pointer;
}
.supporter .view {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 100;
}
.supporter .view .view_bg {
  width: 100%;
  height: 100vh;
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.supporter .view .view_content {
  overflow: auto;
  display: block;
  max-height: 80vh;
  max-width: 600px;
  width: 80%;
  padding: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff8f8;
  border: 6px #e98097 solid;
  z-index: 1;
}
@media screen and (max-width: 48em) {
  .supporter .view .view_content {
    padding: 2.5%;
  }
}
.supporter .view .view_content .photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.supporter .view .view_inner .close {
  text-align: center;
}
.supporter .view .view_inner .close .view_close {
  display: inline-block;
  background-color: #cb657b;
  padding: 0.5em 1em;
  border-radius: 24px;
  color: #fff;
  cursor: pointer;
}

/* はじめよう！月に一度のマンマチェック mammacheck
------------------------------------------------- */
.mammacheck .contents.bg_color_01 {
  padding: 100px 125px;
  margin-bottom: 140px;
}
.mammacheck .contents.bg_color_01 > figure {
  margin: 0 auto;
}
.mammacheck .contents.bg_color_01 > p {
  margin-bottom: 20px;
}
.mammacheck .contents.bg_color_01 .title_01 small {
  font-size: 2.8rem;
  display: inline-block;
}
.mammacheck .mamma_title {
  max-width: 853px;
  border-radius: 15px;
  overflow: hidden;
  margin: 0 auto 130px;
  background: #fff;
}
.mammacheck .mamma_title h2 {
  text-align: center;
  padding: 0.7em;
  background: #e56783;
  font-size: 2rem;
  color: #fff;
}
.mammacheck .mamma_title .flex_box {
  padding: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mammacheck .mamma_title .flex_box .text_box {
  margin-right: 55px;
}
.mammacheck .mamma_title .flex_box .text_box p {
  letter-spacing: 0.06em;
  color: #e56783;
  font-weight: 700;
}
.mammacheck .mamma_title .flex_box .text_box p:nth-child(1) {
  display: inline-block;
  border-radius: 100px;
  background: #e56783;
  margin: 0 0 0.5em 0;
  padding: 0.3em 1em;
  color: #fff;
}
.mammacheck .mamma_title .flex_box .text_box p:nth-child(2) {
  white-space: nowrap;
  padding: 0 0 0 75px;
  font-size: 5.3rem;
  border-bottom: 3px #e56783 solid;
  margin-bottom: 10px;
  background: url(../img/common/icon_calendar.png) no-repeat left 3px top;
  background-size: 60px;
  line-height: 1.3;
}
.mammacheck .mamma_title .flex_box .text_box p:nth-child(2) small {
  display: block;
  margin-bottom: -18px;
  font-weight: 700;
  font-size: 1.6rem;
}
.mammacheck .mamma_title .flex_box .text_box p:nth-child(3) {
  text-align: right;
}
.mammacheck .mamma_title .flex_box figure {
  max-width: 136px;
}
.mammacheck .title_03 {
  letter-spacing: 0.1em;
}
.mammacheck .title_02 {
  letter-spacing: 0.06em;
  border-bottom-color: rgba(229, 103, 131, 0.3) !important;
}
.mammacheck .mamma_howto {
  background: #ffe1e7;
  padding: 55px 20px;
  margin-top: 60px;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 15px;
}
.mammacheck .mamma_howto .text_box {
  max-width: 515px;
  width: 75%;
  margin-right: 55px;
}
.mammacheck .mamma_howto .text_box h4 {
  color: #e56783;
  font-size: 3rem;
}
.mammacheck .mamma_howto .text_box h4 + p {
  background-color: #e56783;
  color: #fff;
  margin: 5px 0 15px;
}
.mammacheck .mamma_howto .text_box .bg_color_02 {
  font-weight: 700;
  padding: 0.3em 1.3em;
  display: inline-block;
  border-radius: 100px;
}
.mammacheck .mamma_howto .text_box .bg_color_01 {
  padding: 20px 33px 20px 100px;
  background: url(../img/common/icon_calendar.png) no-repeat left 20px center/65px;
  border-radius: 10px;
}
.mammacheck .check_list_01 {
  margin-bottom: 45px;
}
.mammacheck .border_box_04 {
  margin-bottom: 90px;
}
.mammacheck .border_box_04 figure {
  float: left;
  margin-right: 40px;
}
.mammacheck .border_box_04 p {
  letter-spacing: 0.1em;
}
.mammacheck .btn_02 {
  max-width: 370px;
}
.mammacheck .contents.tool {
  padding: 100px 80px;
}
.mammacheck .contents.tool .flex_box.reverse {
  margin-bottom: 50px;
}
.mammacheck .contents.tool .flex_box.reverse figure {
  width: 43%;
}
.mammacheck .contents.tool .flex_box.reverse p {
  width: 54%;
}
.mammacheck .contents.tool .title_02 {
  font-size: 2.2rem;
}
.mammacheck .contents.tool .border_box_02 {
  margin: 50px 0;
}
.mammacheck .contents.tool .border_box_02 + p {
  margin-bottom: 35px;
}
.mammacheck .contents.tool .btn_01 {
  margin-bottom: 150px;
}
.mammacheck .contents.tool .card_list_02 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mammacheck .contents.tool .card_list_02 .card_list_02_child {
  width: 240px;
}
.mammacheck .contents.tool .card_list_02 .card_list_02_child .card_list_02_img {
  height: 192px;
  position: relative;
}
.mammacheck .contents.tool .card_list_02 .card_list_02_child .card_list_02_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.mammacheck .contents.tool .card_list_02 .card_list_02_child .color_01 {
  padding: 1em 0 0.5em;
}
.mammacheck .contents.tool .card_list_02 .card_list_02_child .btn {
  position: static;
  margin-bottom: 0;
}
@media screen and (max-width: 48em) {
  .mammacheck .contents.bg_color_01 {
    padding: 50px 20px;
    margin-bottom: 140px;
  }
  .mammacheck .mamma_title .flex_box {
    display: block;
    padding: 20px;
  }
  .mammacheck .mamma_title .flex_box .text_box {
    margin: 0 auto 20px;
    text-align: center;
  }
  .mammacheck .mamma_title .flex_box .text_box p {
    display: inline-block;
  }
  .mammacheck .mamma_title .flex_box .text_box p:nth-child(1) {
    margin: 0 0 1em 0;
  }
  .mammacheck .mamma_title .flex_box .text_box p:nth-child(2) {
    font-size: 12vw;
    white-space: normal;
    padding-left: 1.8em;
    background: url(../img/common/icon_calendar.png) no-repeat left 3px center;
    background-size: 1.5em;
  }
  .mammacheck .mamma_title .flex_box .text_box p:nth-child(2) small {
    font-size: 4vw;
  }
  .mammacheck .mamma_title .flex_box .text_box p:nth-child(3) {
    text-align: start;
  }
  .mammacheck .mamma_title .flex_box figure {
    margin: 0 auto;
  }
  .mammacheck .border_box_04 figure {
    float: none;
    margin: 0 auto 20px;
  }
  .mammacheck .mamma_howto {
    text-align: center;
    display: block;
  }
  .mammacheck .mamma_howto .text_box {
    width: 100%;
    margin: 0 auto 20px;
  }
  .mammacheck .mamma_howto .text_box .bg_color_01 {
    padding: 100px 20px 20px 20px;
    text-align: left;
    background: url(../img/common/icon_calendar.png) no-repeat top 20px center/65px;
  }
  .mammacheck .mamma_howto figure {
    margin: 0 auto;
  }
  .mammacheck .contents.tool .flex_box.reverse figure {
    width: 100%;
    margin: 0 auto 20px;
  }
  .mammacheck .contents.tool .flex_box.reverse p {
    width: 100%;
  }
  .mammacheck .contents.tool .btn_01 {
    margin-bottom: 50px;
  }
  .mammacheck .contents.tool .card_list_02 {
    margin: 0;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .mammacheck .contents.tool .card_list_02 .card_list_02_child {
    width: 100%;
    margin: 0 0 50px;
  }
  .mammacheck .contents.tool .card_list_02 .card_list_02_child .card_list_02_img {
    height: auto;
    position: static;
  }
  .mammacheck .contents.tool .card_list_02 .card_list_02_child .card_list_02_img img {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

body.panel .contents.bg_color_01.negative {
  margin-top: -160px;
  padding: 186px 100px 92px;
  margin-bottom: 160px;
}
@media screen and (max-width: 48em) {
  body.panel .contents.bg_color_01.negative {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 60px;
    margin-bottom: 100px;
  }
}
body.panel .contents.bg_color_01.negative.panel_sec1 {
  padding-bottom: 20px;
}
@media screen and (max-width: 48em) {
  body.panel .contents.bg_color_01.negative.panel_sec1 {
    margin-bottom: 50px;
  }
}
body.panel .title_obi.corona {
  width: 91%;
  line-height: 2;
  letter-spacing: 0.06em;
  font-size: 22px;
  padding: 40px 70px 40px 80px;
}
@media screen and (max-width: 48em) {
  body.panel .title_obi.corona {
    padding: 20px 0;
    font-size: 1.6rem;
  }
}
body.panel .flyer_box {
  max-width: 704px;
  width: 100%;
  margin: 0 auto;
}
body.panel .flyer_box figure {
  max-width: 348px;
  width: 49.5%;
}
body.panel .size_box {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
body.panel .size_box > div {
  margin-right: 18px;
  letter-spacing: 0;
}
body.panel .bg_color_06 {
  margin-bottom: 90px;
  padding: 40px 45px 60px;
}
body.panel .bg_color_06 h3 {
  color: #e56783;
  font-weight: 700;
  margin-bottom: 0.5em;
}
body.panel .bg_color_06 h3 small {
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 48em) {
  body.panel .bg_color_06 {
    padding: 20px;
    margin-bottom: 60px;
  }
  body.panel .bg_color_06 .flex_box {
    display: block;
  }
  body.panel .bg_color_06 .flex_box > div {
    margin: 0 auto;
  }
  body.panel .bg_color_06 .flex_box > div figure {
    margin: 30px auto 0;
  }
}
body.panel .bg_color_10 {
  padding: 25px;
}
body.panel .bg_color_10 h3 {
  padding: 5px 0 5px 2em;
  background: url(../img/common/icon_pencil.png) no-repeat left 0.5em top 6px;
  margin-bottom: 5px;
}
body.panel .card_list_02 {
  margin: -30px;
}
body.panel .card_list_02 h4 {
  font-weight: 400;
  margin: 0.5em 0;
}
body.panel .card_list_02 .card_list_02_child {
  padding-bottom: 55px;
  width: calc(100% / 3 - 60px);
  margin: 30px;
}

/* 全国の検査施設、出張マンモグラフィー検査
------------------------------------------------- */
body.howto .bg_color_01, body.bus .bg_color_01 {
  margin-bottom: 130px;
  padding: 100px 120px 230PX;
}
@media screen and (max-width: 48em) {
  body.howto .bg_color_01, body.bus .bg_color_01 {
    margin-bottom: 90px;
    padding: 60px 20px;
  }
}
body.howto .title_01 span, body.bus .title_01 span {
  font-size: 2.8rem;
}
@media screen and (max-width: 48em) {
  body.howto .title_01 span, body.bus .title_01 span {
    font-size: 2rem;
  }
}
body.howto .inner_bg_color, body.bus .inner_bg_color {
  margin-bottom: 100px;
  padding: 32px 40px;
  background-color: #fef4f6;
}
@media screen and (max-width: 48em) {
  body.howto .inner_bg_color, body.bus .inner_bg_color {
    margin-bottom: 50px;
    padding: 32px 20px;
  }
}
body.howto .inner_bg_color .title_02, body.bus .inner_bg_color .title_02 {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}
body.howto .inner_bg_color a, body.bus .inner_bg_color a {
  color: #e56783;
  text-decoration: underline;
}

body.howto .inner_bg_color .title_02 {
  border-color: #646464;
}

body.bus .inner_bg_color .title_02 {
  margin: 0;
  padding: 0;
  border: none;
}

.jmap {
  position: relative;
}
.jmap svg {
  display: block;
  width: 500px;
  height: 578px;
  margin: 0 auto;
}
@media screen and (max-width: 48em) {
  .jmap svg {
    width: 100%;
    height: initial;
    max-width: 500px;
    margin-bottom: 50px;
  }
}

main.page .map_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 500px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 48em) {
  main.page .map_list {
    width: calc(100% + 1em);
    margin: 0 -0.5em;
    position: relative;
  }
}
main.page .map_list a {
  width: 176px;
  margin-bottom: 1em;
  padding: 0 0.25em;
  position: absolute;
  line-height: 1;
}
@media screen and (max-width: 48em) {
  main.page .map_list a {
    position: relative;
  }
}
main.page .map_list a span {
  display: block;
  padding: 0.4em 0 0.3em;
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
main.page .map_list table, main.page .map_list td {
  border: none;
  background-color: transparent;
}
main.page .map_list td {
  width: 56px;
  padding: 4px;
  text-align: center;
}
main.page .map_list .hokkaido {
  top: 25px;
  left: 170px;
  color: #2e4f80;
}
main.page .map_list .hokkaido span {
  background-color: #2e4f80;
}
main.page .map_list .tohoku {
  top: 190px;
  left: 420px;
  color: #87a2cc;
}
main.page .map_list .tohoku span {
  background-color: #87a2cc;
}
main.page .map_list .kanto {
  top: 330px;
  left: 400px;
  color: #ffaa40;
}
main.page .map_list .kanto span {
  background-color: #ffaa40;
}
main.page .map_list .chubu {
  top: 180px;
  left: 100px;
  color: #b39252;
}
main.page .map_list .chubu span {
  background-color: #b39252;
}
main.page .map_list .kinki {
  top: 480px;
  left: 280px;
  color: #6dafb3;
}
main.page .map_list .kinki span {
  background-color: #6dafb3;
}
main.page .map_list .chugoku {
  top: 350px;
  left: -80px;
  color: #c96f6e;
}
main.page .map_list .chugoku span {
  background-color: #c96f6e;
}
main.page .map_list .shikoku {
  top: 535px;
  left: 90px;
  color: #8f81b6;
}
main.page .map_list .shikoku span {
  background-color: #8f81b6;
}
main.page .map_list .kyushu_okinawa {
  top: 590px;
  left: -90px;
  color: #d788bf;
}
main.page .map_list .kyushu_okinawa span {
  background-color: #d788bf;
}
@media screen and (max-width: 48em) {
  main.page .map_list .hokkaido, main.page .map_list .tohoku, main.page .map_list .kanto, main.page .map_list .chubu, main.page .map_list .kinki,
main.page .map_list .chugoku, main.page .map_list .shikoku, main.page .map_list .kyushu_okinawa {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }
}

/* _cancer.scss add
------------------------------------------------- */
body.type .bg_color_01 {
  margin-bottom: 130px;
  padding: 100px 124px 90px;
}
@media screen and (max-width: 48em) {
  body.type .bg_color_01 {
    padding: 60px 20px;
  }
}
body.type .sec_qa {
  padding-top: 110px;
  padding-bottom: 90px;
}
@media screen and (max-width: 48em) {
  body.type .sec_qa {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
body.type .ans a {
  color: #e56783;
  text-decoration: underline;
}

main.page .map_list div.area {
  width: 176px;
  margin-bottom: 1em;
  padding: 0 0.25em;
  position: absolute;
  line-height: 1;
}
@media screen and (max-width: 48em) {
  main.page .map_list div.area {
    position: relative;
  }
}
main.page .map_list div.area span {
  display: block;
  padding: 0.4em 0 0.3em;
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
main.page .map_list div.area a {
  width: auto;
  margin-bottom: 0;
  padding: 0;
  position: relative;
}
main.page .map_list div.area.hokkaido a {
  color: #2e4f80;
}
main.page .map_list div.area.tohoku a {
  color: #87a2cc;
}
main.page .map_list div.area.kanto a {
  color: #ffaa40;
}
main.page .map_list div.area.chubu a {
  color: #b39252;
}
main.page .map_list div.area.kinki a {
  color: #6dafb3;
}
main.page .map_list div.area.chugoku a {
  color: #c96f6e;
}
main.page .map_list div.area.shikoku a {
  color: #8f81b6;
}
main.page .map_list div.area.kyushu_okinawa a {
  color: #d788bf;
}

.official_list .skip_contents {
  margin-bottom: 55px;
}

.partner_contents:not(:last-child) {
  margin-bottom: 130px;
}
.partner_contents .obi_contents {
  margin-bottom: 70px;
}

.partner_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}

.partner_list_item {
  width: 21%;
  text-align: center;
  word-wrap: break-word;
  margin-bottom: 16px;
}
.partner_list_item a .partner_name {
  text-decoration: underline;
}
.partner_list_item a:hover {
  opacity: 0.8;
  display: block;
}
@media screen and (max-width: 48em) {
  .partner_list_item {
    width: 47.5%;
  }
}
@media screen and (max-width: 23.4375em) {
  .partner_list_item {
    width: 100%;
  }
}
.partner_list_item:not(:nth-of-type(4n)) {
  margin-right: 5%;
}
@media screen and (max-width: 48em) {
  .partner_list_item:not(:nth-of-type(4n)) {
    margin-right: 0;
  }
}
@media screen and (max-width: 48em) {
  .partner_list_item:not(:nth-of-type(even)) {
    margin-right: 5%;
  }
}
@media screen and (max-width: 23.4375em) {
  .partner_list_item:not(:nth-of-type(even)) {
    margin-right: 0;
  }
}

.partner_logo {
  margin-bottom: 16px;
}
@media screen and (max-width: 48em) {
  .partner_logo img {
    width: auto;
    max-width: 100%;
  }
}

.partner_update_date {
  text-align: right;
}

body.about .greeting .inner {
  margin-bottom: 100px;
  padding: 60px 120px 100px;
}
@media screen and (max-width: 48em) {
  body.about .greeting .inner {
    padding: 60px 20px 100px;
  }
  body.about .greeting .inner .align_r.bold {
    text-align: left !important;
  }
}
body.about .title_01 span {
  display: block;
  font-size: 2.8rem;
}
body.about .philosophy .title_obi span.small {
  font-size: 2rem;
}
@media screen and (max-width: 48em) {
  body.about .philosophy .flex_box {
    display: block;
  }
}
body.about .philosophy .flex_box .box {
  width: 100%;
}
body.about .philosophy .flex_box .box:nth-of-type(2) {
  max-width: 390px;
  margin-left: 28px;
}
@media screen and (max-width: 48em) {
  body.about .philosophy .flex_box .box:nth-of-type(2) {
    margin: 28px auto;
  }
}
body.about .philosophy .flex_box ol {
  margin-bottom: 40px;
  padding: 28px 40px;
  border: 3px #e56783 dashed;
  border-radius: 8px;
  color: #e56783;
  font-weight: 700;
}
body.about .philosophy .flex_box ol li {
  margin-bottom: 16px;
}
body.about .philosophy .flex_box ol li:last-child {
  margin-bottom: 0;
}
body.about .about_pinkribbon p {
  margin-bottom: 28px;
}
body.about .about_pinkribbon .title_02 {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

body.npo .please .bg_color_01.inner {
  padding-top: 100px;
}
@media screen and (max-width: 48em) {
  body.npo .please .bg_color_01.inner {
    padding-top: 60px;
  }
}
body.npo .contents.bg_color_01.negative {
  padding-left: 120px;
  padding-right: 120px;
}
@media screen and (max-width: 48em) {
  body.npo .contents.bg_color_01.negative {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.npo .btn {
  max-width: 320px;
  width: 100%;
}
body.npo .btn a {
  font-weight: 700;
  border: 2px solid #e56783;
  padding: 10px 15px;
  width: 100%;
  min-width: 0;
}

/* contact - ページ
------------------------------------------------- */
body.contact .contact_box .btn {
  display: none;
}

body.contact .form_table, body.confirm .form_table,
body.complete .form_table {
  letter-spacing: 0 !important;
}
body.contact .form_table .input_area, body.confirm .form_table .input_area,
body.complete .form_table .input_area {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px #e56783 solid;
}
body.contact .form_table .input_area .item, body.confirm .form_table .input_area .item,
body.complete .form_table .input_area .item {
  margin-bottom: 4px;
  font-size: 1.8rem;
}
body.contact .form_table .input_area .item span, body.confirm .form_table .input_area .item span,
body.complete .form_table .input_area .item span {
  margin-left: 12px;
  padding: 0 10px;
  background-color: #e56783;
  color: #fff;
  font-size: 1.6rem;
}
body.contact .form_table .input_area .line_area, body.confirm .form_table .input_area .line_area,
body.complete .form_table .input_area .line_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body.contact .form_table .input_area .line_area .detail, body.confirm .form_table .input_area .line_area .detail,
body.complete .form_table .input_area .line_area .detail {
  margin-right: 10px;
}
body.contact .form_table .input_area .line_area .detail input, body.confirm .form_table .input_area .line_area .detail input,
body.complete .form_table .input_area .line_area .detail input {
  min-width: 0;
}
body.contact .form_table .input_area .detail, body.confirm .form_table .input_area .detail,
body.complete .form_table .input_area .detail {
  margin-bottom: 12px;
}
body.contact .form_table .input_area .short, body.confirm .form_table .input_area .short,
body.complete .form_table .input_area .short {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 104px;
}
body.contact .form_table .input_area .middle, body.confirm .form_table .input_area .middle,
body.complete .form_table .input_area .middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 140px;
}
body.contact .form_table .input_area .short span,
body.contact .form_table .input_area .middle span, body.confirm .form_table .input_area .short span,
body.confirm .form_table .input_area .middle span,
body.complete .form_table .input_area .short span,
body.complete .form_table .input_area .middle span {
  margin-left: 10px;
}
body.contact .btnArea, body.confirm .btnArea,
body.complete .btnArea {
  text-align: center;
}
body.contact .btnArea .btn_01, body.confirm .btnArea .btn_01,
body.complete .btnArea .btn_01 {
  display: block;
  position: relative;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
body.contact .btnArea .btn_01 input, body.confirm .btnArea .btn_01 input,
body.complete .btnArea .btn_01 input {
  width: 100%;
  height: 50px;
  max-width: 288px;
  margin-bottom: 24px;
  background-color: #e56783;
}
body.contact .comment, body.confirm .comment,
body.complete .comment {
  margin-bottom: 36px;
  color: #001B43;
  font-family: "ten-mincho-text", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2.2rem;
}
@-moz-document url-prefix() {
  body.contact .comment, body.confirm .comment,
body.complete .comment {
    background-color: currentColor;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
body.contact .note, body.confirm .note,
body.complete .note {
  margin-top: 32px;
  color: #e56783;
  font-size: 1.8rem;
}

.radio_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.radio_btn label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.radio_btn label input[type=radio] {
  background-color: #fff;
  border: 2px #e56783 solid;
  border-radius: 50%;
  padding: 10px;
}
.radio_btn label input[type=radio] + span {
  position: relative;
}
.radio_btn label input[type=radio]:checked + span:before {
  display: block;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -25px;
  width: 16px;
  height: 16px;
  background-color: #e56783;
  border-radius: 50%;
}
.radio_btn span.mwform-radio-field.horizontal-item {
  margin-right: 10px;
  margin-bottom: 10px;
  margin-left: 0;
}
.radio_btn .sub {
  width: 100%;
  font-weight: 700;
}

.check_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.check_btn label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.check_btn label input[type=checkbox] {
  background-color: #EBEDEF;
  padding: 12px;
}
.check_btn label input[type=checkbox] + span {
  position: relative;
}
.check_btn label input[type=checkbox]:checked + span:before {
  content: "✓";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: -34px;
  color: #e56783;
  font-size: 4rem;
  line-height: 24px;
  text-align: center;
}

.upfile_btn input[type=file] {
  width: 100%;
}
.upfile_btn span::after {
  content: "ファイルの選択を取り消す";
}

input:not([type=submit]),
textarea,
select {
  border: none;
  background: #eee;
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
textarea:focus {
  border: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #eee inset;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  -webkit-appearance: menulist;
     -moz-appearance: menulist;
          appearance: menulist;
  background-color: #fff;
}
.ui-datepicker table {
  border: none;
}
.ui-datepicker tr {
  border: none;
}
.ui-datepicker th {
  width: auto;
  min-width: auto;
}
@media screen and (max-width: 48em) {
  .ui-datepicker table {
    display: table;
    width: auto;
  }
  .ui-datepicker tr {
    display: table-row;
    width: auto;
  }
  .ui-datepicker th {
    display: table-cell;
    width: auto;
  }
  .ui-datepicker td {
    display: table-cell;
    width: auto;
  }
  .ui-datepicker tbody {
    display: table-row-group;
    width: auto;
  }
}

input[name=your_zipcode] + .error {
  position: absolute;
  width: 128px;
  margin-left: 150px !important;
  bottom: 0;
}

.middle, .short {
  position: relative;
}
.middle .error, .short .error {
  position: absolute;
  width: 128px;
  bottom: 0;
}

.middle .error {
  margin-left: 150px !important;
}

.short .error {
  margin-left: 125px !important;
}

.mw_wp_form .error {
  color: #07a3fe;
}

@media print {
  /* IE zoom
  ------------------------------------------------- */
  /* for IE6 or older */
  * html body {
    zoom: 0.7;
  }

  /* for IE7 */
  * + html body {
    zoom: 1;
  }
}
/*# sourceMappingURL=style.css.map */