@charset "UTF-8";
/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
body {
  font-size: 16px;
  color: #00243F;
  font-family: "Nunito", sans-serif;
  line-height: 1;
  background: #fff;
  padding-top: 80px;
  background: #FFFDF3;
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 65px;
    font-size: 14px;
  }
}

#menu {
  position: relative;
  top: -80px;
}
@media screen and (max-width: 767px) {
  #menu {
    top: -65px;
  }
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .header-inner {
    padding: 0 20px;
  }

}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .footer-inner {
    padding: 0 20px;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  font-family: "Nunito", sans-serif;
}

::-webkit-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-moz-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

:-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::placeholder {
  color: rgba(62, 62, 62, 0.5);
}

.header {
  height: 80px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 400;
}
@media screen and (max-width: 767px) {
  .header {
    height: 80px;
    background: #00243F;
  }
}
.header .header-inner {
  position: relative;
  height: 80px;
}
.header .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .logo {
  max-width: 68px;
  margin-right: auto;
  position: absolute;
  top: 6px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .header .logo {
    position: initial;
    max-width: 65px;
    margin-top: 7.5px;
  }
}
.header .logo a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .logo a:hover {
  opacity: 0.6;
}
.header .right {
  width: 100%;
}
.header .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header .right ul li {
  font-size: 16px;
  font-weight: 700;
  margin-right: 30px;
  padding: 32px 0;
}
.header .right ul li:last-child {
  margin-right: 0;
}
.header .right ul li a {
  color: #00243F;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .right ul li a:hover {
  opacity: 0.6;
}

.drawer-icon {
  position: fixed;
  top: 30.5px;
  right: 20px;
  z-index: 300;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  z-index: 500;
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-active .drawer-icon-bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bars {
  width: 25px;
  height: 16px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 25px;
  height: 1px;
  background: #fff;
  top: 0;
  left: 0;
}

.drawer-icon-bar1 {
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bar2 {
  top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bar3 {
  top: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #00243F;
  z-index: 250;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  max-width: 250px;
}
.drawer-content.is-active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.drawer-icon-nav {
  text-align: center;
  position: absolute;
  top: 65px;
  left: 0%;
  width: 100%;
}
.drawer-icon-nav ul li a {
  display: block;
  color: #00243F;
  color: #fff;
  padding: 20px 10px;
  border-bottom: 1px solid #fff;
  font-weight: 700;
}
.drawer-icon-nav .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  margin-top: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 170px;
}
.drawer-icon-nav .sns .item {
  width: 40px;
}

.drawer-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(62, 62, 62, 0.2);
  z-index: 220;
  display: none;
}
.drawer-mask.is-active {
  display: block;
}

.footer {
  background: #00243F;
  padding: 40px 0 80px;
}
.footer .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  margin-bottom: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 170px;
}
.footer .sns .item {
  width: 40px;
}
.footer .sns .item a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .sns .item a:hover {
  opacity: 0.6;
}
.footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer ul li {
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .footer ul li {
    margin-right: 0;
    width: 50%;
    text-align: center;
    margin: 10px 0;
  }
}
.footer ul li:last-child {
  margin-right: 0;
}
.footer ul li a {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  .footer ul li a {
    font-size: 12px;
  }
}
.footer ul li a:hover {
  opacity: 0.6;
}

.copyright {
  text-align: center;
  font-size: 14px;
  padding: 20px 0;
  line-height: 1;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .copyright {
    font-size: 10px;
    padding-bottom: 40px;
    padding: 10px 0;
  }
}

.section {
  padding: 100px 0 120px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 40px 0 50px;
  }
}

.section-title {
  margin-bottom: 40px;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
}
.section-title .section-icon {
  width: 27px;
  margin: 0 auto 5px;
}
@media screen and (max-width: 767px) {
  .section-title {
    margin-bottom: 20px;
    font-size: 22px;
  }
}

.mv-swiper {
  overflow: hidden;
  position: relative;
  background: #fff;
}

.mv-swiper .swiper-slide {
  border-radius: 20px;
  overflow: hidden;
}

.mv-swiper .swiper-slide img {
  width: 100%;
  display: block;
}

/* 矢印 */
.mv-prev,
.mv-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mv-prev:hover,
.mv-next:hover {
  opacity: 0.6;
}

.swiper-slide a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.swiper-slide a:hover {
  opacity: 0.6;
}

