@charset "UTF-8";
/* area_map
======================================= */
.area__map-container {
  position: relative;
  margin-bottom: 5em;
}
@media (max-width: 768px) {
  .area__map-container {
    margin-bottom: 2.5em;
  }
}
.area__map-container figure {
  max-width: 608px;
  margin: auto;
  text-align: center;
}
@media (max-width: 768px) {
  .area__map-container figure {
    display: none;
  }
}
.area__map-container figure img.prefecture {
  max-width: 608px;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  width: 100%;
}
.area__map-container figure img.prefecture.is-active {
  opacity: 1;
}
@media (max-width: 768px) {
  .area__map-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
    max-width: 350px;
    margin: auto;
  }
}
.area__map-item {
  position: absolute;
  height: 50px;
}
@media (max-width: 768px) {
  .area__map-item {
    position: relative;
  }
}
.area__map-item.--01 {
  top: 9%;
  right: 0%;
}
@media (max-width: 768px) {
  .area__map-item.--01 {
    top: inherit;
    right: inherit;
  }
}
.area__map-item.--02 {
  top: 42%;
  right: 7%;
}
@media (max-width: 768px) {
  .area__map-item.--02 {
    top: inherit;
    right: inherit;
  }
}
.area__map-item.--03 {
  top: 27%;
  left: 38%;
}
@media (max-width: 768px) {
  .area__map-item.--03 {
    top: inherit;
    left: inherit;
  }
}
.area__map-item.--04 {
  left: 43%;
  bottom: 3%;
}
@media (max-width: 768px) {
  .area__map-item.--04 {
    left: inherit;
    bottom: inherit;
  }
}
.area__map-item.--05 {
  top: 40%;
  left: 17%;
}
@media (max-width: 768px) {
  .area__map-item.--05 {
    top: inherit;
    left: inherit;
  }
}
.area__map-item.--06 {
  top: 54%;
  left: 7%;
}
@media (max-width: 768px) {
  .area__map-item.--06 {
    top: inherit;
    left: inherit;
  }
}
.area__map-item.--07 {
  right: 5%;
  bottom: 2%;
}
@media (max-width: 768px) {
  .area__map-item.--07 {
    right: inherit;
    bottom: inherit;
  }
}
.area__map-item.--l {
  width: 180px;
}
@media (max-width: 768px) {
  .area__map-item.--l {
    width: 100%;
  }
}
.area__map-item.--m {
  width: 160px;
}
@media (max-width: 768px) {
  .area__map-item.--m {
    width: 100%;
  }
}
.area__map-item.--s {
  width: 141px;
}
@media (max-width: 768px) {
  .area__map-item.--s {
    width: 100%;
  }
}
.area__map-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #007CCF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #007CCF;
  background-color: #fff;
}
.area__map-item a:hover {
  background-color: #EEA70E;
  color: #fff;
}
.area__map-item-text {
  width: calc(100% - 50px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
}
@media (max-width: 768px) {
  .area__map-item-text {
    width: calc(100% - 35px);
    font-size: 0.875em;
  }
}
.area__map-item-icon {
  width: 50px;
  height: 100%;
  background-color: #007CCF;
  position: relative;
}
@media (max-width: 768px) {
  .area__map-item-icon {
    width: 35px;
  }
}
.area__map-item-icon img {
  width: 0.9375em;
  height: 0.9375em;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.area__map-item-icon img.blue {
  display: none;
}

/* btn 
========================================= */
.btn {
  position: relative;
  height: 60px;
  width: 320px;
}
@media (max-width: 768px) {
  .btn {
    width: 100%;
    max-width: 350px;
    height: 50px;
  }
}
.btn.--s {
  width: 250px;
}
@media (max-width: 768px) {
  .btn.--s {
    width: 100%;
    max-width: 350px;
  }
}
.btn.--l {
  width: 100%;
}
.btn a, .btn > span, .btn input {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 600;
  border-radius: 35px;
}
.btn__white a, .btn__white > span {
  padding: 1rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 2px solid #007CCF;
  color: #007CCF;
}
@media (max-width: 768px) {
  .btn__white a, .btn__white > span {
    font-size: 0.875em;
  }
}
.btn__white a::after, .btn__white > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2em;
  display: block;
  width: 11px;
  height: 11px;
  border-top: 2.5px solid #007CCF;
  border-right: 2.5px solid #007CCF;
  -webkit-transform: rotate(45deg) translateY(calc(-50% - 3px));
          transform: rotate(45deg) translateY(calc(-50% - 3px));
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn__white a:hover, .btn__white > span:hover {
  background-color: #007CCF;
  color: #fff;
}
.btn__white a:hover::after, .btn__white > span:hover::after {
  border-top: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
}
.btn__blue a, .btn__blue > span {
  padding: 1rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #007CCF;
  border: 2px solid #007CCF;
  color: #fff;
}
@media (max-width: 768px) {
  .btn__blue a, .btn__blue > span {
    font-size: 0.875em;
  }
}
.btn__blue a::after, .btn__blue > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2em;
  display: block;
  width: 11px;
  height: 11px;
  border-top: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
  -webkit-transform: rotate(45deg) translateY(calc(-50% - 3px));
          transform: rotate(45deg) translateY(calc(-50% - 3px));
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn__blue a:hover, .btn__blue > span:hover {
  background-color: #fff;
  color: #007CCF;
}
.btn__blue a:hover::after, .btn__blue > span:hover::after {
  border-top: 2.5px solid #007CCF;
  border-right: 2.5px solid #007CCF;
}
.btn__blue.--outer a::after, .btn__blue.--outer > span::after {
  width: 0.875rem;
  height: 0.875rem;
  border-top: none;
  border-right: none;
  -webkit-transform: inherit;
          transform: inherit;
  background: url(../img/common/icons/outer_white.svg) no-repeat center center/contain;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn__blue.--outer a:hover::after, .btn__blue.--outer > span:hover::after {
  background: url(../img/common/icons/outer_blue.svg) no-repeat center center/contain;
}
.btn__red a, .btn__red > span {
  padding: 1rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #B6265A;
  border: 2px solid #B6265A;
  color: #fff;
}
@media (max-width: 768px) {
  .btn__red a, .btn__red > span {
    font-size: 0.875em;
  }
}
.btn__red a::after, .btn__red > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2em;
  display: block;
  width: 11px;
  height: 11px;
  border-top: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
  -webkit-transform: rotate(45deg) translateY(calc(-50% - 3px));
          transform: rotate(45deg) translateY(calc(-50% - 3px));
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn__red a:hover, .btn__red > span:hover {
  background-color: #fff;
  color: #B6265A;
}
.btn__red a:hover::after, .btn__red > span:hover::after {
  border-top: 2.5px solid #B6265A;
  border-right: 2.5px solid #B6265A;
}
.btn__red.--outer a::after, .btn__red.--outer > span::after {
  width: 0.875rem;
  height: 0.875rem;
  border-top: none;
  border-right: none;
  -webkit-transform: inherit;
          transform: inherit;
  background: url(../img/common/icons/outer_white.svg) no-repeat center center/contain;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn__red.--outer a:hover::after, .btn__red.--outer > span:hover::after {
  background: url(../img/common/icons/outer_red.svg) no-repeat center center/contain;
}
.btn__circle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25em;
}
.btn__circle-icon {
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  background-color: #007CCF;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .btn__circle-icon {
    width: 2.25em;
    height: 2.25em;
  }
}
.btn__circle-icon.--anchor img {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.btn__circle-icon img {
  width: 0.875em;
  height: 0.875em;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .btn__circle-icon img {
    width: 0.795em;
    height: 0.795em;
  }
}
.btn__circle-icon.--l {
  width: 3.75rem;
  height: 3.75rem;
}
@media (max-width: 1024px) {
  .btn__circle-icon.--l {
    width: 3rem;
    height: 3rem;
  }
}
@media (max-width: 768px) {
  .btn__circle-icon.--l {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.btn__circle-icon.--l img {
  width: 1.3125rem;
  height: 1.3125rem;
}
@media (max-width: 1024px) {
  .btn__circle-icon.--l img {
    width: 1rem;
    height: 1rem;
  }
}
@media (max-width: 768px) {
  .btn__circle-icon.--l img {
    width: 0.875rem;
    height: 0.875rem;
  }
}
.btn__circle-icon .blue {
  display: none;
}
.btn__circle-text {
  width: calc(100% - 3.75rem - 20px);
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .btn__circle-text {
    width: calc(100% - 2.5rem - 20px);
  }
}
.btn__circle:hover .btn__circle-icon {
  background-color: #fff;
}
.btn__circle:hover .btn__circle-icon .blue {
  display: block;
}
.btn__circle:hover .btn__circle-icon .white {
  display: none;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, button, figure {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
  list-style: none;
  text-decoration: none;
}

body {
  color: #232b39;
  font-size: 14px;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", -apple-system, BlinkMacSystemFont, 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif !important;
}

img {
  width: 100%;
}

p {
  line-height: 1.6;
}

.visible-xs {
  display: block;
}

.visible-md {
  display: none;
}

@media screen and (min-width: 768px) {
  .visible-xs {
    display: none;
  }
  .visible-md {
    display: block;
  }
}
/* Material Icons */
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(https://cdn.e-ohaka.com/css/iconfont/MaterialIcons-Regular.eot);
  /* For IE6-8 */
  src: local("Material Icons"), local("MaterialIcons-Regular"), url(https://cdn.e-ohaka.com/css/iconfont/MaterialIcons-Regular.woff2) format("woff2"), url(https://cdn.e-ohaka.com/css/iconfont/MaterialIcons-Regular.woff) format("woff"), url(https://cdn.e-ohaka.com/css/iconfont/MaterialIcons-Regular.ttf) format("truetype");
}
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
}

.material-icons.md-18 {
  font-size: 18px;
}

.material-icons.md-28 {
  font-size: 28px;
}

.material-icons.md-48 {
  font-size: 48px;
}

.sp_only {
  display: none;
}

@media only screen and (max-width: 768px) {
  .sp_only {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }
}
/*===== SP =====*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  background: #fff;
  border-bottom: solid 1px #ababab;
  height: 48px;
  margin: 0;
  padding: 0;
}

.header > .lead-txt {
  background: #05aa22;
  color: #fff;
  font-size: 12px;
  height: 24px;
  line-height: 24px;
  text-align: center;
}

.header-container {
  background: #05aa22;
  margin: 0;
  position: relative;
  line-height: 36px;
}

.header-top {
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-logo {
  height: 48px;
  line-height: 48px;
  margin: 0 0 0 10px;
  overflow: hidden;
}

.header-logo img {
  height: 24px;
  vertical-align: middle;
  width: auto;
}

.header-telephone > a.txt-call {
  color: #232b39;
  font-family: Roboto;
  font-size: 20px;
  font-weight: bold;
  height: 48px;
  line-height: 48px;
  margin-right: 48px;
  overflow: hidden;
  padding: 0;
  text-align: right;
}

.header-telephone > a.txt-call::before {
  background: url(https://cdn.e-ohaka.com/common_img/icon_fc.png) no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 24px;
  margin-bottom: 4px;
  vertical-align: middle;
  width: 34px;
}

/*===== PC =====*/
@media screen and (min-width: 768px) {
  .header {
    height: 80px;
  }
  .header > .lead-txt {
    color: #fff;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    margin: 0 auto;
    text-align: left;
    max-width: 1000px;
  }
  .header-container {
    background: #fff;
    line-height: 80px;
    margin: 0;
    position: relative;
  }
  .header-top {
    background: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
    max-width: 1000px;
  }
  .header-logo {
    height: 80px;
    margin: 0;
    line-height: 80px;
  }
  .header-logo img {
    height: 35px;
    width: auto;
    vertical-align: middle;
  }
  .header-telephone {
    display: none;
  }
}
/*===== Tablet/Small PC =====*/
@media only screen and (min-width: 768px) and (max-width: 1040px) {
  .header-top {
    padding: 0 20px;
  }
}
/*===== SP =====*/
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.footer-area .info {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 20px;
}

.footer-area .info img {
  width: 40px;
  margin-right: 10px;
}

.footer-area .info strong {
  color: #eb6877;
}

/* フッター */
#footer {
  font-size: 13px;
}

#footer a {
  /* color: #076baf; */
}

#footer p.mb20 {
  width: 184px;
  height: auto;
}

#footer .footer-area {
  background-color: #edf6e3;
  width: 100%;
}

#footer .footer-area p {
  line-height: 1.5;
}

#footer .footer-area .inner {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  padding: 30px 10px;
}

