@charset "UTF-8";
* {
  box-sizing: border-box;
  outline: none;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  word-wrap: break-word;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6666;
  color: #1c1c1c;
  position: relative;
  background: #fff;
  letter-spacing: 0.12em;
}
@media (max-width: 959px) {
  body {
    font-size: 15px;
  }
}
@media (max-width: 520px) {
  body {
    font-size: 3vw;
  }
}

h1, h2, h3, .ttl {
  font-weight: 900;
  margin: 0;
  letter-spacing: 0.1em;
}

img {
  max-width: 100%;
  height: auto;
}

img[src$=".svg"] {
  max-width: 100%;
}

/* wp用 -------------------------------------------------------*/
p {
  margin: 1em 0;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

blockquote {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 40px;
  -webkit-margin-end: 40px;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

img[class*=wp-image-],
img[class*=attachment-] {
  max-width: 100%;
  height: auto;
}

.clearfix {
  overflow: hidden;
  zoom: 1;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/*--------------------------------------------------------------*/
a {
  text-decoration: none;
  transition: 0.3s ease-in-out;
  color: #000;
}
a:hover {
  opacity: 0.8;
}
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=8);
  transition: 0.3s ease-in-out;
}

a[href^="tel:"]:hover {
  opacity: 1;
}

.is-pc {
  display: inherit;
}
@media (max-width: 810px) {
  .is-pc {
    display: none;
  }
}
@media (max-width: 520px) {
  .is-pc {
    display: none;
  }
}

.is-tab {
  display: none;
}
@media (max-width: 810px) {
  .is-tab {
    display: block;
  }
}

.is-sp {
  display: none;
}
@media (max-width: 520px) {
  .is-sp {
    display: block;
  }
}

#head_wrap {
  top: -100px;
  position: absolute;
  width: 100%;
  margin: 100px auto 0;
  line-height: 1;
  z-index: 999;
  height: 0px;
  text-decoration: none;
}
@media (max-width: 520px) {
  #head_wrap {
    position: fixed;
    top: 0;
    margin-top: 0;
  }
}
#head_wrap a {
  text-decoration: none;
}
#head_wrap .header-inner {
  display: flex;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 520px) {
  #head_wrap .header-inner {
    padding-left: 5px;
    padding-right: 5px;
  }
}
#head_wrap .logo-brand {
  margin: 0;
}
#head_wrap .logo-brand img {
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  padding: 15px;
}
@media (max-width: 680px) {
  #head_wrap .logo-brand img {
    height: 70px;
    padding: 10px;
  }
}
@media (max-width: 520px) {
  #head_wrap .logo-brand img {
    height: 54px;
    padding: 5px;
  }
}

#global-nav {
  position: absolute;
  right: 0;
  top: 0;
}
#global-nav ul {
  list-style: none;
  font-size: 14px;
  margin-right: 10px;
  display: inline-flex;
}
@media (max-width: 520px) {
  #global-nav ul {
    display: block;
    margin-right: 0px;
  }
}
#global-nav ul li {
  padding: 15px 10px;
}
#global-nav ul li:last-child {
  border-right: none;
}
@media (max-width: 520px) {
  #global-nav ul li {
    border-right: none;
  }
}
#global-nav ul li a {
  display: block;
  transition: all 0.6s ease 0s;
  box-sizing: border-box;
  font-weight: bold;
  padding: 1em 2em;
  background-color: #A99242;
  color: #fff;
  border-radius: 2em;
}
#global-nav ul li a:hover {
  opacity: 0.8;
}
#global-nav ul li a img {
  height: 28px;
}
#global-nav ul li .hd-btn-contact {
  position: relative;
}
#global-nav ul li .hd-btn-contact ._trf {
  display: block;
  transform: translateY(-0.25em);
}
#global-nav ul li .hd-btn-contact ._min {
  display: block;
  font-size: 0.75em;
  font-weight: normal;
  text-align: center;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0.5em;
}

