@charset "UTF-8";

/* CSS Document */
/**********************************
Reset
**********************************/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: 300;
}

body {
  line-height: 1;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

nav ul,
ul,
li {
  list-style: none;
}

li a {
  text-decoration: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

img {
  vertical-align: bottom;
}

/**********************************
Settings
**********************************/
html {
  font-size: 14pt;
}

body {
  -webkit-print-color-adjust: exact;
  font-family: "Zen Maru Gothic", serif;
  color: #555;
  font-weight: 300;
  line-height: 1.5em;
  width: 100%;
  position: relative;
}
#bg_movie {
  display: none;
}
.on_bg_area {
  width: 100%;
}
.disp_body {
  width: 100%;
  background-color: #fff;
}
.disp_body::-webkit-scrollbar {
  display: none;
}
.pc_left_area {
  display: none;
}
.pc_right_area {
  display: none;
}
.pc_lang_btn {
  display: none;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 701;
  background-color: #fff;
}

.header_wrap {
  width: auto;
  padding: 7px 14px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.header_wrap .header_logo {
  width: 31%;
}

.header_wrap .header_logo img {
  width: 100%;
  height: auto;
}

.header_wrap .basic_info {
  width: 44%;
  margin-left: auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.header_wrap .basic_info li:first-of-type {
  width: 21%;
}

.header_wrap .basic_info li:nth-of-type(2) {
  width: 14%;
}

.header_wrap .basic_info li:last-of-type {
  width: 30%;
}

.header_wrap .basic_info li img {
  width: 100%;
  height: auto;
}

.nav_sp {
  margin-left: auto;
  width: 18px;
  height: 50px;
}

.nav_unshown {
  display: none;
}

.nav_sp .hamburger {
  width: 50px;
  height: 50px;
  -webkit-transition: .2s;
  transition: .2s;
  cursor: pointer;
  position: absolute;
  top: 7px;
  right: 0;
  z-index: 902;
}

.nav_sp .hamburger .hamburger_inner {
  width: 28px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -13px;
  pointer-events: none;
}

.nav_sp .hamburger span {
  position: absolute;
  width: 28px;
  height: 2px;
  border-radius: 36px;
  background-color: #444;
  /* background-color: #746771; */
  display: block;
  content: '';
  cursor: pointer;
  transition: all .1s linear;
}

#nav_open {
  display: inline-block;
  width: 28px;
  height: 20px;
  top: 0;
  left: 0;
  cursor: pointer;
  position: relative;
}

#nav_open span:nth-of-type(1) {
  top: 0;
  width: 28px;

}

#nav_open span:nth-of-type(2) {
  top: 8px;
  width: 28px;
}

#nav_open span:nth-of-type(3) {
  top: 17px;
  right: 0;
  width: 16px;
}

#nav_check:checked~.hamburger #nav_open span:nth-of-type(1) {
  width: 28px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: 3px 6px;
}

#nav_check:checked~.hamburger #nav_open span:nth-of-type(2) {
  display: none;
}

#nav_check:checked~.hamburger #nav_open span:nth-of-type(3) {
  width: 28px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transform-origin: 4px -3px;
}

.nav_inner {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: calc(100vh - 134px);
  padding: 0 0 134px;
  z-index: 801;
  overflow: scroll;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  background-color: #fff;
}

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

.nav_inner nav > ul {
  width: 84%;
  margin: 86px auto 0;
}

.nav_inner nav > ul > li {
  border-bottom: solid 1px #efefef;
}

.nav_inner nav > ul > li > a {
  padding: 20px 0;
  font-size: 1.25rem;
  font-weight: 500;
  display: block;
}

.nav_inner nav > ul > li.have_children > a {
  position: relative;
}

.nav_inner nav > ul > li.have_children > a:after {
  content: '';
  display: block;
  background-image: url(../images/plus_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 18px;
  margin-top: -7px;
}

.nav_inner nav > ul > li.have_children > a.open:after {
  background-image: url(../images/minus_icon.png);
  margin-top: -1px;
}

.nav_inner nav > ul > li .sub_menu {
  display: none;
  padding-left: 40px;
}

.nav_inner nav > ul > li .sub_menu li {
  list-style: disc;
  margin-bottom: 14px;
}

.nav_inner nav > ul > li .sub_menu li a {
  font-size: 0.875rem;
}

.nav_inner .tel_num {
  width: 68%;
  margin: 46px auto 0;
}

.nav_inner .tel_num a {
  display: block;
  width: auto;
  text-align: center;
  font-family: "Bellefair", serif;
  font-size: 2.375rem;
  color: #666066;
  text-decoration: none;
  padding: 4px 0;
}

.nav_inner .tel_num a span {
  position: relative;
  padding-left: 30px;
}
.nav_inner .tel_num a span:before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../images/phone_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -14px;
}