#footer .footer-navi {
  background: #1ba0e5;
  width: 100%;
  font-size: 14px;
  color: #FFF;
}

#footer .footer-navi .inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 30px 10px;
}

#footer .footer-navi .inner ul {
  margin-bottom: 40px;
}

#footer .footer-navi .inner ul li {
  display: -moz-inline-box;
  display: inline-block;
  zoom: 1;
  vertical-align: middle;
  margin-bottom: 20px;
}

#footer .footer-navi .inner ul li:first-child {
  margin-right: 0;
}

#footer .footer-navi .inner ul li a {
  border-right: 1px solid #FFF;
  color: #FFF;
  text-decoration: none;
  padding-right: 16px;
  margin-right: 14px;
}

#footer .footer-navi .inner ul li:last-child a {
  border-right-style: none;
}

#footer .footer-navi .inner address {
  font-size: 12px;
  font-style: normal;
}

#footer .footer-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0.625em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#footer .footer-bottom .form-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#footer .footer-bottom .form-button a {
  width: 190px;
  margin-right: 0;
}

/*===== PC =====*/
@media only screen and (min-width: 768px) {
  .footer-area .area-list-conversion {
    display: none;
  }
  .cate-box h4 {
    font-size: 17px;
    font-weight: bold;
    line-height: 1;
    margin: 24px 0 12px 24px;
  }
  .cate-box li {
    width: 20%;
    padding: 10px 2% 0;
  }
  .cate-box .inner li {
    width: 45%;
  }
  #footer .footer-area .inner,
  #footer .footer-navi .inner {
    padding: 30px;
  }
  #footer .footer-bottom .form-button a {
    width: 220px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1040px) {
  .wrap-influx {
    overflow: hidden;
  }
}
/* layout / common parts */
.main-content {
  margin-top: 48px;
  font-size: 15px;
}