/* Fixed */
#head_wrap.fixed {
  margin-top: 0;
  top: 0;
  position: fixed;
  height: 72px;
  transition: top 0.65s ease-out;
  -webkit-transition: top 0.65s ease-in;
  -moz-transition: top 0.65s ease-in;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 520px) {
  #head_wrap.fixed {
    padding-top: 0;
  }
}
#head_wrap.fixed .logo {
  font-size: 36px;
  color: #333;
}

/* Toggle Button */
#nav-toggle {
  display: none;
  position: absolute;
  right: 12px;
  top: 14px;
  width: 34px;
  height: 36px;
  cursor: pointer;
  z-index: 101;
}
#nav-toggle div {
  position: relative;
}

@media (max-width: 520px) {
  #head_wrap {
    /* Fixed reset */
  }
  #head_wrap .fixed {
    padding-top: 0;
    background: transparent;
  }
  #mobile-head {
    width: 100%;
    height: 56px;
    z-index: 999;
    position: relative;
  }
  #head_wrap.fixed .logo,
  #head_wrap .logo {
    position: absolute;
    left: 13px;
    top: 13px;
    color: #333;
    font-size: 26px;
  }
  #global-nav {
    position: absolute;
    /* 開いてないときは画面外に配置 */
    top: -500px;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    text-align: center;
    transition: 0.5s ease-in-out;
  }
  #global-nav ul {
    list-style: none;
    position: static;
    right: 0;
    bottom: 0;
    font-size: 14px;
    margin-top: 20px;
  }
  #global-nav ul li {
    float: none;
    position: static;
  }
  #head_wrap #global-nav ul li a,
  #head_wrap.fixed #global-nav ul li a {
    width: 100%;
    display: block;
    padding: 5px 0;
  }
  #nav-toggle {
    display: block;
  }
  /* #nav-toggle 切り替えアニメーション */
  #nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #666;
    left: 0;
    transition: 0.35s ease-in-out;
  }
  #nav-toggle span:nth-child(1) {
    top: 0;
  }
  #nav-toggle span:nth-child(2) {
    top: 11px;
  }
  #nav-toggle span:nth-child(3) {
    top: 22px;
  }
  .open #nav-toggle span:nth-child(1) {
    top: 11px;
    transform: rotate(315deg);
  }
  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 11px;
    transform: rotate(-315deg);
  }
  /* #global-nav スライドアニメーション */
  .open #global-nav {
    /* #global-nav top + #mobile-head height */
    transform: translateY(556px);
  }
}
section {
  padding: 5vw 0;
}
@media (max-width: 680px) {
  section {
    padding: 60px 0;
  }
}
@media (max-width: 520px) {
  section {
    padding: 40px 0;
  }
}

.content {
  max-width: 100%;
  width: 1130px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 520px) {
  .content {
    padding: 0 10px;
  }
}

.ttl {
  margin-bottom: 2em;
}

.txt {
  line-height: 2.18;
}

.tx-link {
  color: #94204D;
  text-decoration: underline;
}

.ttl.ttl_68 {
  font-size: 68px;
}
@media (max-width: 810px) {
  .ttl.ttl_68 {
    font-size: 48px;
  }
}
@media (max-width: 680px) {
  .ttl.ttl_68 {
    font-size: 24px;
  }
}
@media (max-width: 520px) {
  .ttl.ttl_68 {
    font-size: 20px;
  }
}

.ttl.ttl_48 {
  font-size: 48px;
}
@media (max-width: 810px) {
  .ttl.ttl_48 {
    font-size: 36px;
  }
}
@media (max-width: 680px) {
  .ttl.ttl_48 {
    font-size: 24px;
  }
}
@media (max-width: 520px) {
  .ttl.ttl_48 {
    font-size: 20px;
  }
}

.ttl.ttl_39 {
  font-size: 39px;
}
@media (max-width: 810px) {
  .ttl.ttl_39 {
    font-size: 33px;
  }
}
@media (max-width: 680px) {
  .ttl.ttl_39 {
    font-size: 24px;
  }
}
@media (max-width: 520px) {
  .ttl.ttl_39 {
    font-size: 20px;
  }
}