.nav_inner .tel_num a:hover {
  color: #999;
}

.nav_inner .contact {
  width: 84%;
  margin: 38px auto 0;
}

.nav_inner .contact a {
  display: block;
  width: auto;
  font-family: "Bellefair", serif;
  font-size: 1.75rem;
  border: solid 1px #666066;
  text-align: center;
  color: #f8b7d3;
  text-decoration: none;
  padding: 24px 12px 20px;
  position: relative;
}

.nav_inner .contact a:before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background-color: #f8b7d3;
  position: absolute;
  top: 50%;
  right: 0;
  margin-left: -0.5px;
}

.nav_inner .contact a:hover {
  color: #e68BB5;
}

#nav_check:checked~.nav_inner {
  right: 0;
  scrollbar-width: none;
  overflow: scroll;
}

.bottom_link {
  display: none;
}

/**********************************
Hover
**********************************/
a {
  color: #555;
  text-decoration: underline;
  transition: all .15s ease;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: #111;
}

a img {
  transition: all .15s ease;
}

a img:hover {
  opacity: .8;
}


/**********************************
TOP Page
**********************************/
.contents_wrap {
  width: 100%;
  background-color: #fff;
}

/***MV***/
.mv {
  width: 100%;
  position: relative;
}
.mv .mv_wrap {
  width: 100%;
}
.mv .mv_wrap ul {
  width: 100%;
}

.mv .mv_wrap ul li {
  width: 100%;
}

.mv .mv_wrap ul li img {
  width: 100%;
  height: auto;
}

.message_wrap {
  position: absolute;
  left: 0;
  top: 50%;
  text-align: center;
  font-size: 1.75rem;
  line-height: 1.5em;
  width: 100%;
  padding: 176px 0;
  margin-top: -220px;
  color: #111;
  -webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}

/*** お知らせ ***/
#news {
  width: 100%;
}

#news .section_inner {
  width: auto;
  padding: 68px 24px 0;
}

#news .section_inner > h2 {
  font-family: "Bellefair", serif;
  text-align: center;
  font-size: 2.75rem;
  padding-top: 44px;
  position: relative;
}

#news .section_inner > h2:before {
  content: '';
  display: block;
  width: 1px;
  height: 20px;
  background-color: #f8b7d3;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -0.5px;
}

#news .section_inner > h2 span {
  display: block;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1rem;
  margin-top: 6px;
}

#news .section_inner .news_box {
  width: auto;
  margin-top: 36px;
}

#news .section_inner .news_box .news_inner {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: solid 1px #eaeaea;
}

#news .section_inner .news_box .news_inner .date {
  font-family: "Bellefair", serif;
}

#news .section_inner .news_box .news_inner .title {
  margin-top: 2px;
}

#news .section_inner .news_box .news_inner .title a {
  line-height: 1.7em;
}

/*** 当院について ***/
#about {
  width: 100%;
}

#about .section_inner {
  width: auto;
  padding: 68px 24px;
  margin-top: 48px;
  background-color: #fcf0ec;
}

#about .section_inner > h2 {
  font-family: "Bellefair", serif;
  text-align: center;
  font-size: 2.75rem;
  padding-top: 44px;
  position: relative;
}

#about .section_inner > h2:before {
  content: '';
  display: block;
  width: 1px;
  height: 20px;
  background-color: #f8b7d3;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -0.5px;
}

#about .section_inner > h2 span {
  display: block;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1rem;
  margin-top: 6px;
}

#about .section_inner .inner_box {
  width: auto;
  margin-top: 54px;
}

#about .section_inner .inner_box .photo {
  width: 100%;
}

#about .section_inner .inner_box .photo img {
  width: 100%;
  height: auto;
}

#about .section_inner .inner_box h2 {
  font-weight: 500;
  font-size: 1.5rem;
  margin-top: 18px;
}

#about .section_inner .inner_box p {
  margin-top: 16px;
}

/*** ホスピタリティ ***/
#hospitality {
  width: 100%;
}

#hospitality .section_inner {
  width: auto;
  padding: 68px 24px 12px;
}