.mv-prev {
  left: calc(50% - 35vw);
}

.mv-next {
  right: calc(50% - 35vw);
}

.mv-prev img,
.mv-next img {
  width: 100%;
  display: block;
}

@media screen and (max-width: 767px) {
  .mv-prev,
  .mv-next {
    width: 28px;
    height: 28px;
  }
  .mv-prev {
    left: 5px;
  }
  .mv-next {
    right: 5px;
  }
}
.menu-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.menu-ul li .img {
  margin-bottom: 20px;
}
.menu-ul li a {
  color: #00243F;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.menu-ul li a:hover {
  color: #E5554F;
}
.menu-ul li a:active {
  color: #E5554F;
}
@media screen and (min-width: 768px) {
  .menu-ul li {
    width: calc(33.333% - 20px);
    margin-right: 30px;
  }
  .menu-ul li:nth-child(3n) {
    margin-right: 0;
  }
  .menu-ul li:nth-child(n+4) {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .menu-ul li {
    width: calc(50% - 10px);
    margin-right: 20px;
  }
  .menu-ul li:nth-child(2n) {
    margin-right: 0;
  }
  .menu-ul li:nth-child(n+3) {
    margin-top: 30px;
  }
}
.menu-ul li h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .menu-ul li h3 {
    font-size: 16px;
  }
}

.section-btn a {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  background: #E5554F;
  color: #fff;
  border-radius: 40px;
  padding: 20px 60px 19px 30px;
  border: 1px solid #E5554F;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  line-height: 1;
  transition: 0.3s;
}
.section-btn a:hover {
  background: #fff;
  color: #E5554F;
}
.section-btn a:hover::before {
  background: #E5554F;
}
.section-btn a:hover::after {
  border-left: 1px solid #E5554F;
  border-bottom: 1px solid #E5554F;
}
.section-btn a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  width: 12px;
  height: 1px;
  background: #fff;
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .section-btn a::before {
    right: 15px;
  }
}
.section-btn a::after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
  right: 20px;
  width: 12px;
  width: 6px;
  height: 6px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  content: "";
}
@media screen and (max-width: 767px) {
  .section-btn a::after {
    right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .section-btn a {
    font-size: 14px;
    padding: 15px 40px 15px 20px;
  }
}

.top1 {
  position: relative;
}
.top1 .inner {
  position: relative;
  z-index: 2;
}
.top1 .bg1 {
  position: absolute;
  width: 25%;
  top: 7%;
  right: 2%;
}
@media screen and (max-width: 767px) {
  .top1 .bg1 {
    width: 30%;
    right: -2%;
  }
}
.top1 .bg2 {
  position: absolute;
  width: 25%;
  top: 30%;
  left: -2%;
}
@media screen and (max-width: 767px) {
  .top1 .bg2 {
    width: 30%;
    top: 35%;
  }
}
.top1 .bg3 {
  position: absolute;
  width: 25%;
  top: 50%;
  right: -2%;
}
@media screen and (max-width: 767px) {
  .top1 .bg3 {
    width: 30%;
  }
}
.top1 .bg4 {
  position: absolute;
  width: 25%;
  top: 65%;
  left: -2%;
}
@media screen and (max-width: 767px) {
  .top1 .bg4 {
    width: 30%;
  }
}
.top1 .bg5 {
  position: absolute;
  width: 25%;
  right: 5%;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .top1 .bg5 {
    width: 30%;
    right: -2%;
  }
}
.top1 .btn {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top1 .btn {
    margin-top: 40px;
  }
}

.top2 .bg1 {
  position: absolute;
  width: 25%;
  top: 55%;
  left: 2%;
}
@media screen and (max-width: 767px) {
  .top2 .bg1 {
    width: 30%;
    left: -2%;
  }
}
.top2 {
  padding-top: 0;
  position: relative;
}
.top2 .inner {
  position: relative;
  z-index: 2;
}
.top2 .btn {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top2 .btn {
    margin-top: 40px;
  }
}

.common-mv {
  padding: 120px 0;
  background: #D6D6D6;
}
@media screen and (max-width: 767px) {
  .common-mv {
    padding: 50px 20px;
  }
}
.common-mv h1 {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .common-mv h1 {
    font-size: 22px;
  }
}

.totop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 10;
}

.totop.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.totop img {
  display: block;
  width: 70px;
}