.ttl_38 {
  font-size: 38px;
}
@media (max-width: 810px) {
  .ttl_38 {
    font-size: 30px;
  }
}
@media (max-width: 680px) {
  .ttl_38 {
    font-size: 24px;
  }
}
@media (max-width: 520px) {
  .ttl_38 {
    font-size: 20px;
  }
}

.ttl.ttl_36 {
  font-size: 36px;
}
@media (max-width: 810px) {
  .ttl.ttl_36 {
    font-size: 30px;
  }
}
@media (max-width: 680px) {
  .ttl.ttl_36 {
    font-size: 24px;
  }
}
@media (max-width: 520px) {
  .ttl.ttl_36 {
    font-size: 20px;
  }
}

.ttl.ttl_34,
.sub-ttl.ttl_34 {
  font-size: 34px;
}
@media (max-width: 810px) {
  .ttl.ttl_34,
  .sub-ttl.ttl_34 {
    font-size: 30px;
  }
}
@media (max-width: 680px) {
  .ttl.ttl_34,
  .sub-ttl.ttl_34 {
    font-size: 24px;
  }
}
@media (max-width: 520px) {
  .ttl.ttl_34,
  .sub-ttl.ttl_34 {
    font-size: 20px;
  }
}

.ttl.ttl_32,
.sub-ttl.ttl_32 {
  font-size: 32px;
}
@media (max-width: 810px) {
  .ttl.ttl_32,
  .sub-ttl.ttl_32 {
    font-size: 28px;
  }
}
@media (max-width: 680px) {
  .ttl.ttl_32,
  .sub-ttl.ttl_32 {
    font-size: 24px;
  }
}
@media (max-width: 520px) {
  .ttl.ttl_32,
  .sub-ttl.ttl_32 {
    font-size: 18px;
  }
}

.ttl.ttl_30 {
  font-size: 30px;
}
@media (max-width: 810px) {
  .ttl.ttl_30 {
    font-size: 26px;
  }
}
@media (max-width: 680px) {
  .ttl.ttl_30 {
    font-size: 22px;
  }
}
@media (max-width: 520px) {
  .ttl.ttl_30 {
    font-size: 18px;
  }
}

.ttl.ttl_28 {
  font-size: 28px;
}
@media (max-width: 680px) {
  .ttl.ttl_28 {
    font-size: 4.2vw;
  }
}

.ttl_25 {
  font-size: 25px;
}
@media (max-width: 810px) {
  .ttl_25 {
    font-size: 20px;
  }
}
@media (max-width: 680px) {
  .ttl_25 {
    font-size: 15px;
  }
}
@media (max-width: 520px) {
  .ttl_25 {
    font-size: 13px;
  }
}

.ttl.ttl_23 {
  font-size: 23px;
}
@media (max-width: 680px) {
  .ttl.ttl_23 {
    font-size: 3.8vw;
  }
}

.ttl.ttl_21 {
  font-size: 21px;
}
@media (max-width: 680px) {
  .ttl.ttl_21 {
    font-size: 3.6vw;
  }
}
@media (max-width: 520px) {
  .ttl.ttl_21 {
    font-size: 4.2vw;
  }
}