#hospitality .section_inner > h2 {
  font-family: "Bellefair", serif;
  text-align: center;
  font-size: 2.75rem;
  padding-top: 44px;
  position: relative;
}

#hospitality .section_inner > h2:before {
  content: '';
  display: block;
  width: 1px;
  height: 20px;
  background-color: #f8b7d3;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -0.5px;
}

#hospitality .section_inner > h2 span {
  display: block;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1rem;
  margin-top: 6px;
}

#hospitality .section_inner .inner_box {
  width: auto;
  margin-top: 54px;
}

#hospitality .section_inner .inner_box .photo {
  width: 100%;
}

#hospitality .section_inner .inner_box .photo img {
  width: 100%;
  height: auto;
}

#hospitality .section_inner .inner_box p {
  margin-top: 16px;
}

/*** スタッフ募集 ***/
#recruit {
  width: 100%;
}

#recruit .section_inner {
  width: auto;
  padding: 68px 24px 12px;
}

#recruit .section_inner > h2 {
  font-family: "Bellefair", serif;
  text-align: center;
  font-size: 2.75rem;
  padding-top: 44px;
  position: relative;
}

#recruit .section_inner > h2:before {
  content: '';
  display: block;
  width: 1px;
  height: 20px;
  background-color: #f8b7d3;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -0.5px;
}

#recruit .section_inner > h2 span {
  display: block;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1rem;
  margin-top: 6px;
}

#recruit .section_inner .inner_box {
  width: auto;
  margin-top: 54px;
}

#recruit .section_inner .inner_box .photo {
  width: 100%;
}

#recruit .section_inner .inner_box .photo img {
  width: 100%;
  height: auto;
}

#recruit .section_inner .inner_box p {
  margin-top: 16px;
}

/*** 診療時間 ***/
#consultation {
  width: 100%;
}

#consultation .section_inner {
  width: auto;
  padding: 68px 0 12px;
}

#consultation .section_inner .photo {
  width: 100%;
}

#consultation .section_inner .photo img {
  width: 100%;
  height: auto;
}

#consultation .section_inner .table_wrap {
  width: auto;
  padding: 0 24px;
}

#consultation .section_inner .table_wrap table {
  width: 100%;
  border-top: solid 1px #eaeaea;
  margin-top: 36px;
}

#consultation .section_inner .table_wrap table tr {
  border-bottom: solid 1px #eaeaea;
}

#consultation .section_inner .table_wrap table th {
  width: 21%;
  text-align: left;
  padding: 10px 1%;
  font-size: 0.75rem;
}

#consultation .section_inner .table_wrap table td {
  width: 9%;
  text-align: center;
  padding: 10px 1%;
  font-size: 0.75rem;
}
#consultation .section_inner .anntotation {
  width: auto;
  padding: 0 24px;
  font-size: 0.75rem;
  line-height: 1.5em;
  margin-top: 6px;
}

/*** アクセス ***/
#access {
  width: 100%;
}

#access .section_inner {
  width: auto;
  padding: 68px 24px 12px;
}

#access .section_inner > h2 {
  font-family: "Bellefair", serif;
  text-align: center;
  font-size: 2.75rem;
  padding-top: 44px;
  position: relative;
}

#access .section_inner > h2:before {
  content: '';
  display: block;
  width: 1px;
  height: 20px;
  background-color: #f8b7d3;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -0.5px;
}

#access .section_inner > h2 span {
  display: block;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1rem;
  margin-top: 6px;
}

#access .section_inner .g_map {
  width: 100%;
  margin-top: 54px;
}

#access .section_inner .g_map iframe {
  width: 100%;
  height: 260px;
}

#access .section_inner .access_box {
  width: 100%;
  margin-top: 18px;
}

#access .section_inner .access_box .access_inner {
  padding: 14px 0;
  border-bottom: solid 1px #eaeaea;
}

#access .section_inner .access_box .access_inner h3 {
  font-size: 0.875rem;
  font-weight: 500;
  padding-left: 32px;
  position: relative;
}

#access .section_inner .access_box .access_inner h3:before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -12px;
}

#access .section_inner .access_box .access_inner:first-of-type h3:before {
  background-image: url(../images/address_icon.png);
}

#access .section_inner .access_box .access_inner:nth-of-type(2) h3:before {
  background-image: url(../images/car_icon.png);
}

#access .section_inner .access_box .access_inner:last-of-type h3:before {
  background-image: url(../images/train_icon.png);
}


#access .section_inner .access_box .access_inner .info p {
  margin-top: 12px;
}

