@charset "UTF-8";
/* MEDIA QUERIES
 * ----------------------------------------------- */
/* ADDITIONAL RESET
 * ----------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

*,
*:before,
*:after {
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
  word-break: break-word;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

input,
label,
select,
button {
  line-height: inherit;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  word-break: normal;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  -webkit-appearance: none;
  font: inherit;
}

button:focus {
  outline: 0;
}

input:focus,
textarea:focus,
select:focus {
  outline: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
}

::-webkit-search-decoration {
  display: none;
}

textarea {
  overflow: auto;
  white-space: pre-line;
  resize: none;
}

/* PRINTING
 * ----------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }

  html,
  body {
    margin: 0;
  }

  @page {
    margin: 0;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
}
/* GENERAL
 * ----------------------------------------------- */
body {
  color: #000;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}
body.is-frozen {
  width: 100%;
  position: fixed;
  overflow: hidden;
}

a {
  color: #000;
  text-decoration: none;
}

.hidden {
  display: none;
}

.font-serif {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "YuMincho", "HGS明朝E", "メイリオ", "Meiryo", serif;
}

/* RESPONSIVE
 * ----------------------------------------------- */
.container {
  overflow: hidden;
}

@media print, (min-width: 768px) {
  body {
    font-size: 16px;
  }

  .container {
    min-width: 1250px;
  }

  .active-menu {
    min-width: unset;
  }

  .wrapper {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }

  .sm {
    display: none !important;
  }

  .trans {
    opacity: 1;
    transition: opacity 0.26s ease;
  }
  .trans:hover {
    opacity: 0.8;
  }
}
@media only screen and (max-width: 767.98px) {
  html {
    font-size: calc(100vw / 7.5);
  }

  body {
    font-size: 0.3rem;
  }

  .container {
    min-width: 320px;
  }

  .wrapper {
    padding-left: 0.55rem;
    padding-right: 0.55rem;
  }

  .md {
    display: none !important;
  }
}
/* PARTS
 * ----------------------------------------------- */
header a {
  display: block;
}
header .inner-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
header .button-menu {
  cursor: pointer;
  z-index: 11;
}
header .button-menu span {
  margin: auto;
  background: #71c7d1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
header .is-active {
  background-color: #fff;
}
header .button-menu,
header .link-privacy a,
header .contact-time,
header .contact-text {
  position: relative;
}
header .block-navigation {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow-y: auto;
  display: none;
  background-color: #fff;
}
header .link-navigation {
  display: block;
}
header .list-navigation {
  background: #71c7d1;
}
header .list-navigation li {
  border-bottom: solid 1px #fff;
}
header .content-navigation {
  text-align: center;
}
header .link-privacy a {
  display: inline-block;
}
header .link-privacy a:after {
  position: absolute;
  content: "";
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  opacity: 1;
  transition: opacity 0.3s;
}
header .link-privacy a:hover:after {
  opacity: 0;
}
header .link-instagram a {
  display: inline-block;
}

@media print, (min-width: 768px) {
  header {
    border-bottom: solid 14px #71c7d1;
  }
  header .inner-wrapper {
    max-width: 1245px;
    margin: 0 auto;
    padding: 15px 28px 13px 0;
  }
  .is-ipad header .inner-wrapper {
    padding-left: 28px;
  }
  header .button-menu {
    width: 34px;
  }
  header .button-menu span {
    width: 34px;
    height: 1px;
  }
  header .button-menu span:nth-child(1) {
    -ms-transform: translateY(-9px) rotate(0);
        transform: translateY(-9px) rotate(0);
  }
  header .button-menu span:nth-child(3) {
    -ms-transform: translateY(10px) rotate(0);
        transform: translateY(10px) rotate(0);
  }
  header .is-active {
    width: 50px;
    top: -2px;
    right: -7px;
  }
  header .is-active span {
    width: 25px;
  }
  header .is-active span:nth-child(1) {
    -ms-transform: translateY(0) rotate(45deg);
        transform: translateY(0) rotate(45deg);
  }
  header .is-active span:nth-child(2) {
    opacity: 0;
  }
  header .is-active span:nth-child(3) {
    -ms-transform: translateY(0) rotate(-45deg);
        transform: translateY(0) rotate(-45deg);
  }
  header .block-navigation {
    padding-bottom: 54px;
  }
  header .header-navigation {
    margin: 81px 0 48px;
  }
  header .list-navigation a {
    padding: 49px 142px;
  }
  header .list-navigation .link-navigation {
    width: 998px;
    margin: 0 auto;
  }
  header .content-navigation {
    margin-bottom: 49px;
  }
  header .common-contact {
    margin: 0 auto;
  }
  header .link-instagram {
    margin-bottom: 36px;
  }
  header .link-privacy {
    margin-bottom: 21px;
  }
  header .link-privacy a {
    font-size: 14px;
  }
  header .contact-time {
    padding-left: 97px;
  }
  header .contact-time:before {
    width: 25px;
    height: 37px;
    left: 48px;
    top: -10px;
  }
  header .contact-text {
    padding-left: 53px;
  }
  header .contact-text:before {
    left: 153px;
    top: 18px;
    width: 39px;
    height: 34px;
  }
  header .copy-right {
    font-size: 10px;
    -ms-transform: scale(0.9);
        transform: scale(0.9);
    -ms-transform-origin: left center;
        transform-origin: left center;
  }
  header .navigation-wrapper {
    min-width: 1250px;
  }
	header .btn_f_partner {
		width:300px;
		margin:0 auto 10px;
	}
}
@media only screen and (max-width: 767.98px) {
  header {
    border-bottom: solid 0.25rem #71c7d1;
  }
  header .logo-image {
    width: 3.67rem;
  }
  header .logo-image img {
    width: 100%;
  }
  header .block-navigation {
    padding-top: 1.26rem;
  }
  header .button-menu {
    width: 0.61rem;
  }
  header .button-menu span {
    height: 0.02rem;
  }
  header .button-menu span:nth-child(1) {
    -ms-transform: translateY(-0.19rem) rotate(0);
        transform: translateY(-0.19rem) rotate(0);
  }
  header .button-menu span:nth-child(2) {
    -ms-transform: translateY(-0.02rem) rotate(0);
        transform: translateY(-0.02rem) rotate(0);
  }
  header .button-menu span:nth-child(3) {
    -ms-transform: translateY(0.15rem) rotate(0);
        transform: translateY(0.15rem) rotate(0);
  }
  header .is-active {
    width: 1rem;
    top: -0.08rem;
    right: -0.19rem;
  }
  header .is-active span {
    height: 0.03rem;
    width: 0.61rem;
  }
  header .is-active span:nth-child(1) {
    -ms-transform: translateY(0) rotate(45deg);
        transform: translateY(0) rotate(45deg);
  }
  header .is-active span:nth-child(2) {
    opacity: 0;
  }
  header .is-active span:nth-child(3) {
    -ms-transform: translateY(0) rotate(-45deg);
        transform: translateY(0) rotate(-45deg);
  }
  header .header-navigation {
    margin-bottom: 0.83rem;
  }
  header .navigation-logo {
    display: inline-block;
    margin-bottom: 0.73rem;
    width: 3.22rem;
  }
  header .navigation-logo img {
    width: 100%;
  }
  header .inner-wrapper {
    padding: 0.24rem 0.46rem 0.2rem 0.32rem;
  }
  header .item-navigation a {
    padding: 0.52rem 0.43rem;
  }
  header .item-navigation:nth-child(1) img {
    width: 2.42rem;
  }
  header .item-navigation:nth-child(2) img {
    width: 4.84rem;
  }
  header .item-navigation:nth-child(3) img {
    width: 4.03rem;
  }
  header .item-navigation:nth-child(4) img {
    width: 4.59rem;
  }
  header .item-navigation:nth-child(5) img {
    width: 2.55rem;
  }
  header .item-navigation:nth-child(6) img {
    width: 6.7rem;
  }
  header .item-navigation:nth-child(7) img {
    width: 3.8rem;
  }
  header .item-navigation:nth-child(8) img {
    width: 3.7rem;
  }
  header .item-navigation:nth-child(9) img {
    width: 5.5rem;
  }
  header .item-navigation:nth-child(10) img {
    width: 1.88rem;
  }
  /*header .item-navigation:nth-child(11) img {
    width: 3.3rem;
  }*/
  header .item-navigation:nth-child(11) img {
    width: 2.9rem;
  }
  header .item-navigation:nth-child(12) img {
    width: 4.5rem;
  }
  header .item-navigation img {
    width: 100%;
  }
  header .address {
    margin-bottom: 0.32rem;
  }
  header .content-navigation .google-map {
    margin-bottom: 0.92rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    border: solid 1px #000;
  }
  header .contact-time {
    margin-bottom: 0.55rem;
  }
  header .link-instagram {
    margin-bottom: 0.79rem;
  }
  header .link-instagram a {
    margin: 0 auto;
  }
  header .image-left {
    width: 0.48rem;
  }
  header .image-right {
    width: 0.75rem;
  }
	header .btn_f_partner {
		width:90%;
		margin:0 auto 10px;
	}
}
footer .footer-logo,
footer .list-navigation a {
  display: inline-block;
}
footer .google-map {
  border: solid 1px #333;
}
footer .google-map,
footer .footer-number {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
footer .footer-number {
  background-color: #71c7d1;
  color: #fff;
  position: relative;
}
footer .footer-number:before {
  position: absolute;
  content: "";
  background: url(../img/common/footer_icon_01.svg) left center/100% auto no-repeat;
}
footer .footer-time,
footer .content-bottom {
  text-align: center;
}
footer .link-instagram a,
footer .link-privacy a {
  display: inline-block;
}
footer .link-privacy a {
  position: relative;
}
footer .link-privacy a:after {
  position: absolute;
  content: "";
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  opacity: 1;
  transition: opacity 0.3s;
}
footer .link-privacy a:hover:after {
  opacity: 0;
}
footer .button-to-top {
  position: fixed;
  z-index: 100;
  display: none;
}
footer .button-to-top .to-top-arrow,
footer .button-to-top .common-contact {
  position: absolute;
}
footer .button-to-top .to-top-arrow {
  cursor: pointer;
}
footer .button-to-top .icon-arrow {
  display: block;
  background: right center/contain no-repeat;
}

@media print, (min-width: 768px) {
  footer {
    border-top: solid 20px #f2f2f2;
    padding-top: 57px;
  }
  footer .content-top {
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 48px;
    padding-left: 69px;
    padding-right: 25px;
  }
  footer .footer-left {
    margin-right: 133px;
  }
  footer .footer-middle {
    margin-top: 5px;
    width: 280px;
    margin-right: 61px;
  }
  footer .list-navigation li {
    margin-bottom: 8px;
  }
  footer .address {
    line-height: 1.875;
    margin-bottom: 11px;
  }
  footer .google-map {
    font-size: 13px;
    width: 117px;
    height: 28px;
    margin-bottom: 43px;
  }
  footer .footer-number {
    pointer-events: none;
    font-size: 20px;
    margin-bottom: 14px;
    padding-top: 4px;
    padding-left: 12px;
    width: 253px;
    height: 54px;
    border-radius: 5px;
  }
  footer .footer-number:before {
    top: 14px;
    left: 25px;
    width: 14px;
    height: 28px;
  }
  footer .link-instagram {
    margin-bottom: 36px;
  }
  footer .link-instagram a {
    width: 44px;
  }
  footer .link-privacy {
    margin-bottom: 21px;
  }
  footer .link-privacy a {
    font-size: 14px;
  }
  footer .footer-time {
    font-size: 13px;
  }
  footer .copy-right {
    font-size: 9.36px;
    -ms-transform: scale(0.9);
        transform: scale(0.9);
    -ms-transform-origin: left center;
        transform-origin: left center;
  }
  footer .content-bottom {
    padding-bottom: 170px;
  }
  footer .button-to-top {
    width: 100%;
    left: 0;
    bottom: 52px;
  }
  footer .button-to-top .to-top-arrow {
    bottom: 89px;
    right: 130px;
  }
  footer .button-to-top .icon-arrow {
    background-image: url(../img/common/button_to_top.svg);
    width: 60px;
    height: 60px;
  }
  footer .common-contact {
    bottom: -7px;
    left: 50%;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
  }
}
@media only screen and (max-width: 767.98px) {
  footer {
    padding-top: 0.73rem;
    border-top: solid 0.24rem #f2f2f2;
  }
  footer .wrapper {
    text-align: center;
  }
  footer .footer-logo {
    width: 3.21rem;
  }
  footer .footer-logo img {
    width: 100%;
  }
  footer .footer-left {
    margin-bottom: 0.83rem;
  }
  footer .address {
    margin-bottom: 0.58rem;
  }
  footer .footer-right .google-map {
    margin-bottom: 0.89rem;
  }
  footer .footer-number {
    font-size: 0.46rem;
    width: 5.6rem;
    margin: 0 auto 0.28rem;
    padding-left: 0.4rem;
    min-height: 1.2rem;
    border-radius: 0.1rem;
  }
  footer .footer-number:before {
    background-image: url(../img/common/sp/footer_icon_01.svg);
    width: 0.31rem;
    height: 0.58rem;
    left: 0.57rem;
    top: 0.32rem;
  }
  footer .footer-time {
    margin-bottom: 0.73rem;
  }
  footer .link-instagram {
    margin-bottom: 0.65rem;
  }
  footer .link-privacy {
    margin-bottom: 0.51rem;
  }
  footer .copy-right {
    font-size: 0.2rem;
  }
  footer .button-to-top,
  footer .common-contact {
    width: 100%;
  }
  footer .common-contact {
    bottom: 0;
  }
  footer .image-left {
    width: 0.48rem;
  }
  footer .image-right {
    width: 0.75rem;
  }
  footer .content-bottom {
    padding-bottom: 2.8rem;
  }
  footer .button-to-top {
    bottom: 0;
    left: 0;
  }
  footer .button-to-top .icon-arrow {
    background-image: url(../img/common/sp/button_to_top.svg);
    width: 0.95rem;
    height: 0.95rem;
  }
  footer .button-to-top .to-top-arrow {
    right: 0.27rem;
    bottom: 1.65rem;
  }
}
.btn_f_partner {
	background:#71c7d1;
	width:100%;
	padding:20px 10px;
	text-align:center;
	color:#fff;
	display: block;
	border-radius: 5px;
	margin-bottom:10px;
	font-size: 15px;
}
.btn_f_partner:before {
	content:''; background:url('../img/common/button_info.svg')no-repeat;
	width: 18px;
	height: 18px;
	margin: 0 5px -2px 0;
	display: inline-block;
	background-size: 100%;
}
@media only screen and (max-width: 767.98px) {
	.btn_f_partner {
		font-size: 16px;
	}
}

/* MODULES
 * ----------------------------------------------- */
.block-common .common-contact {
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}
.block-common .contact-left {
  background-color: #71c7d1;
}
.block-common .contact-right {
  background-color: #71c7d1;
}
.block-common .contact-left,
.block-common .contact-right {
  width: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.block-common .contact-left span,
.block-common .contact-right span {
  color: #fff;
}

@media print, (min-width: 768px) {
  .block-common .common-contact {
    width: 998px;
  }
  .block-common .contact-left,
  .block-common .contact-right {
    min-height: 76px;
  }
  .block-common .contact-right a {
    width: 100%;
    height: 100%;
  }
  .block-common .contact-left span,
  .block-common .contact-right span,
  .block-common .image-left {
    padding-top: 5px;
  }
  .block-common .contact-right span {
    padding-left: 23px;
  }
  .block-common .contact-left {
    pointer-events: none;
    padding-left: 48px;
  }
  .block-common .contact-left span {
    padding-left: 24px;
  }
  .block-common .image-right {
    margin-left: -5px;
  }
}
@media only screen and (max-width: 767.98px) {
  .block-common .address {
    line-height: 1.37;
  }
  .block-common .google-map {
    width: 2.8rem;
    min-height: 0.68rem;
    margin: 0 auto;
  }
  .block-common .link-instagram a {
    width: 0.93rem;
  }
  .block-common .link-instagram img {
    width: 100%;
  }
  .block-common .common-contact {
    height: 1.45rem;
  }
  .block-common .contact-left img,
  .block-common .contact-right img {
    width: 100%;
  }
}
/* COMMON BREADCRUMB
 * ----------------------------------------------- */
@media print, (min-width: 768px) {
  .breadcrumb-list {
    display: -ms-flexbox;
    display: flex;
  }
  .breadcrumb-list > li {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .breadcrumb-list > li:not(:last-child)::after {
    content: ">";
    position: relative;
  }

  .breadcrumb {
    max-width: 1280px;
    margin: 0 auto 30px;
  }

  .breadcrumb-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 18px 23px;
  }
  .breadcrumb-list > li {
    font-size: 15px;
  }
  .breadcrumb-list > li:not(:last-child) {
    margin-right: 5px;
  }
  .breadcrumb-list > li:not(:last-child)::after {
    margin-left: 5px;
    bottom: 0;
  }
}
@media only screen and (max-width: 767.98px) {
  .breadcrumb {
    display: none;
  }
}
.common-button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin: 0 auto;
}

.is-light-pink {
  background-color: #71c7d1;
}

.is-pink {
  background-color: #71c7d1;
}

@media print, (min-width: 768px) {
  .common-button {
    width: 396px;
    min-height: 120px;
    border-radius: 5px;
  }
}
@media only screen and (max-width: 767.98px) {
  .common-button {
    width: 5.78rem;
    min-height: 1.73rem;
    border-radius: 0.08rem;
  }
}
.sub-title {
  background-color: #71c7d1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.sub-title,
.section-title-japan {
  text-align: center;
}

.section-title-japan {
  font-weight: 700;
}

@media print, (min-width: 768px) {
  .section-title {
    text-align: center;
  }

  .sub-title {
    min-height: 60px;
  }

  .section-title-japan {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-title {
    margin: 0 auto;
  }
  .section-title img {
    width: 100%;
  }

  .sub-title {
    min-height: 1.2rem;
    margin-left: -0.65rem;
    margin-right: -0.55rem;
  }

  .section-title-japan {
    font-size: 0.52rem;
    margin-bottom: 0.71rem;
  }
}
.section-about .about-text {
  text-align: justify;
}

.section-privacypolicy { margin-bottom:200px; }
.section-privacypolicy .section-title { font-size:30px; text-align:center; margin-bottom:50px; font-family:"游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", "Meiryo", serif; }
.section-privacypolicy h3 { font-size:22px; margin-bottom:20px; font-family:"游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", "Meiryo", serif; letter-spacing:0.5px; }
.section-privacypolicy p { font-size:16px; margin-bottom:50px; line-height:2; }
.section-privacypolicy ul { font-size:16px; list-style:decimal; line-height:2; margin:20px 0 50px 15px; width:900px; }
.section-privacypolicy ul li { margin:0; padding-left:5px; }
.section-privacypolicy ul.second { margin:20px 0 50px; width:100%; }
.section-privacypolicy ul.second li { margin-left:20px; }
@media only screen and (max-width: 767.98px) {
.section-privacypolicy { margin:60px auto 100px; }
.section-privacypolicy .section-title { font-size:22px; margin-bottom:30px; }
.section-privacypolicy h3 { font-size:20px; letter-spacing:0; }
.section-privacypolicy p { font-size:15px; margin-bottom:30px; line-height:1.8; }
.section-privacypolicy ul { font-size:15px; line-height:1.8; margin:10px 0 30px; width:100%; padding-left:5%; }
.section-privacypolicy ul li { margin:0; padding-left:0; }
.section-privacypolicy ul.second { margin:10px 0; width:100%; }
.section-privacypolicy ul.second li { margin-left:0; }
}



.section-common-lc {
	background: #83ccd2;
}
.section-common-lc .txt-box .area-link {
	color: #fff;
}
.section-common-lc .txt-box h4 {
	text-align:center;
	font-weight: 600;
}
.section-common-lc .txt-box .area-link {
	text-align:center;
}
@media print, (min-width: 768px) {
	.section-common-lc {
		padding: 60px 0;
		margin-top: 50px;
	}
	.section-common-lc .wrapper {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		justify-content: space-between;
	}
	.section-common-lc .main-img {
		width: 20%;
		filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, .5));
	}
	.section-common-lc .txt-box {
		width: 70%;
	}
	.section-common-lc .txt-box h3 {
		width: 80%;
		margin: 0 auto 25px;
	}
	.section-common-lc .txt-box p {
		font-size: 15px;
		line-height: 1.9;
	}
	.section-common-lc .txt-box h4 {
		margin: 30px 0;
		font-size: 25px;
	}
	.section-common-lc .txt-box .area-link img {
		width: 90%;
		margin: auto;
		filter: drop-shadow(5px 5px 8px rgba(0, 0, 0, .3));
	}
	.section-common-lc .txt-box .area-link p {
		margin-top: 40px;
	}
}
@media only screen and (max-width: 767.98px){
	.section-common-lc {
		padding: 40px 0;
		margin-top: 20px;
	}
	.section-common-lc .wrapper {
		padding-left: 0.55rem;
		padding-right: 0.55rem;
	}
	.section-common-lc .flex {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 30px;
	}
	.section-common-lc .main-img {
		width: 35%;
		filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, .5));
	}
	.section-common-lc .flex h3 {
		width: 55%;
	}
	.section-common-lc .txt-box p {
		font-size: 14px;
		line-height: 1.7;
	}
	.section-common-lc .txt-box h4 {
		margin: 30px 0;
		font-size: 20px;
	}
	.section-common-lc .txt-box .area-link img {
		filter: drop-shadow(5px 5px 8px rgba(0, 0, 0, .3));
	}
	.section-common-lc .txt-box .area-link p {
		margin-top: 30px;
		font-size: 12px;
	}
}

/*# sourceMappingURL=about.css.map */