.l-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
}
@media (max-width: 959px) {
  .l-row {
    margin-left: -30px;
    margin-right: -30px;
  }
}
.l-row .l-col {
  padding-left: 30px;
  padding-right: 30px;
  width: 50%;
  margin: 30px 0;
}
@media (max-width: 959px) {
  .l-row .l-col {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 680px) {
  .l-row .l-col {
    width: 100%;
    margin: 15px 0;
  }
}
.l-row .l-col .l-col-inner {
  overflow: hidden;
}

.l-row_3c {
  margin-left: -30px;
  margin-right: -30px;
}
@media (max-width: 810px) {
  .l-row_3c {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.l-row_3c .l-col {
  width: 33.333%;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 810px) {
  .l-row_3c .l-col {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 680px) {
  .l-row_3c .l-col {
    width: 100%;
  }
}

.l-row_4c {
  margin-left: -30px;
  margin-right: -30px;
}
.l-row_4c .l-col {
  width: 25%;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 680px) {
  .l-row_4c .l-col {
    width: 100%;
  }
}

.cnt {
  text-align: center;
}

.md-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
  z-index: 9999;
}

.md-contents {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 1000px;
  max-width: 80%;
  height: auto;
  overflow: hidden;
  transform: translate(-50%, -50%);
  z-index: 10000;
}
@media (max-width: 520px) {
  .md-contents {
    max-width: 96%;
    max-height: 85%;
    overflow-y: scroll;
  }
}
.md-contents .md-inner {
  padding: 60px;
  background: #fff;
  height: auto;
  text-align: left;
}
@media (max-width: 520px) {
  .md-contents .md-inner {
    padding: 30px;
  }
}
@media (max-width: 810px) {
  .md-contents .md-inner .ttl {
    font-size: 22px;
    line-height: 1.2;
    padding-right: 0.5em;
  }
}
.md-contents .md-xmark {
  position: absolute;
  top: 34px;
  right: 40px;
  width: 25px;
  height: 22px;
  z-index: 9999;
  cursor: pointer;
}
@media (max-width: 520px) {
  .md-contents .md-xmark {
    top: 18px;
    right: 15px;
  }
}
.md-contents .md-xmark span {
  height: auto;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
}
.md-contents .md-xmark span:nth-of-type(1) {
  top: 0;
  transform: translateY(10px) rotate(-45deg);
}
.md-contents .md-xmark span:nth-of-type(2) {
  bottom: 0;
  transform: translateY(-10px) rotate(45deg);
}
.md-contents a {
  color: #00BBF9;
  text-decoration: underline;
}

.grad-wrap {
  padding-bottom: 2em;
  position: relative;
}

.grad-btn {
  position: absolute;
  bottom: -5em;
  right: 0;
  line-height: 1.2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  background-color: #94204D;
  color: #fff;
}
@media (max-width: 520px) {
  .grad-btn {
    right: 2em;
    height: 70px;
    width: 70px;
  }
}

.grad-item {
  position: relative;
  overflow: hidden;
  height: 270px; /*隠した状態の高さ*/
  transition: 0.5s;
}
.grad-item::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px; /*グラデーションで隠す高さ*/
  /* background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%); */
  /* background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%); */
}

/*チェックボックスは常に非表示*/
.grad-trigger {
  display: none;
}

/*チェックされていたら、文言を変更する*/
.grad-btn .disp-2 {
  display: none;
}

.grad-trigger:checked ~ .grad-btn .disp-1 {
  display: none;
}

.grad-trigger:checked ~ .grad-btn .disp-2 {
  display: block;
}

/*チェックされていたら、高さを戻す*/
.grad-trigger:checked ~ .grad-item {
  height: auto;
  visibility: visible;
}

/*チェックされていたら、grad-itemのbeforeを非表示にする*/
.grad-trigger:checked ~ .grad-item::before {
  display: none;
}

/* スクロールCSS */
.fade-in {
  opacity: 0;
  transition-duration: 800ms;
  transition-property: opacity, transform;
}

@media all and (-ms-high-contrast: none) {
  .fade-in {
    opacity: 1;
  }
}
.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.footer {
  padding: 60px 0 30px;
  background-color: #2c2925;
  color: #fff;
}
@media (max-width: 680px) {
  .footer {
    padding: 35px 0 30px;
  }
}
.footer p {
  text-align: center;
}
.footer a {
  color: #fff;
}
@media (max-width: 520px) {
  .footer .tx-copyright {
    font-size: 2.6vw;
  }
}/*# sourceMappingURL=sun-common.css.map */