#access .section_inner .access_box .access_inner .info table {
  width: 100%;
  margin-top: 12px;
}

#access .section_inner .access_box .access_inner .info table th {
  width: 31%;
  padding: 12px 1% 12px 0;
  text-align: left;
}

#access .section_inner .access_box .access_inner .info table td {
  width: 68%;
  padding: 12px 0;
}

/*** More link ***/
.more_link {
  margin: 14px 0 0 auto;
  width: 90px;
}

.more_link a {
  display: block;
  width: auto;
  text-align: center;
  font-size: 1.25rem;
  font-family: "Bellefair", serif;
  text-decoration: none;
  position: relative;
}

.more_link a:before {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: #e68BB5;
  position: absolute;
  left: 0;
  bottom: -5px;
}

.more_link a:hover:before {
  -webkit-animation: cursor_on .3s ease-in-out both;
  animation: cursor_on .3s ease-in-out both;
}

@keyframes cursor_on {
  0%{
    width: 0;
  }
  100%{
    width: 100%;
  }
}

/**********************************
下層ページ共通
**********************************/

.title_wrap {
  padding-top: 80px;
  width: 100%;
}

.title_wrap .title_inner {
  width: 100%;
  margin: 46px 0 24px;
}
.title_wrap .title_inner h2 {
  width: auto;
  padding: 2px 18px;
  font-size: 1.125rem;
  letter-spacing: .1em;
}
.title_wrap .title_inner h2 span {
  display: block;
  font-size: 2.75rem;
  font-family: "Bellefair", serif;
  margin-bottom: 16px;
}
.title_wrap .kv_wrap {
  width: 100%;
}
.title_wrap .kv_wrap img {
  width: 100%;
  height: auto;
  margin-bottom: 46px;
}
.section_inner {
  width: auto;
  padding: 0 20px;
}
.section_inner > h2 {
  font-size: 1.375rem;
  padding: 14px 0;
  line-height: 1.5em;
  border-bottom: solid 1px #f8b7d3;
  margin-bottom: 24px;
}

.section_inner > h3 {
  font-size: 1.25rem;
  line-height: 1.5em;
  padding: 8px 10px;
  background-color: #e2e0e2;
  margin-bottom: 24px;
}

.section_inner > h4 {
  font-size: 1.125rem;
  line-height: 1.5em;
  font-weight: 500;
  padding: 8px 0;
}

.section_inner > p {
  line-height: 1.7em;
  margin-bottom: 36px;
}

.section_inner .image_wrap {
  width: 100%;
  margin-bottom: 36px;
}
.section_inner .image_wrap img {
  width: 100%;
  height: auto;
}

/***当院について***/
#outline .section_inner .history table {
  width: 100%;
  border-top: solid 1px #eaeaea;
  margin-bottom: 36px;
}
#outline .section_inner .history table tr {
  border-bottom: solid 1px #eaeaea;
}
#outline .section_inner .history table th {
  display: block;
  width: auto;
  text-align: left;
  padding: 14px 0 4px;
  line-height: 1.5em;
  font-weight: 500;
}
#outline .section_inner .history table td {
  display: block;
  width: auto;
  padding: 4px 0 14px;
  font-size: 0.875rem;
  line-height: 1.7em;
}
#doctor .section_inner .doctor_wrap {
  margin-bottom: 46px;
}
#doctor .section_inner .doctor_wrap .photo {
  width: 100%;
  margin-bottom: 18px;
}
#doctor .section_inner .doctor_wrap .photo img {
  width: 100%;
  height: auto;
}
#doctor .section_inner .doctor_wrap .name {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 14px;
}
#doctor .section_inner .doctor_wrap > p {
  font-size: 0.875rem;
  line-height: 1.7em;
  border-bottom: solid 1px #eaeaea;
  padding: 12px 0;
}
#doctor .section_inner .doctor_wrap > h3 {
  font-size: 1.125rem;
  margin-top: 20px;
}

/***産科***/
#schedule .section_inner .table_wrap {
  width: 100%;
}

#schedule .section_inner .table_wrap table {
  width: 100%;
  border-top: solid 1px #eaeaea;
}

#schedule .section_inner .table_wrap table tr {
  border-bottom: solid 1px #eaeaea;
}

#schedule .section_inner .table_wrap table th {
  width: 21%;
  text-align: left;
  padding: 10px 1%;
  font-size: 0.75rem;
}

#schedule .section_inner .table_wrap table td {
  width: 9%;
  text-align: center;
  padding: 10px 1%;
  font-size: 0.75rem;
}