.section-box h2 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.section-box .inner {
  padding: 30px 10px 40px;
}

.form-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-button a {
  display: block;
  background: #ec4a9e;
  color: #fff;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: bold;
  font-size: 14px;
}

.form-button a .material-icons {
  font-size: 34px;
  color: #ec4a9e;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  margin-left: 5px;
}

.form-button a .material-icons:before {
  content: "";
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  top: 1px;
  left: 3px;
}

/* header */
.header,
.main-content {
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, "メイリオ", Meiryo, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.form-button a.header-form {
  width: 120px;
  line-height: 32px;
  padding-left: 7px;
  margin-right: 10px;
}

.form-button a.header-form .material-icons {
  font-size: 26px;
  margin-left: 2px;
}

.form-button a.header-form .material-icons:before {
  width: 20px;
  height: 20px;
}

/* main visual */
.main-visual {
  background: url(https://cdn.e-ohaka.com/img/sankotsu/mainvisual_sp.jpg) no-repeat center/cover;
}

.main-visual h1 {
  color: #052a66;
  font-size: 20px;
  padding: 32px 10px 32px;
  position: relative;
  z-index: 1;
}

.main-visual h1:after {
  content: "";
  background: url(https://cdn.e-ohaka.com/img/sankotsu/mainvisual_img.png) no-repeat;
  background-size: 150px;
  width: 150px;
  height: 100%;
  position: absolute;
  position: absolute;
  top: 74px;
  right: 10px;
  z-index: -1;
}

.main-visual h1 em {
  font-size: 44px;
  display: block;
  text-shadow: rgba(253, 253, 253, 0.8) 0 1px 5px;
  margin: 10px 0 0 -26px;
}

.main-visual h1 span {
  font-size: 24px;
  text-shadow: rgba(253, 253, 253, 0.8) 0 1px 5px;
}

.waves {
  position: relative;
  width: 100%;
  margin-bottom: -10px; /*Fix for safari gap*/
  height: 32px;
}

/* main logo */
.main-logo {
  width: 240px;
  margin: 18px auto;
  position: relative;
  z-index: 1;
}

/* section about */
.section-about .inner {
  padding-top: 0;
}

.section-about h2,
.section-area h2,
.section-plan h2,
.section-voice h2,
.section-faq h2 {
  color: #1aaad1;
  position: relative;
}

.section-about h2:after {
  content: "";
  background: url(https://cdn.e-ohaka.com/img/sankotsu/dot.png) center/12%;
  width: 100%;
  height: 4px;
  position: absolute;
  top: 14px;
  right: 0;
}

.section-about h2 span {
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

/* section reason */
.section-reason {
  background: url(https://cdn.e-ohaka.com/img/sankotsu/bg_ocean.jpg) no-repeat center/cover;
}

.section-reason h2 {
  color: #fff;
}

.section-reason .inner div {
  background: #fff;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  max-width: 298px;
  width: 90%;
  height: 60px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  position: relative;
}

.section-reason .inner div:not(:last-of-type) {
  margin-bottom: 15px;
}

.section-reason .inner div:before {
  content: "";
  background: #fff url(https://cdn.e-ohaka.com/img/sankotsu/check.png) no-repeat center/16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: -18px;
}

/* section area */
.section-area table {
  border-collapse: collapse;
}

.section-area table th {
  background: #1aaad1;
  color: #fff;
  font-weight: bold;
  width: 28%;
  vertical-align: middle;
}

.section-area table tr:not(:last-of-type) th {
  border-bottom: 1px solid #fff;
}

.section-area table tr:last-of-type th {
  border-bottom: 1px solid #1aaad1;
}

.section-area table td {
  border: 1px solid #ccc;
  padding: 10px;
}

/* section points */
.section-points,
.section-flow,
.section-form {
  background: #e0f3f9;
}

.section-points .point {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  background: #fff;
  border: 2.5px solid #fff;
}

.section-points .point:not(:last-of-type) {
  margin-bottom: 12px;
}

.section-points .point > div {
  background: #1aaad1;
  color: #fff;
  font-weight: bold;
  font-family: Roboto, sans-serif;
  border-right: 2.5px solid #fff;
  width: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.section-points .point > figure {
  width: 114px;
  height: 72px;
}

.section-points .point > p {
  font-weight: bold;
  width: 62%;
  width: calc(100% - 134.5px);
  padding-left: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/* section plan */
.section-plan .plan-item {
  border: 2px solid #1aaad1;
}

.section-plan .plan-item:not(:last-child) {
  margin-bottom: 16px;
}

.section-plan .plan-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.section-plan .plan-title > figure {
  width: 120px;
  height: 76px;
}

.section-plan .plan-title > h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 0 16px;
  width: calc(100% - 140px);
}

.section-plan .plan-title > h3 > span {
  font-size: 14px;
  font-weight: normal;
  display: block;
  margin-top: 4px;
}

.section-plan .plan-price {
  background: #1aaad1;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding: 4px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.section-plan .plan-price em {
  font-family: Roboto, sans-serif;
}

.section-plan .plan-price em {
  font-size: 28px;
}

.section-plan .plan-price.charter {
  padding: 20px 0;
}

.section-plan .plan-price p.plan-price-area {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section-plan .plan-price p.plan-price-area-b {
  margin-top: 20px;
}

.section-plan .plan-price p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 250px;
  margin: auto;
}

.section-plan .plan-price p span {
  display: block;
}

.section-plan .plan-price p span:nth-of-type(1) {
  text-align: left;
}

.section-plan .plan-price p span:nth-of-type(2) {
  text-align: right;
}

.section-plan .plan-price > span {
  display: block;
  font-weight: normal;
}

.section-plan .plan-item > p {
  margin: 8px;
}

.plan-area h3 {
  color: #1aaad1;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
}

.plan-option {
  border: 2px solid #1aaad1;
  border-radius: 12px;
  position: relative;
  margin-top: 38px;
}

.plan-option h3 {
  position: absolute;
  top: -13px;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
  padding: 0 21px;
  width: 208px;
}

.plan-option > ul {
  margin: 26px 16px 0;
}

.plan-option .option-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 16px;
}

.option-item > figure {
  width: 80px;
  height: 48px;
}

.option-item > h4 {
  width: 70%;
  width: calc(100% - 92px);
  margin-left: 12px;
  font-size: 16px;
  font-weight: bold;
}

.option-item > h4 > span {
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
}

.option-item > p {
  font-size: 14px;
  margin-top: 12px;
  width: 100%;
}

.plan-memorial {
  margin: 28px 10px 0;
}

.plan-memorial .memorial-item {
  background: #1aaad1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 16px 8px 10px;
}

.plan-memorial .memorial-item:first-of-type {
  margin-bottom: 16px;
}

.memorial-item > figure {
  width: 84px;
  height: 84px;
}

.memorial-item > figure > img {
  border: 2px solid #fff;
  border-radius: 50%;
}

.memorial-item > div {
  margin-left: 16px;
  width: 70%;
  width: calc(100% - 100px);
  color: #fff;
}

.memorial-item > div > h4 {
  font-size: 16px;
  font-weight: bold;
}

.memorial-item > div > p {
  font-size: 14px;
}

.memorial-item > div > h4 + p {
  margin: 8px 0;
}

.memorial-item > div > p:last-of-type {
  font-size: 12px;
  font-weight: bold;
}

.memorial-item > div > p > em {
  font-size: 24px;
  font-family: Roboto, sans-serif;
  margin-left: 15px;
}

.section-flow .flow-item {
  background: #fff;
  border: 1px solid #1aaad1;
  border-radius: 8px 8px 0 0;
  position: relative;
  margin-bottom: 42px;
}

.section-flow .flow-item:not(:last-of-type):before,
.section-flow .flow-item:not(:last-of-type):after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
}

.section-flow .flow-item:not(:last-of-type):before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 72px;
  height: 0;
  border: 36px solid transparent;
  border-top: 20px solid #1aaad1;
  bottom: -78px;
}

.section-flow .flow-item:not(:last-of-type):after {
  width: 0;
  height: 28px;
  border-left: 50px solid #1aaad1;
  bottom: -28px;
}

.section-flow .flow-item h3 {
  background: #1aaad1;
  color: #fff;
  border-radius: 6px 6px 0 0;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  padding: 3px 0 12px;
}

.section-flow .flow-item h3 > span {
  font-size: 20px;
  display: block;
  margin-bottom: 4px;
}

.section-flow .flow-item h3 > span > em {
  font-size: 28px;
  font-family: Roboto, sans-serif;
}

.section-flow .flow-detail {
  margin: 16px 10px;
}

.section-flow .flow-detail > p {
  margin-bottom: 10px;
}

.flow-detail .cv-area > a {
  display: block;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  height: 80px;
}

.flow-detail .cv-area > a > dl {
  margin-top: 10px;
}

.flow-detail .cv-area .form {
  background: #ec4a9e;
  border-radius: 4px;
  color: #fff;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flow-detail .cv-area .form > dl {
  margin-left: 20px;
}

.flow-detail .cv-area .form > dl > dd {
  font-size: 18px;
  margin-top: 10px;
  line-height: 1;
}

.flow-detail .cv-area .form .material-icons {
  font-size: 32px;
  color: #ec4a9e;
  position: relative;
  z-index: 1;
  line-height: 80px;
}

.flow-detail .cv-area .form .material-icons:before {
  content: "";
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  top: 24px;
  left: 2px;
}

.flow-detail .flow-list {
  margin-top: 20px;
}

.flow-detail .flow-list li {
  margin-bottom: 2px;
}

.flow-detail .flow-list li > em {
  color: #ec4a9e;
  font-weight: bold;
}

.flow-detail .meeting-area {
  border: 2px solid #1aaad1;
  border-radius: 12px;
  position: relative;
  padding: 14px 14px 16px;
}

.flow-detail .meeting-area:first-of-type {
  margin: 24px 0;
}

.flow-detail .meeting-area > h4 {
  background: #fff;
  padding: 0 16px;
  width: 200px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #1aaad1;
  position: absolute;
  top: -13px;
  left: 0;
  right: 0;
  margin: auto;
}

.flow-detail .meeting-area > h4 + p + p {
  font-size: 14px;
}

.flow-detail .meeting-area > h5,
.flow-detail .meeting-area > h5 + p {
  text-align: center;
}

.flow-detail .meeting-area > h5 {
  color: #1aaad1;
  font-weight: bold;
  margin: 54px 0 3px;
  position: relative;
}

.flow-detail .meeting-area > h5:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  content: "";
  width: 0;
  height: 0;
  border: 32px solid transparent;
  border-top: 24px solid #1aaad1;
  position: absolute;
  top: -38px;
  right: 0;
  left: 0;
  margin: auto;
}

.flow-detail .today-area {
  margin-top: 10px;
}

.flow-detail .today-area > h5 {
  color: #ec4a9e;
  font-weight: bold;
}

.section-flow .cruise-area {
  background: #1aaad1;
  border-radius: 16px;
  text-align: center;
  padding-bottom: 12px;
}

.section-flow .cruise-area h3 {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 44px;
}

.section-flow .cruise-inner {
  background: #fff;
  margin: 0 12px;
  padding: 12px 12px 16px;
  font-weight: bold;
}

.section-flow .cruise-inner > p {
  font-size: 14px;
}

.section-flow .cruise-inner > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 8px 0;
}

.section-flow .cruise-inner > ul > li {
  width: 25%;
  max-width: 74px;
  height: 46px;
}

.section-flow .cruise-price {
  color: #ec4a9e;
}

.section-flow .cruise-price > em {
  font-size: 26px;
  font-family: Roboto, sans-serif;
}

.section-flow .cruise-price > span {
  font-size: 16px;
  color: #0187cd;
  display: block;
  margin-top: 12px;
  position: relative;
}

.section-flow .cruise-price > span:before {
  content: "・・・・";
  position: absolute;
  top: -16px;
}

.form-button a.cruise-form {
  width: 100%;
  line-height: 48px;
  margin-top: 10px;
  font-size: 16px;
}

/* section voice */
.section-voice .voice-item {
  border: dashed 2px #1aaad1;
  border-radius: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 16px 16px 10px;
}

.section-voice .voice-item:not(:last-of-type) {
  margin-bottom: 16px;
}

.section-voice .voice-item > figure {
  width: 80px;
}

.section-voice .voice-title {
  margin: 0 0 5px 12px;
  width: 70%;
  width: calc(100% - 92px);
}

.section-voice .voice-title > h3 {
  font-size: 16px;
  font-weight: bold;
  color: #1aaad1;
  margin-top: -5px;
}

/* section faq */
.section-faq {
  margin-bottom: 36px;
}

.section-faq .faq-item {
  margin-bottom: 24px;
}

.section-faq .faq-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  font-weight: bold;
}

.section-faq .faq-title > div {
  font-size: 21px;
  color: #fff;
  background-color: #1aaad1;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", -apple-system, BlinkMacSystemFont, 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
}

.section-faq .faq-title > h3 {
  font-size: 16px;
  margin: 0 0 8px 12px;
  line-height: 32px;
  width: 86%;
  width: calc(100% - 44px);
}

.section-faq .faq-text {
  background: #e0f3f9;
  border-radius: 5px;
  padding: 8px 12px;
  width: 84%;
  margin-left: auto;
}

@media only screen and (max-width: 359px) {
  .flow-detail .cv-area .form > dl > dd {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) {
  /* layout / common parts */
  .main-content {
    margin-top: 80px;
    font-size: 16px;
  }
  .section-box .inner {
    padding: 64px 0 48px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .section-box h2 {
    font-size: 28px;
    margin-bottom: 48px;
  }
  .form-button a .material-icons {
    margin-left: 10px;
  }
  .form-button a .material-icons:before {
    width: 28px;
    height: 28px;
    top: 1px;
    left: 3px;
  }
  /* header */
  .form-button a.header-form {
    width: 220px;
    line-height: 44px;
    padding-left: 16px;
    font-size: 16px;
    margin: 0;
  }
  .form-button a.header-form span {
    display: inline-block;
  }
  /* main visual */
  .main-visual {
    background: url(https://cdn.e-ohaka.com/img/sankotsu/mainvisual_pc.jpg) no-repeat center/cover;
    position: relative;
  }
  .main-visual h1 {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 36px;
    padding: 71px 0 214px;
  }
  .main-visual h1 em {
    font-size: 76px;
    display: inline-block;
    margin-left: -46px;
  }
  .main-visual h1 span {
    font-size: 44px;
  }
  .main-visual h1:after {
    background-size: 407px;
    width: 407px;
    top: 20px;
    right: 0;
  }
  .main-visual h1 span {
    margin-left: -20px;
  }
  .main-visual > div {
    width: 100%;
    position: absolute;
    bottom: 0;
  }
  .waves {
    height: 118px;
  }
  /* main logo */
  .main-logo {
    width: 400px;
    margin: 0 auto 35px;
  }
  /* section about */
  .section-about .inner {
    padding-top: 0;
  }
  .section-about h2:after {
    background-size: 6%;
    height: 6px;
    top: 18px;
  }
  .section-about h2 span {
    padding: 0 28px;
  }
  .section-about p {
    text-align: center;
    font-size: 18px;
  }
  /* section reason */
  .section-reason .inner,
  .section-points .inner > ul,
  .section-plan .inner,
  .plan-memorial {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .section-reason .inner h2,
  .section-plan .inner h2,
  .plan-memorial h3 {
    width: 100%;
  }
  .section-reason .inner div {
    font-size: 20px;
    max-width: 300px;
    width: 30%;
    height: 120px;
    margin: 36px 28px 0;
  }
  .section-reason .inner div:first-of-type {
    margin: 36px 0 28px 22px;
  }
  .section-reason .inner div:last-of-type {
    margin: 36px 22px 28px 0;
  }
  .section-reason .inner div:before {
    background-size: 32px;
    width: 72px;
    height: 72px;
    top: -40px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .section-area {
    font-size: 19px;
  }
  .section-area table td {
    padding: 15px;
  }
  /* section points */
  .section-points .point {
    max-width: 490px;
    width: 48%;
    width: calc(50% - 20px);
    font-size: 19px;
  }
  .section-points .point:not(:last-of-type) {
    margin: 0;
  }
  .section-points .point:not(:nth-of-type(n + 5)) {
    margin-bottom: 20px;
  }
  .section-points .point > div {
    font-size: 20px;
    width: 20px;
  }
  .section-points .point > figure {
    width: 159px;
    height: 100px;
  }
  .section-points .point > p {
    width: calc(100% - 182px);
    padding-left: 15px;
  }
  /* section plan */
  .section-plan .plan-item {
    max-width: 324px;
    width: 32%;
    width: calc(33.3333333333% - 8px);
  }
  .section-plan .plan-title > figure {
    width: 100%;
    max-height: 206px;
    height: 100%;
  }
  .section-plan .plan-title > h3 {
    width: 100%;
    font-size: 28px;
    margin: 15px 0;
    text-align: center;
  }
  .section-plan .plan-title > h3 > span {
    font-size: 16px;
  }
  .section-plan .plan-price,
  .section-plan .plan-price > span > em {
    font-size: 20px;
  }
  .section-plan .plan-price {
    padding: 0;
    /* height: 80px; */
    height: auto;
    min-height: 350px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .section-plan .plan-price.goudou {
    padding: 100px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .section-plan .plan-price em {
    font-size: 36px;
  }
  .section-plan .plan-price p {
    width: 96%;
  }
  .section-plan .plan-price > span {
    font-size: 16px;
    margin-top: -10px;
  }
  .section-plan .plan-item > p {
    margin: 20px;
    height: 150px;
  }
  .section-plan .plan-item:not(:last-child) {
    margin: 0;
  }
  .plan-option {
    margin-top: 52px;
    width: 100%;
  }
  .plan-area h3 {
    font-size: 24px;
  }
  .plan-option h3 {
    top: -19px;
    padding: 0 41px;
    width: 324px;
  }
  .plan-option > ul {
    margin: 34px 20px 28px;
  }
  .plan-option .option-item {
    margin-bottom: 20px;
    display: grid;
    display: -ms-grid;
    grid-auto-rows: auto;
    grid-template-columns: 80px 1fr;
  }
  .option-item > figure {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1/span 3;
    grid-column: 1/2;
  }
  .option-item > h4 {
    font-size: 20px;
    line-height: 1;
    -ms-grid-column: 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/span 1;
    grid-column: 2/3;
  }
  .option-item > h4 > span {
    font-size: 16px;
  }
  .option-item > p {
    font-size: 16px;
    margin: 6px 0 0 12px;
    -ms-grid-column: 2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/span 1;
    grid-column: 2/3;
  }
  .plan-memorial {
    width: 100%;
    margin: 48px 0px 0;
  }
  .plan-memorial .memorial-item {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 490px;
    width: 49%;
    width: calc(50% - 10px);
    padding: 20px 16px 12px 8px;
  }
  .plan-memorial .memorial-item:first-of-type {
    margin: 0;
  }
  .memorial-item > figure {
    width: 135px;
    height: 135px;
  }
  .memorial-item > div {
    margin-left: 12px;
    width: 67%;
    width: calc(100% - 148px);
  }
  .memorial-item > div > h4 {
    font-size: 20px;
  }
  .memorial-item > div > p,
  .memorial-item > div > p:last-of-type {
    font-size: 16px;
  }
  .memorial-item > div > h4 + p {
    margin: 10px 0;
  }
  .memorial-item > div > p > em {
    font-size: 32px;
  }
  /* section flow */
  .section-flow .flow-item {
    margin-bottom: 60px;
  }
  .section-flow .flow-item:last-of-type {
    margin-bottom: 50px;
  }
  .section-flow .flow-item:not(:last-of-type):after {
    border-left: 77px solid #1aaad1;
    height: 40px;
    bottom: -40px;
  }
  .section-flow .flow-item:not(:last-of-type):before {
    width: 108px;
    border: 54px solid transparent;
    border-top: 27px solid #1aaad1;
    bottom: -114px;
  }
  .section-flow .flow-item h3 {
    font-size: 20px;
    text-align: left;
    padding: 0 16px;
    line-height: 40px;
  }
  .section-flow .flow-item h3 > span {
    display: inline;
    margin-right: 16px;
  }
  .section-flow .flow-detail {
    margin: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .section-flow .flow-detail > p {
    margin: 0;
    width: 100%;
  }
  .section-flow .cv-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    width: 100%;
    margin-top: 20px;
  }
  .flow-detail .cv-area > a {
    width: 45%;
    max-width: 400px;
  }
  .flow-detail .cv-area .form > dl > dd {
    font-size: 20px;
  }
  .flow-detail .cv-area .form .material-icons {
    font-size: 48px;
    line-height: 86px;
  }
  .flow-detail .cv-area .form .material-icons:before {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 4px;
  }
  .flow-detail .flow-list {
    margin-top: 28px;
  }
  .flow-detail .meeting-area > h4 {
    font-size: 20px;
    top: -17px;
  }
  .flow-detail .meeting-area > h4 + p,
  .flow-detail .meeting-area > h5 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .flow-detail .meeting-area {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 470px;
    width: 49%;
    padding: 24px 20px 16px;
    text-align: center;
    margin-top: 28px;
  }
  .flow-detail .meeting-area:first-of-type {
    margin: 28px 0 0;
  }
  .flow-detail .today-area {
    margin-top: 22px;
  }
  .section-flow .cruise-area h3 {
    font-size: 24px;
    line-height: 72px;
  }
  .section-flow .cruise-inner {
    margin: 0 20px;
  }
  .section-flow .cruise-inner > p {
    font-size: 18px;
  }
  .section-flow .cruise-inner > p.cruise-price,
  .section-flow .cruise-inner > p.cruise-price + p {
    font-size: 16px;
  }
  .section-flow .cruise-inner > ul {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .section-flow .cruise-inner > ul > li {
    max-width: 150px;
    height: 94px;
    margin: 0 2.5px;
  }
  .section-flow .cruise-price > em {
    font-size: 34px;
  }
  .section-flow .cruise-price > span {
    display: inline-block;
    font-size: 20px;
    margin-left: 5px;
  }
  .section-flow .cruise-price > span:before {
    top: -20px;
  }
  .form-button a.cruise-form {
    width: 360px;
    margin: 10px auto 0;
  }
  .section-flow .cruise-area {
    padding-bottom: 20px;
  }
  /* section voice */
  .section-voice .voice-item {
    padding: 20px 20px 12px;
    display: grid;
    display: -ms-grid;
    grid-auto-rows: auto;
    grid-template-columns: 160px 1fr;
  }
  .section-voice .voice-item > figure {
    width: 160px;
    -ms-grid-column: 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1/span 3;
    grid-column: 1/2;
  }
  .section-voice .voice-title {
    margin: 0 0 5px 20px;
    -ms-grid-column: 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/span 1;
    grid-column: 2/3;
  }
  .section-voice .voice-title > h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .section-voice .voice-item > p {
    margin: 4px 0 0 20px;
    -ms-grid-column: 2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/span 1;
    grid-column: 2/3;
  }
  .section-voice .voice-item:not(:last-of-type) {
    margin-bottom: 32px;
  }
  .section-faq {
    margin-bottom: 40px;
  }
  .section-faq .faq-inner {
    padding: 20px 40px 0;
  }
  .section-faq .faq-item {
    margin: 0 0 20px 20px;
  }
  .section-faq .faq-title > div {
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 32px;
  }
  .section-faq .faq-title > h3 {
    font-size: 20px;
    line-height: 48px;
    width: calc(100% - 64px);
    margin: 0 0 12px 16px;
  }
  .section-faq .faq-text {
    padding: 10px 16px;
    width: 91%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1040px) {
  .main-visual h1 span {
    margin: 0;
    display: block;
  }
  .section-box .inner {
    padding: 64px 10px 48px;
  }
  .section-about .inner {
    padding-top: 0;
  }
  .main-visual h1 {
    padding: 71px 30px 214px;
  }
  .main-visual h1:after {
    background-size: 300px;
    width: 300px;
    right: 10px;
  }
  .section-reason .inner div {
    margin: 36px 12px 0;
  }
  .section-plan .plan-item > p {
    height: 200px;
  }
  .flow-detail .cv-area .form > dl > dd {
    font-size: 17px;
  }
}
/* 2022/07/21 散骨エリア修正*/
.mainvisual-home::after,
.mainvisual-home::before {
  content: "";
  left: 0;
  width: 100%;
}

.all-blog a,
.news-item a {
  color: #0068b7;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.all-blog a,
.banner-pos a,
.news-item a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.all-archive,
.diagnosis-area,
.news-area,
.news-item,
.news-item a {
  overflow: hidden;
}

.news-item a,
.report-detail,
.report-name {
  font-size: 14px;
}

.all-archive,
.all-blog,
.diagnosis-area,
.option-item,
.otherlink-item,
h2.ttl {
  text-align: center;
}

h2.ttl {
  padding: 20px 0;
}

h2.ttl span {
  display: inline-block;
  width: 100%;
  max-width: 294px;
}

h2.ttl span img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.news-area h2.ttl span img {
  max-width: 34.6938%;
}

.sankotsu-area h2.ttl span img {
  max-width: 56.8027%;
}

.diagnosis-area h2.ttl span img {
  max-width: 82.3129%;
}

.report-area h2.ttl span img {
  max-width: 100%;
}

.mainvisual-home {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
  background: url(../video/bo.jpg) center center no-repeat;
  background-size: cover;
}

.mainvisual-home::before {
  position: absolute;
  top: 0;
  height: 100%;
  mix-blend-mode: overlay;
  background: url(../images/movie-cover.png) rgba(0, 68, 204, 0.3);
  z-index: 3;
}

.mainvisual-home::after {
  position: absolute;
  bottom: 0;
  height: 35px;
  background: url(../../common/images/main-wave.bottom.png) bottom repeat-x;
}

#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

.mainvisual-home .inner {
  position: relative;
  height: 100%;
  z-index: 5;
  -webkit-box-pack: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.cp-wrap {
  width: 100%;
}

.mainvisual-home .inner p {
  width: 100%;
  max-width: 527px;
}

.mainvisual-home .inner p img {
  width: 75.71%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.mainvisual-home h1 {
  position: relative;
  padding-bottom: 15px;
  max-width: 527px;
}

.mainvisual-home h1 img {
  width: 100%;
}

.banner-pos {
  position: absolute;
  width: 100%;
  max-width: 300px;
  bottom: 50px;
  right: 0;
}

.banner-pos img {
  width: 100%;
}

.banner-pos a:hover {
  opacity: 0.8;
}

.all-archive a:hover,
.diagnosis-area a:hover,
.otherlink-item a:hover {
  opacity: 0.7;
}

@media (max-width: 750px) {
  .cp-wrap {
    padding-bottom: 30px;
  }
  .mainvisual-home .inner {
    display: block;
    padding-top: 30px;
  }
  .mainvisual-home {
    height: auto;
  }
  .mainvisual-home::after {
    background-size: auto 20px;
  }
  .mainvisual-home h1 {
    padding-bottom: 0;
  }
  .banner-pos {
    position: relative;
    bottom: 0;
  }
  .banner-pos img {
    width: 70%;
  }
  #top-nav {
    display: none;
  }
}
#top-nav,
.news-area,
.news-item,
.news-item a,
.news-list {
  width: 100%;
  position: relative;
}

#top-nav {
  padding: 30px 0 0;
}

#top-nav .inner {
  max-width: 1145px;
}

.news-item a,
.news-item a .txt {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.news-area {
  padding: 25px 0 85px;
  background: #e6f4ff;
}

.news-list {
  max-width: 650px;
  margin: 0 auto 30px;
}

.news-item a {
  padding: 10px;
  text-decoration: none;
  border-bottom: 1px dashed #0068b7;
}

.news-item a p {
  position: relative;
}

.news-item a .date {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  font-weight: 700;
}

.all-archive,
.all-blog,
.diagnosis-area,
.sankotsu-area {
  position: relative;
}

.news-item a .txt {
  width: 100%;
  padding-left: 100px;
}

.all-blog a,
.diagnosis-area a {
  display: inline-block;
  text-decoration: none;
}

.all-blog {
  width: 100%;
}

.all-blog a {
  padding: 5px 30px;
  border: 1px solid #0068b7;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.all-blog a:hover {
  color: #fff;
  background: #0068b7;
}

@media (min-width: 750px) {
  .news-item a:hover {
    background: #e7f5ff;
  }
}
.sankotsu-area {
  width: 100%;
  padding: 40px 0 60px;
  background: #eff8ff;
}

.diagnosis-area {
  width: 100%;
  background: url(../img/e-sogi/bg-diagnosis.png);
  padding: 55px 0 85px;
}

.all-archive a,
.diagnosis-area a {
  background: #ffb400;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.diagnosis-area h1.ttl {
  padding-bottom: 0;
}

.diagnosis-area .lead {
  position: relative;
  padding: 10px 0 30px;
}

.diagnosis-area a {
  padding: 15px 70px;
  color: #fff;
}

.diagnosis-area a img {
  max-width: 148px;
  display: block;
}

@media (max-width: 750px) {
  .diagnosis-area a {
    padding: 15px 40px;
  }
}
.all-archive {
  width: 100%;
  padding: 20px 0;
}

.all-archive a {
  display: inline-block;
  padding: 10px 20px;
  -webkit-box-shadow: 0.44px 0.9px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0.44px 0.9px 10px 0 rgba(0, 0, 0, 0.1);
}

.all-archive a img {
  display: block;
  max-width: 174px;
  vertical-align: baseline;
}

.option-list,
.otherlink-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
}

.otherlink-area {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
}

.otherlink-list {
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.otherlink-item {
  width: 33.33%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.otherlink-item img {
  max-width: 95%;
}

.otherlink-item a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media (max-width: 750px) {
  .otherlink-item {
    width: 100%;
    padding-bottom: 20px;
  }
}
.other-options {
  margin-top: 30px;
}

.other-options p {
  padding-top: 20px;
}

.option-list {
  width: 100%;
  padding-bottom: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.option-item {
  margin: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 750px) {
  .option-item {
    width: 100%;
    padding: 0 2%;
    margin-bottom: 20px;
  }
  .option-item p {
    text-align: left;
    padding-top: 5px;
  }
  .option-item p br {
    display: none;
  }
}
.top-specialy {
  padding: 80px 0 50px;
  background: url(../img/e-sogi/bg-diagnosis.png);
  text-align: center;
}

@media only screen and (max-width: 750px) {
  .top-specialy {
    padding: 40px 0;
  }
}
.top-specialy-ttl {
  margin-bottom: 30px;
}

.top-specialy-ttl img {
  max-width: 100%;
}

.top-specialy-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0;
  margin: 0 auto;
}

@media only screen and (max-width: 750px) {
  .top-specialy-list {
    display: block;
  }
}
.top-specialy-item {
  position: relative;
  width: 33.33%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 10px;
  margin: 0 15px;
  color: #000;
  background: #fff;
  -webkit-box-shadow: 0 0 5px 1px #e5e5e5;
          box-shadow: 0 0 5px 1px #e5e5e5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media only screen and (max-width: 750px) {
  .top-specialy-item {
    width: 100%;
    margin: 0 auto 20px;
    text-align: left;
  }
  .top-specialy-item br {
    display: none;
  }
}
.top-specialy-item span {
  color: #008ad2;
  font-weight: 700;
  background: #fafdff;
}

.top-specialy-item i {
  display: inline-block;
  position: absolute;
  top: -5px;
  left: -5px;
}

.top-specialy-item dl {
  border-radius: 3px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.top-specialy-item dl dt {
  padding: 5px 15px 15px 50px;
  font-weight: 400;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-specialy-item dl dd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
  padding: 15px 5px;
}

#otherArea {
  overflow: hidden;
  width: 100%;
  position: relative;
  background: #eff8ff;
  padding: 40px 0;
  background: url(../img/e-sogi/bg-diagnosis.png);
}

#otherArea .inner {
  max-width: 920px;
  width: 90%;
  margin: 0 auto;
}

#otherArea .ttl {
  color: #0068b7;
  text-align: center;
  padding: 20px 0;
  font-size: 28px;
  font-weight: bold;
}

.otherArea-table {
  margin-top: 30px;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background: #fff;
  border-top: 1px solid #2d67b1;
  border-right: 1px solid #2d67b1;
}

.otherArea-table th {
  width: 220px;
  background: #2d67b1;
  color: #fff;
  border-bottom: 1px solid #fff;
  font-weight: bold;
}

.otherArea-table td {
  border-bottom: 1px solid #2d67b1;
}

.otherArea-table td a {
  color: #ff3c0b;
  font-weight: 700;
  display: inline-block;
  padding-left: 20px;
  background: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M19%2019H5V5h7V3H5c-1.11%200-2%20.9-2%202v14c0%201.1.89%202%202%202h14c1.1%200%202-.9%202-2v-7h-2v7zM14%203v2h3.59l-9.83%209.83%201.41%201.41L19%206.41V10h2V3h-7z%22%2F%3E%3C%2Fsvg%3E) no-repeat;
  background-size: 15px auto;
  text-decoration: underline;
}

.otherArea-table td,
.otherArea-table th {
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.otherArea-table-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  color: #2d67b1;
  line-height: 1;
}

.otherArea-table-list li {
  padding: 0 5px;
  margin-bottom: 3px;
  border-right: 1px solid #9fb4ce;
}

.otherArea-title-text {
  color: #2d67b1;
}

.area__map-btn {
  margin: 0 auto;
}

.area__map-btn a {
  padding: 0;
}

@media only screen and (max-width: 750px) {
  #otherArea .ttl {
    font-size: 24px;
  }
  .otherArea-table,
  .otherArea-table tbody,
  .otherArea-table td,
  .otherArea-table th,
  .otherArea-table tr {
    display: block;
    border: 0;
  }
  .otherArea-table th {
    width: 100%;
  }
}
.section-plan .plan-title figure {
  position: relative;
}

.section-plan .plan-title figure::before {
  content: "";
  display: block;
  padding-top: 62.5%;
}

.section-plan .plan-title figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.plan-area .option-item {
  text-align: left;
}

/* 2023/02/23 追記 */
.memorial-item p .area-title {
  display: inline-block;
}

.memorial-item p .area-title.area-title-b {
  margin-top: 20px;
}

.memorial-item p .area-title.area-title-c {
  margin-top: 20px;
}

.section-form .form-title {
  background: #f5f5f5;
  border: 1px solid #c3c3c3;
  font-weight: bold;
  line-height: 48px;
  padding: 0 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.section-form .form-title .required {
  display: inline-block;
  font-size: 13px;
  text-align: center;
  color: #ec4a9e;
  border: 1px solid #ec4a9e;
  background: #fff;
  width: 44px;
  line-height: 20px;
  margin-left: 12px;
}

.section-form .text-field {
  background: #fff;
  border-right: 1px solid #c3c3c3;
  border-left: 1px solid #c3c3c3;
  padding: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form-area > div:first-of-type .form-title {
  border-radius: 8px 8px 0 0;
}

.form-area > div:nth-last-of-type(2) {
  border-bottom: 1px solid #c3c3c3;
  margin-bottom: 16px;
}

.section-form .form-area input[type=text],
.section-form .form-area select,
.text-field textarea,
.submit-button input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  font-size: 15px;
  padding: 0 10px;
}

.section-form .form-area input[type=text],
.section-form .form-area select {
  height: 44px;
  line-height: 44px;
}

.section-form .form-area input[type=text],
.section-form .form-area select {
  border: 1px solid #ccc;
  width: 100%;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  　color: #aaa;
}

::-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #aaa;
}

::-moz-placeholder { /* Others */
  color: #aaa;
}

:-ms-input-placeholder { /* Others */
  color: #aaa;
}

::placeholder { /* Others */
  color: #aaa;
}

.section-form .form-area select::-ms-expand {
  display: none;
}

.error_text {
  color: #bf0721;
  font-size: 15px;
  font-weight: bold;
  margin-top: 10px;
}

.text-field .name-box input[type=text] {
  width: 200px;
}

.text-field .name-box > span {
  margin-right: 12px;
}

.text-field input[type=text].address {
  width: 120px;
}

.section-form .form-area select {
  width: 198px;
}

.form-item .select-box {
  position: relative;
  display: inline-block;
}

.form-item .select-box:before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  background: #ccc;
  top: 0;
  right: 44px;
  z-index: 1;
  overflow: hidden;
}

.form-item .select-box:after {
  font-family: "Material Icons";
  content: "\e313";
  font-size: 40px;
  color: #232b39;
  z-index: 1;
  position: absolute;
  right: 2px;
  top: 4px;
  pointer-events: none;
  display: block;
}

.text-field .notes {
  font-size: 14px;
  display: block;
  width: 86%;
  margin: 16px 0 0 auto;
}

.text-field input[type=checkbox] {
  display: none;
}

.text-field .hope {
  display: inline-block;
  position: relative;
  padding-left: 38px;
  margin: 16px 0 0 16px;
}

.text-field .hope:before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #c8c8c8;
  background: #fff;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
}

.text-field input[type=checkbox]:checked + label.hope::before {
  content: "";
  background: #1aaad1;
  border: 1px solid #1aaad1;
}

.text-field input[type=checkbox]:checked + label.hope::after {
  content: "";
  width: 5px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 3px;
  left: 8px;
}

.text-field .btn-info {
  border: 1px solid #ccc;
  border-radius: 8px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ddd));
  background: -webkit-linear-gradient(top, #fff, #ddd);
  background: linear-gradient(180deg, #fff, #ddd);
  max-width: 160px;
  width: 50%;
  height: 48px;
  color: #232b39;
  font-size: 14px;
  margin-left: 7px;
  line-height: 1;
}

.text-field textarea {
  border: 1px solid #ccc;
  width: 100%;
  height: 220px;
  padding-top: 10px;
}

.text-field > div:first-of-type {
  margin-bottom: 16px;
}

.submit-button input[type=submit] {
  background: #1aaad1;
  width: 100%;
  line-height: 48px;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

.g-recaptcha div {
  margin: 30px auto;
}

input[type=submit][disabled] {
  background: #AAA;
  cursor: pointer;
}

#warning {
  text-align: center;
  color: #FF0000;
  margin-top: 1rem;
}

@media only screen and (max-width: 359px) {
  .text-field .btn-info {
    font-size: 13px;
  }
}
@media only screen and (min-width: 768px) {
  .section-form .form-area {
    font-size: 18px;
  }
  .section-form .form-item {
    border-top: 1px solid #c3c3c3;
    border-left: 1px solid #c3c3c3;
  }
  .section-form .form-item > dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .section-form .form-title {
    width: 24%;
    border: 0;
    padding-right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .form-area > div:first-of-type .form-title {
    border-radius: 8px 0 0 0;
  }
  .form-area > div:nth-last-of-type(2) {
    border-bottom: 0;
    margin: 0;
  }
  .form-area > div:nth-last-of-type(2) .form-title {
    display: initial;
    padding-top: 16px;
  }
  .section-form .form-title .required {
    font-size: 14px;
    width: 48px;
    line-height: 24px;
  }
  .section-form .text-field {
    width: 76%;
  }
  .form-area > div:nth-of-type(-n+2) .text-field {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .text-field > div:first-of-type {
    margin: 0 32px 0 0;
  }
  .text-field .name-box > span {
    margin-right: 16px;
  }
  .section-form .form-area input[type=text],
  .section-form .form-area select,
  .text-field textarea,
  .submit-button input[type=submit] {
    font-size: 18px;
    padding: 0 15px;
  }
  .section-form .form-area input[type=text],
  .section-form .form-area select {
    height: 48px;
  }
  .error_text {
    font-size: 16px;
  }
  .text-field .name-box input[type=text] {
    width: 240px;
  }
  .text-field input[type=text].tel-num,
  .text-field input[type=text].e-mail {
    width: 480px;
  }
  .text-field input[type=text].address {
    width: 160px;
  }
  .text-field .btn-info {
    max-width: 200px;
    margin-left: 10px;
    font-size: 16px;
  }
  .text-field input[type=text].city-name,
  .text-field input[type=text].street-num,
  .text-field textarea {
    max-width: 640px;
  }
  .form-item .select-box:before {
    right: 48px;
  }
  .form-item .select-box:after {
    right: 4px;
    top: 6px;
  }
  .text-field .notes {
    display: inline-block;
    width: auto;
  }
  .text-field .hope {
    margin: 12px 0 10px 16px;
  }
  .text-field .hope:before {
    top: 2px;
  }
  .text-field input[type=checkbox]:checked + label.hope::after {
    top: 5px;
  }
  .text-field textarea {
    font-size: 18px;
    padding: 10px 15px 0;
  }
  .submit-button {
    background: #fff;
    border: 1px solid #c3c3c3;
  }
  .submit-button input[type=submit] {
    display: block;
    width: 400px;
    margin: 16px auto;
  }
}