@media (max-width: 767px) {
  .totop {
    right: 10px;
    bottom: 10px;
  }
  .totop img {
    width: 45px;
  }
}
.bread {
  padding: 20px 0;
}
.bread img {
  vertical-align: middle;
}
.bread a,
.bread span {
  font-size: 15px;
  line-height: 1;
  display: block;
  color: #00243F;
}
@media screen and (max-width: 767px) {
  .bread a,
  .bread span {
    font-size: 12px;
  }
}
.bread .bread-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bread .bread-flex a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bread .bread-flex a:hover {
  opacity: 0.6;
}
.bread .bread-flex .home {
  display: inline-block;
  width: 13px;
  margin-right: 4px;
  position: relative;
  top: -2.5px;
}
@media screen and (max-width: 767px) {
  .bread .bread-flex .home {
    width: 11px;
    margin-right: 2px;
    top: -2px;
  }
}
.bread .center {
  width: 5px;
  margin: 0 10px;
  position: relative;
  top: -1px;
}
@media screen and (max-width: 767px) {
  .bread .center {
    margin: 0 5px;
    top: -1px;
    width: 3px;
  }
}

@media screen and (max-width: 767px) {
  .shop .shop-table {
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .shop .inner {
    padding-right: 0;
  }
}
.shop .table-scroll {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.shop .shop-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  color: #002744;
  font-weight: 700;
}
.shop .shop-table th {
  background: #8DC8E8;
  font-size: 20px;
  text-align: left;
  padding: 22px 40px;
  border: 1px solid #E5EBEE;
}
.shop .shop-table td {
  font-size: 16px;
  line-height: 1.8;
  padding: 22px 40px;
  border: 1px solid #E5EBEE;
  vertical-align: top;
}
.shop .map-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 20px;
  background: #E5554F;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
}
.shop .map-btn::before {
  content: "📍";
  margin-right: 6px;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.shop-table {
  width: 100%;
  min-width: 900px;
}

.scroll-hint-icon {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.scroll-hint-text {
  display: none;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.shop-table {
  width: 100%;
  min-width: 900px;
}

.scroll-hint-text {
  display: none !important;
}

.scroll-hint-text {
  display: none !important;
}

.scroll-hint-icon-wrap {
  z-index: 999 !important;
}

.scroll-hint-icon {
  opacity: 1 !important;
}

.shop .shop-table th {
  background: #8DC8E8;
  font-size: 18px;
  text-align: left;
  padding: 15px 30px;
  border: 1px solid #E5EBEE;
}

.shop .shop-table td {
  padding: 15px 30px;
  background: #fff;
}

.shop .shop-table th:nth-child(1) {
  width: 20%;
}
.shop .shop-table th:nth-child(2) {
  width: 42%;
}
.shop .shop-table th:nth-child(3) {
  width: 38%;
}

.shop .map-btn::before {
  position: absolute;
  background: url(../img/map.png) no-repeat center center/cover;
  content: "";
  width: 11px;
  height: 15px;
  display: none;
}

.shop .icon {
  width: 12px;
  display: inline-block;
}
.shop .flex1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shop .flex1 .icon {
  position: relative;
  top: -2px;
  margin-right: 5px;
}
.shop .flex1 .icon img {
  vertical-align: middle;
}
.shop .flex1 .text {
  font-weight: 600;
}

.shop .map-btn {
  padding-top: 4px;
  padding-bottom: 4px;
  border: 1px solid #E5554F;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.shop .map-btn:hover {
  opacity: 0.6;
}

@media screen and (max-width: 767px) {
  .shop .shop-table th {
    padding: 10px 20px;
    font-size: 14px;
  }
  .shop .shop-table td {
    padding: 10px 20px;
    font-size: 14px;
  }
}
.footer {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .footer {
    margin-top: 50px;
  }
  .shop .shop-table th {
    font-size: 16px;
  }
  .shop .flex1 .text {
    font-size: 14px;
  }
}
.company,
.privacy,
.menu1,
.quality {
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .company,
  .privacy,
  .menu1,
  .quality {
    padding-top: 30px;
  }
}

.quality .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .quality .flex {
    display: block;
  }
}
.quality .flex .left {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .quality .flex .left {
    width: 100%;
    margin-bottom: 20px;
  }
}
.quality .flex .left p {
  line-height: 1.7;
}
.quality .flex .right {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .quality .flex .right {
    width: 100%;
  }
}

.company .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #CDD3D9;
}
.company .row:last-child {
  border-bottom: none;
}
.company .row .dt {
  font-size: 18px;
  font-weight: 700;
  background: #8DC8E8;
  padding: 15px 30px;
  width: 250px;
}
@media screen and (max-width: 767px) {
  .company .row .dt {
    font-size: 14px;
    padding: 15px;
    width: 110px;
  }
}
.company .row .dd {
  font-size: 16px;
  background: #fff;
  padding: 15px 30px;
  width: calc(100% - 250px);
  color: #023A63;
}
.company .row .dd.bold {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .company .row .dd {
    font-size: 14px;
    padding: 15px;
    width: calc(100% - 110px);
  }
}

.shop .shop-table th {
  color: #023A63;
}

body {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.privacy .lead {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .privacy .lead {
    margin-bottom: 30px;
  }
}
.privacy a {
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #00243F;
  color: #023A63;
}
.privacy a:hover {
  opacity: 0.6;
}
.privacy p {
  color: #023A63;
}
.privacy h2 {
  font-size: 30px;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .privacy h2 {
    font-size: 22px;
    margin-top: 30px;
  }
}
.privacy h3 {
  font-size: 26px;
  font-weight: 800;
  margin-top: 60px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .privacy h3 {
    font-size: 20px;
    margin-top: 30px;
  }
}
.privacy h4 {
  color: #023A63;
  margin-top: 30px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .privacy h4 {
    margin-top: 15px;
  }
}

.aboutsite h2 {
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .aboutsite h2 {
    font-size: 20px;
  }
}

.section {
  position: relative;
}
.section .bg1 {
  position: absolute;
  width: 25%;
  top: 7%;
  right: 2%;
}
@media screen and (max-width: 767px) {
  .section .bg1 {
    width: 30%;
    right: -2%;
  }
}
.section .bg2 {
  position: absolute;
  width: 25%;
  top: 30%;
  left: -2%;
}
@media screen and (max-width: 767px) {
  .section .bg2 {
    width: 30%;
    top: 35%;
  }
}
.section .bg3 {
  position: absolute;
  width: 25%;
  top: 50%;
  right: -2%;
}
@media screen and (max-width: 767px) {
  .section .bg3 {
    width: 30%;
  }
}
.section .bg4 {
  position: absolute;
  width: 25%;
  top: 66%;
  left: -5%;
}
@media screen and (max-width: 767px) {
  .section .bg4 {
    width: 30%;
  }
}
.section .bg5 {
  position: absolute;
  width: 25%;
  right: 5%;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .section .bg5 {
    width: 30%;
    right: -2%;
  }
}
.section .inner {
  position: relative;
  z-index: 2;
}

.privacy .bg1,
.aboutsite .bg1 {
  position: absolute;
  width: 25%;
  top: 7%;
  right: -12%;
}
@media screen and (max-width: 767px) {
  .privacy .bg1,
  .aboutsite .bg1 {
    width: 30%;
    right: -2%;
  }
}
.privacy .bg2,
.aboutsite .bg2 {
  position: absolute;
  width: 25%;
  top: 30%;
  left: -12%;
}
@media screen and (max-width: 767px) {
  .privacy .bg2,
  .aboutsite .bg2 {
    width: 30%;
    top: 35%;
  }
}
.privacy .bg3,
.aboutsite .bg3 {
  position: absolute;
  width: 25%;
  top: 50%;
  right: -12%;
}
@media screen and (max-width: 767px) {
  .privacy .bg3,
  .aboutsite .bg3 {
    width: 30%;
  }
}
.privacy .bg4,
.aboutsite .bg4 {
  position: absolute;
  width: 25%;
  top: 76%;
  left: -15%;
}
@media screen and (max-width: 767px) {
  .privacy .bg4,
  .aboutsite .bg4 {
    width: 30%;
  }
}
.privacy .bg5,
.aboutsite .bg5 {
  position: absolute;
  width: 25%;
  right: -5%;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .privacy .bg5,
  .aboutsite .bg5 {
    width: 30%;
    right: -2%;
  }
}

.privacy p {
  color: #00243F;
}

.privacy table {
  width: 100%;
}
.privacy strong {
  font-weight: 400;
}

html, body {
  overflow-x: hidden;
}

.privacy h2 {
  font-weight: 600;
}

.kome-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .kome-sp {
    display: block;
  }
  .kome-pc {
    display: none;
  }
}