#schedule .section_inner .anntotation {
  width: auto;
  font-size: 0.75rem;
  line-height: 1.5em;
  margin: 6px 0 36px;
}

#expense .section_inner .expense {
  width: 100%;
}

#expense .section_inner .expense table {
  width: 100%;
  border-top: solid 1px #eaeaea;
}

#expense .section_inner .expense table tr {
  border-bottom: solid 1px #eaeaea;
}

#expense .section_inner .expense table th {
  width: 20%;
  text-align: left;
  padding: 10px 1%;
  font-size: 0.875rem;
}

#expense .section_inner .expense table td {
  width: 72%;
  text-align: left;
  padding: 10px 1%;
  font-size: 0.875rem;
}
#expense .section_inner .expense .notice {
  width: auto;
  font-size: 0.875rem;
  line-height: 1.5em;
  margin: 6px 0 36px;
}

/***病室（分娩室、個室、お食事）***/
#room .section_inner  .room_list table {
  width: 100%;
  margin-bottom: 36px;
  border-bottom: solid 1px #eaeaea;
}

#room .section_inner  .room_list table th {
  text-align: left;
  padding: 14px 0;
  line-height: 1.5em;
  font-weight: 500;
  border-top: solid 1px #eaeaea;
}

#room .section_inner  .room_list table td {
  padding-bottom: 14px;
  font-size: 0.875rem;
  line-height: 1.7em;
}
#room .section_inner  .room_list table td:first-of-type {
  width: 18%;
}

/***お問い合わせ***/
.contact_wrap table {
  width: 100%;
}
.contact_wrap table th {
  display: block;
  text-align: left;
  padding: 14px 0;
  line-height: 1.5em;
  font-weight: 500;
  border-top: solid 1px #eaeaea;
}
.contact_wrap table th span {
  background-color: #111;
  font-size: 0.75rem;
  color: #fff;
  padding: 2px 6px;
  border-radius: 24px;
  margin-left: 6px;
}

.contact_wrap table td {
  display: block;
  text-align: left;
  padding: 2px 0 16px;
}

.contact_wrap table td input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: calc(96% - 2px);
  background-color: #efefef;
  border: solid 1px #ccc;
  padding: 10px 2%;
  font-size: 0.875rem;
}

.contact_wrap table td textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: calc(96% - 2px);
  background-color: #efefef;
  border: solid 1px #ccc;
  padding: 10px 2%;
  font-size: 0.875rem;
}

.submit_btn input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 180px;
  display: block;
  text-decoration: none;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 32px auto 0;
  padding: 12px 0;
  background-color: #fff;
  border: solid 2px #e68BB5;
  border-radius: 12px;
  color: #555;
  cursor: pointer;
  transition: all .15s ease;
}

.submit_btn input:hover {
  transform: scale(.97,.97);
}

/**********************************
Footer
**********************************/
footer {
  width: 100%;
  background-color: #fdf0ec;
  padding: 56px 0 98px;
  margin-top: 46px;
}

footer .footer_inner {
  width: auto;
  padding: 0 56px;
}

footer .footer_inner .footer_info {
  width: 100%;
}

footer .footer_inner .footer_info h1 {
  width: 100%;
}

footer .footer_inner .footer_info h1 img {
  width: 100%;
  height: auto;
}

footer .footer_inner .footer_info .address {
  text-align: center;
  margin-top: 16px;
}

footer .footer_inner .tel_num {
  margin-top: 32px;
  width: 100%;
}

footer .footer_inner .tel_num a {
  display: block;
  width: auto;
  font-family: "Bellefair", serif;
  font-size: 2.375rem;
  color: #666066;
  margin-top: 16px;
  text-decoration: none;
  padding: 4px 0;
  text-align: center;
}

footer .footer_inner .tel_num a:hover {
  color: #999;
}

footer .footer_inner .tel_num a span {
  position: relative;
  padding-left: 30px;
}
footer .footer_inner .tel_num a span:before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../images/phone_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -14px;
}

footer .footer_inner .sns_icons {
  margin-top: 38px;
}

footer .footer_inner .sns_icons ul {
  width: auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: space-around;
}

footer .footer_inner .sns_icons ul li {
  width: 34px;
}

footer .footer_inner .sns_icons ul li img {
  width: 100%;
  height: auto;
}

footer .footer_inner .copyright {
  font-family: "Bellefair", serif;
  text-align: center;
  font-size: 0.875rem;
  margin-top: 38px;
}