@charset "UTF-8";
/* font $size
====================================== */
/* font family
====================================== */
/* colors 色管理
====================================== */
/* breakpoint ブレイクポイント
====================================== */
html,
body {
  height: 100%;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-wrap: anywhere;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "fot-tsukuardgothic-std", "Hiragino Kaku Gothic ProN", "游ゴシック", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #707070;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-size: 16px;
  font-size: 1.6rem;
}

ol,
li {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

/*----------------------------------------------------
	LAYOUT
----------------------------------------------------*/
.center {
  text-align: center;
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.mb30 {
  margin-bottom: 30px;
}

.pt60 {
  padding-top: 60px !important;
}

.pb30 {
  padding-bottom: 30px;
}

.inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5px;
}
@media screen and (max-width: 1024px) {
  .inner {
    width: 100%;
    padding: 0 15px;
  }
}

.inner-middle {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 5px;
}
@media screen and (max-width: 1024px) {
  .inner-middle {
    width: 100%;
    padding: 0 15px;
  }
}

.flex {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.en {
  font-family: "Helvetica LT Pro Bold", serif;
}

.column {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .column {
    padding: 40px 0;
  }
}

.column_middle {
  padding: 120px 0;
}
@media screen and (max-width: 820px) {
  .column_middle {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .column_middle {
    padding: 40px 0;
  }
}

.column_wide {
  padding: 180px 0;
}
@media screen and (max-width: 820px) {
  .column_wide {
    padding: 120px 0;
  }
}
@media screen and (max-width: 767px) {
  .column_wide {
    padding: 80px 0;
  }
}

/*----------------------------------------------------
    animation
----------------------------------------------------*/
/* TriggerClass　*/
.fadeUpTrigger,
.fadeInTrigger,
.fadeInLeftTrigger {
  opacity: 0;
}

.delay1 {
  animation-delay: 0.2s;
}

.delay2 {
  animation-delay: 0.4s;
}

.delay3 {
  animation-delay: 0.6s;
}

.delay4 {
  animation-delay: 0.8s;
}

.delay5 {
  animation-delay: 1s;
}

.delay6 {
  animation-delay: 1.2s;
}

.delay7 {
  animation-delay: 1.4s;
}

/*---------------------AnimationClass------------------*/
/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* fadeInLeft */
.fadeInLeft {
  animation-name: fadeInLeftAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*----------------------------------------------------
	PARTS
----------------------------------------------------*/
@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*----------------------------------------------------
	HEADER
----------------------------------------------------*/
.header {
  background: #6C887D;
  border-radius: 0 0 20px 20px;
  padding: 22px 0;
  position: fixed;
  z-index: 100;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header {
    background: #fff;
    position: inherit;
    padding: 0;
  }
}
.header a {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .header a {
    color: #6C887D;
  }
}

.nav ul {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}
.nav ul li {
  padding: 0;
  border-bottom: none;
  opacity: 1;
  transform: none;
  transition: none;
  font-weight: 600;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 820px) {
  .nav ul li {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 999;
    padding-top: 80px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav ul {
    flex-direction: column;
    text-align: center;
    padding: 10px;
    gap: 0;
  }
  .nav ul li {
    padding: 20px 0;
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
    border-bottom: 1px solid #eee;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
}

/* SP用 */
@media screen and (max-width: 767px) {
  .nav.open li:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .nav.open li:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .nav.open li:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .nav.open li:nth-child(4) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .nav.open li:nth-child(5) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .nav.open li:nth-child(6) {
    transition-delay: 0.6s;
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .nav.open li:nth-child(7) {
    transition-delay: 0.7s;
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .nav.open li:nth-child(8) {
    transition-delay: 0.8s;
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .nav.open li:nth-child(9) {
    transition-delay: 0.9s;
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .nav.open li:nth-child(10) {
    transition-delay: 1s;
    opacity: 1;
    transform: translateY(0);
  }
}
.menu-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .menu-btn {
    display: block;
    margin-left: auto;
    width: 28px;
    height: 20px;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1000;
    cursor: pointer;
    background: #6C887D;
    border-radius: 60px;
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .menu-btn span {
    position: absolute;
    left: 50%;
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .menu-btn span:nth-child(1) {
    top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .menu-btn span:nth-child(2) {
    top: 29px;
  }
}
@media screen and (max-width: 767px) {
  .menu-btn span:nth-child(3) {
    top: 38px;
  }
}

@media screen and (max-width: 767px) {
  .menu-btn.active span:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
    top: 28px;
  }
}

@media screen and (max-width: 767px) {
  .menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .menu-btn.active span:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
    top: 28px;
  }
}

/*----------------------------------------------------
	TITLE
----------------------------------------------------*/
.com-tit-01 {
  color: #6C887D;
  font-size: 101px;
  font-size: 10.1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media screen and (max-width: 820px) {
  .com-tit-01 {
    font-size: 70px;
    font-size: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .com-tit-01 {
    font-size: 36px;
    font-size: 3.6rem;
    line-height: 1.5;
  }
}
.com-tit-01 .sub-title {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .com-tit-01 .sub-title {
    width: 160px;
  }
}

.com-tit-02 {
  font-size: 50px;
  font-size: 5rem;
  font-weight: 600;
  text-align: center;
  color: #707070;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .com-tit-02 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.com-tit-02 span {
  font-size: 80px;
  font-size: 8rem;
  color: #2E374A;
  text-underline-offset: 8px;
  background: url("../img/top/border-line.svg") no-repeat;
  padding-bottom: 25px;
  background-position: left bottom;
}
@media screen and (max-width: 820px) {
  .com-tit-02 span {
    font-size: 60px;
    font-size: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .com-tit-02 span {
    font-size: 28px;
    font-size: 2.8rem;
    background-size: contain;
    padding-bottom: 15px;
  }
}

.com-tit-03 {
  font-size: 50px;
  font-size: 5rem;
  margin-bottom: 20px;
  color: #43485B;
}
@media screen and (max-width: 820px) {
  .com-tit-03 {
    font-size: 40px;
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .com-tit-03 {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 5px;
  }
}

.com-tit-04 {
  font-size: 42px;
  font-size: 4.2rem;
  margin-bottom: 20px;
  color: #6C887D;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .com-tit-04 {
    font-size: 37px;
    font-size: 3.7rem;
  }
}
@media screen and (max-width: 767px) {
  .com-tit-04 {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
}

.com-tit-05 {
  font-size: 37px;
  font-size: 3.7rem;
  margin-bottom: 20px;
  color: #fff;
  background: #6C887D;
  text-align: center;
  border-radius: 60px;
  padding: 5px 40px;
}
@media screen and (max-width: 820px) {
  .com-tit-05 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .com-tit-05 {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 5px 20px;
  }
}

.com-tit-06, .com-tit-07 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #84978F;
  font-size: 50px;
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .com-tit-06, .com-tit-07 {
    font-size: 22px;
    font-size: 2.2rem;
    gap: 10px;
    margin-bottom: 30px;
  }
}
.com-tit-06::before, .com-tit-07::before, .com-tit-06::after, .com-tit-07::after {
  content: "";
  background: url("../img/top/kazari.svg") no-repeat center;
  background-size: contain;
  width: 27px;
  height: 62px;
}
@media screen and (max-width: 767px) {
  .com-tit-06::before, .com-tit-07::before, .com-tit-06::after, .com-tit-07::after {
    width: 16px;
  }
}
.com-tit-06::after, .com-tit-07::after {
  transform: scaleX(-1);
}

.com-tit-07 {
  color: #43485B;
}
.com-tit-07::before, .com-tit-07::after {
  content: "";
  background: url("../img/top/kazari02.svg") no-repeat center;
  background-size: contain;
}

.com-tit-08 {
  color: #43485B;
  font-size: 26px;
  font-size: 2.6rem;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .com-tit-08 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .com-tit-08 {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}

/*----------------------------------------------------
	BTN
----------------------------------------------------*/
.com-btn-01 a {
  background: #6C887D;
  border: 1px solid #6C887D;
  color: #fff;
  text-align: center;
  font-weight: 600;
  padding: 20px 0;
  margin: 0 auto;
  max-width: 500px;
  font-size: 24px;
  font-size: 2.4rem;
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
}
@media screen and (max-width: 820px) {
  .com-btn-01 a {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .com-btn-01 a {
    width: 95%;
    padding: 15px 0;
    font-size: 15px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 360px) {
  .com-btn-01 a {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.com-btn-01 a::after {
  content: "";
  background: url("../img/top/icon-link.svg") no-repeat;
  width: 27px;
  height: 27px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .com-btn-01 a::after {
    background-size: contain;
    width: 18px;
    height: 18px;
    right: 20px;
  }
}
@media screen and (max-width: 360px) {
  .com-btn-01 a::after {
    width: 15px;
    height: 15px;
    right: 15px;
  }
}
.com-btn-01:hover a {
  background: #fff;
  color: #6C887D;
  border: 1px solid #6C887D;
}
.com-btn-01:hover a::after {
  content: "";
  background: url("../img/top/icon-link-green.svg") no-repeat;
}

/*----------------------------------------------------
	#pageTop
----------------------------------------------------*/
#pagetop {
  will-change: transform;
  position: fixed;
  z-index: 100;
  bottom: 60px;
  right: 60px;
  opacity: 0;
  visibility: visible;
  transition: opacity 0.4s, visibility 0.4s, transform 0.4s ease;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  #pagetop {
    right: 20px;
    bottom: 20px;
  }
}
@media screen and (max-width: 820px) {
  #pagetop {
    right: 10px;
    bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  #pagetop {
    right: 15px;
    bottom: 15px;
  }
}
#pagetop.show {
  opacity: 1;
  visibility: visible;
}
#pagetop:hover {
  transform: scale(1.1);
}
#pagetop a {
  opacity: 1;
}
#pagetop img {
  width: 130px;
  height: 167px;
}
@media screen and (max-width: 767px) {
  #pagetop img {
    width: 65px;
  }
}

/*----------------------------------------------------
	SET
----------------------------------------------------*/
@media screen and (min-width: 1023px) {
  .pc_hide {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .tab_hide {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .smart_hide {
    display: none !important;
  }
}
/*----------------------------------------------------
	INDEX PAGE
----------------------------------------------------*/
/* MV */
.column-mv {
  position: relative;
  z-index: 1;
  padding-top: 150px;
}
@media screen and (max-width: 767px) {
  .column-mv {
    padding-top: 80px;
  }
}

/* キャラクターアニメーション */
.character-slider {
  position: relative;
  width: 50%;
  height: 0;
  margin: 0 auto;
  padding-top: 29%;
}
@media screen and (max-width: 767px) {
  .character-slider {
    width: 63%;
    padding-top: 14%;
  }
}
.character-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.7s linear;
  -o-object-fit: contain;
     object-fit: contain;
}
.character-slider img.active {
  opacity: 1;
}

.wave .svg {
  height: 250px;
}
@media screen and (max-width: 767px) {
  .wave .svg {
    height: 200px;
  }
}

.float-animation {
  display: inline-block;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-8px) rotate(-2deg) scale(1.02);
  }
  50% {
    transform: translateY(-12px) rotate(2deg) scale(1.05);
  }
  75% {
    transform: translateY(-8px) rotate(-1deg) scale(1.02);
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}
.page-top-fade {
  display: inline-block;
  animation: fade-pop 2s ease-in-out infinite;
}

@keyframes fade-pop {
  0% {
    opacity: 0.9;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.9;
    transform: scale(0.95);
  }
}
.float-top-animation {
  display: inline-block;
  animation: arcSwing 4s linear infinite;
  transform-origin: center center;
}

@keyframes arcSwing {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  25% {
    transform: translateX(-20px) translateY(-5px) rotate(-10deg);
  }
  50% {
    transform: translateX(0px) translateY(0px) rotate(0deg);
  }
  75% {
    transform: translateX(20px) translateY(5px) rotate(10deg);
  }
  100% {
    transform: translateX(0px) translateY(0px) rotate(0deg);
  }
}
/* おんせんどろぼって? */
.column-about {
  text-align: center;
  position: relative;
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .column-about {
    padding-bottom: 100px;
  }
}
.column-about::after {
  content: "";
  background: url("../img/top/bg_about.png") no-repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 935px;
  height: 595px;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  .column-about::after {
    width: 833px;
    height: 530px;
  }
}
@media screen and (max-width: 820px) {
  .column-about::after {
    width: 500px;
    background-size: contain;
  }
}
@media screen and (max-width: 767px) {
  .column-about::after {
    width: 100%;
    background-size: contain;
    height: 240px;
  }
}
.column-about .com-tit-02 {
  margin-bottom: 160px;
}
@media screen and (max-width: 820px) {
  .column-about .com-tit-02 {
    margin-bottom: 40px;
  }
}
.column-about .text {
  font-size: 18px;
  font-size: 1.8rem;
  color: #2E374A;
  line-height: 2;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .column-about .text {
    line-height: 1.8;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.column-about .bold-text {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
  margin: 40px 0;
  color: #2E374A;
}
@media screen and (max-width: 767px) {
  .column-about .bold-text {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

/* 草津市って? */
.column-kusastu {
  background: url("../img/top/bg_kusastu.png");
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .column-kusastu {
    padding: 60px 0;
  }
}
.column-kusastu .kusastu-wrap {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .column-kusastu .kusastu-wrap {
    margin-bottom: 30px;
    gap: 0;
  }
}
@media screen and (max-width: 360px) {
  .column-kusastu .kusastu-wrap {
    flex-wrap: wrap;
  }
}
.column-kusastu .left {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .column-kusastu .left {
    width: 70px;
  }
}
@media screen and (max-width: 360px) {
  .column-kusastu .left {
    margin-bottom: -60px;
    position: relative;
    z-index: 1;
  }
}
.column-kusastu .right {
  background: url("../img/top/fukidashi_pc.svg") no-repeat;
  width: 732px;
  height: 440px;
  display: flex;
  gap: 30px;
  align-items: center;
  text-align: left;
  background-size: contain;
  justify-content: end;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 20px;
}
@media screen and (max-width: 820px) {
  .column-kusastu .right {
    height: 353px;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .column-kusastu .right {
    height: 338px;
  }
}
@media screen and (max-width: 767px) {
  .column-kusastu .right {
    background: url("../img/top/fukidashi_sp.svg") no-repeat;
    background-size: contain;
    padding: 0 0 0 50px;
    font-size: 13px;
    font-size: 1.3rem;
    gap: 10px;
  }
}
.column-kusastu .right .map {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .column-kusastu .right .map {
    width: 148px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 539px) {
  .column-kusastu .right .map {
    width: 80px;
  }
}
.column-kusastu .right .text {
  width: 55%;
  color: #43485B;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width: 820px) {
  .column-kusastu .right .text {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .column-kusastu .right .text {
    width: 100%;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

/* profile */
.column-profile {
  background: #FAF1E2;
}

.profile-wrap {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media screen and (max-width: 820px) {
  .profile-wrap {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .profile-wrap {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.profile-wrap .left {
  width: 300px;
}
@media screen and (max-width: 820px) {
  .profile-wrap .left {
    width: 150px;
    margin: 0 auto;
  }
}
.profile-wrap .right {
  background: #fff;
  border-radius: 20px;
  font-size: 18px;
  font-size: 1.8rem;
  padding: 40px 75px;
  font-weight: 600;
  color: #43485B;
  position: relative;
  line-height: 2.1;
}
@media screen and (max-width: 1024px) {
  .profile-wrap .right {
    padding: 40px 60px;
  }
}
@media screen and (max-width: 820px) {
  .profile-wrap .right {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 40px 75px;
  }
}
@media screen and (max-width: 767px) {
  .profile-wrap .right {
    padding: 30px 20px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.profile-wrap .right::after {
  content: "";
  background: url("../img/top/profile02.svg") no-repeat;
  position: absolute;
  bottom: -114px;
  right: -183px;
  width: 243px;
  height: 390px;
}
@media screen and (max-width: 1024px) {
  .profile-wrap .right::after {
    bottom: -328px;
    right: 0;
    background-size: contain;
    width: 150px;
  }
}
@media screen and (max-width: 820px) {
  .profile-wrap .right::after {
    bottom: -310px;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .profile-wrap .right::after {
    top: -190px;
    width: 133px;
  }
}
@media screen and (max-width: 360px) {
  .profile-wrap .right::after {
    top: -170px;
    width: 120px;
  }
}

.profile-list {
  margin-top: 30px;
}
.profile-list div {
  display: flex;
  align-items: center;
  line-height: 1.8;
}
.profile-list dt {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .profile-list dt {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 360px) {
  .profile-list dt {
    width: 51%;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/* story */
.column-story {
  background: #E9F7FA;
  padding-bottom: 180px;
}
@media screen and (max-width: 767px) {
  .column-story {
    padding-bottom: 120px;
  }
}
.column-story .swiper-slide {
  font-weight: 600;
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 820px) {
  .column-story .swiper-slide {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .column-story .swiper-slide {
    flex-wrap: wrap;
    gap: 20px;
    flex-direction: row-reverse;
  }
}
.column-story .slide-text {
  color: #43485B;
  font-size: 18px;
  font-size: 1.8rem;
  width: 40%;
}
@media screen and (max-width: 820px) {
  .column-story .slide-text {
    width: 55%;
  }
}
@media screen and (max-width: 767px) {
  .column-story .slide-text {
    font-size: 15px;
    font-size: 1.5rem;
    width: 100%;
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .column-story figure {
    order: 1;
  }
}

.swiper-container-wrapper {
  position: relative;
}

.swiper-button-prev,
.swiper-button-next {
  background-position: center;
  width: 112px !important;
  height: 36px !important;
  bottom: -70px;
  top: inherit !important;
  color: transparent;
  z-index: 10;
  transform: none;
  background: none;
  border: none;
  color: transparent;
  outline: none;
}
@media screen and (max-width: 820px) {
  .swiper-button-prev,
  .swiper-button-next {
    bottom: -80px;
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 73px !important;
    bottom: -60px;
  }
}
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.swiper-button-prev {
  background: url("../img/top/btn_prev.svg") no-repeat;
  background-size: contain;
  left: 10px;
}
.swiper-button-prev:hover {
  background: url("../img/top/btn_prev_hover.svg") no-repeat;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev:hover {
    background-size: contain;
  }
}

.swiper-button-next {
  background: url("../img/top/btn_next.svg") no-repeat;
  background-size: contain;
  right: 10px;
}
.swiper-button-next:hover {
  background: url("../img/top/btn_next_hover.svg") no-repeat;
}
@media screen and (max-width: 767px) {
  .swiper-button-next:hover {
    background-size: contain;
  }
}

/* goods */
.column-goods {
  background: #D4F0F5;
}

.goods-wrap {
  margin-top: 100px;
  display: flex;
  gap: 20px;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .goods-wrap {
    gap: 0;
  }
}
@media screen and (max-width: 360px) {
  .goods-wrap {
    flex-wrap: wrap;
    margin-top: 50px;
  }
}
.goods-wrap .left {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .goods-wrap .left {
    width: 70px;
  }
}
@media screen and (max-width: 360px) {
  .goods-wrap .left {
    position: relative;
    z-index: 1;
    margin-bottom: -2px;
  }
}
.goods-wrap .text {
  background: url(../img/top/goods03_pc.svg) no-repeat;
  width: 731px;
  height: 236px;
  background-size: contain;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 820px) {
  .goods-wrap .text {
    padding: 0 0 0 60px;
    height: 215px;
  }
}
@media screen and (max-width: 767px) {
  .goods-wrap .text {
    height: 270px;
    padding: 0 0 0 20px;
    background: url(../img/top/goods03_sp.svg) no-repeat;
    background-size: contain;
  }
}
@media screen and (max-width: 539px) {
  .goods-wrap .text {
    height: 211px;
  }
}
.goods-wrap .text .com-tit-05 {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 428px;
}
@media screen and (max-width: 820px) {
  .goods-wrap .text .com-tit-05 {
    top: -20px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .goods-wrap .text .com-tit-05 {
    width: 70%;
    top: -12px;
  }
}

.goods-list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: 0.6rem 10rem;
  list-style: none;
  padding: 0;
  margin: 30px auto 0 auto;
  max-width: 520px;
}
@media screen and (max-width: 820px) {
  .goods-list {
    margin: 0 auto 0 auto;
    gap: 0.6rem 7rem;
  }
}
@media screen and (max-width: 767px) {
  .goods-list {
    display: block;
  }
}
.goods-list li {
  position: relative;
  font-weight: 600;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .goods-list li {
    padding-left: 20px;
  }
}
.goods-list li a {
  color: #6C887D;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .goods-list li a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.goods-list li::before {
  content: "";
  background: url(../img/top/icon-access.svg) no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 28px;
}
@media screen and (max-width: 767px) {
  .goods-list li::before {
    background-size: contain;
    width: 12px;
    height: 16px;
  }
}
.goods-list li:last-child {
  grid-column: 1/-1;
  justify-self: start;
}

/* banner */
.banner-wrap {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 40px;
}

/* galery */
.column-gallery {
  background: #D4F0F5;
  color: #43485B;
  padding-bottom: 480px;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .column-gallery {
    padding-bottom: 280px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.column-gallery .com-btn-01 a {
  max-width: 590px;
}
.column-gallery .text01,
.column-gallery .text02,
.column-gallery .text03,
.column-gallery .text04 {
  margin: 80px 0;
}
@media screen and (max-width: 767px) {
  .column-gallery .text01,
  .column-gallery .text02,
  .column-gallery .text03,
  .column-gallery .text04 {
    margin: 50px 0;
  }
}
.column-gallery .text01 .flex,
.column-gallery .text02 .flex,
.column-gallery .text03 .flex,
.column-gallery .text04 .flex {
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .column-gallery .text01 .flex,
  .column-gallery .text02 .flex,
  .column-gallery .text03 .flex,
  .column-gallery .text04 .flex {
    flex-wrap: wrap;
    gap: 0 15px;
  }
}
.column-gallery .text01 {
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 820px) {
  .column-gallery .text01 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .column-gallery .text01 {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.column-gallery .text02 {
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 820px) {
  .column-gallery .text02 {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .column-gallery .text02 {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.column-gallery .text03 {
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 820px) {
  .column-gallery .text03 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .column-gallery .text03 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.column-gallery .text04 {
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 820px) {
  .column-gallery .text04 {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .column-gallery .text04 {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.gallery_list {
  margin: 140px 0 90px 0;
}
@media screen and (max-width: 767px) {
  .gallery_list {
    flex-wrap: wrap;
    gap: 0 15px;
    justify-content: center;
    margin: 60px 0 40px 0;
  }
}
.gallery_list li {
  font-size: 30px;
  font-size: 3rem;
}
@media screen and (max-width: 1024px) {
  .gallery_list li {
    font-size: 25px;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 820px) {
  .gallery_list li {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .gallery_list li {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/*----------------------------------------------------
	FOOTER
----------------------------------------------------*/
.footer {
  background: #6B887C;
  color: #fff;
  text-align: center;
  padding: 60px 0 30px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 50px;
  }
}
.footer::before {
  content: "";
  background: url(../img/top/footer01.svg) no-repeat;
  position: absolute;
  top: -35px;
  right: 10rem;
  width: 174px;
  height: 54px;
}
@media screen and (max-width: 767px) {
  .footer::before {
    right: 30px;
    background-size: contain;
    width: 150px;
    right: 20px;
  }
}
.footer::after {
  content: "";
  background: url(../img/top/footer03_pc.svg) no-repeat;
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 507px;
  height: 607px;
}
@media screen and (max-width: 767px) {
  .footer::after {
    background: url(../img/top/footer03_sp.svg) no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 495px;
  }
}
@media screen and (max-width: 539px) {
  .footer::after {
    height: 528px;
  }
}
.footer .com-tit-01 {
  color: #fff;
  line-height: 1.6;
  font-size: 34px;
  font-size: 3.4rem;
}
@media screen and (max-width: 767px) {
  .footer .com-tit-01 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.footer .com-tit-01 .sub-title {
  width: 180px;
}
@media screen and (max-width: 767px) {
  .footer .com-tit-01 .sub-title {
    width: 140px;
  }
}

.footer-text {
  position: relative;
  z-index: 1;
}

.footer-wrap {
  position: relative;
}
.footer-wrap::before {
  content: "";
  background: url(../img/top/footer02.svg) no-repeat;
  position: absolute;
  bottom: 5rem;
  right: 10rem;
  width: 348px;
  height: 169px;
}

.bottom-text {
  font-size: 20px;
  font-size: 2rem;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .bottom-text {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.access {
  font-size: 14px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .access {
    flex-wrap: wrap;
    gap: 0;
  }
}
.access a {
  color: #fff;
}

/*----------------------------------------------------
	404
----------------------------------------------------*/
.error-404 {
  text-align: center;
  padding: 80px 0 200px;
  color: #5c5c5c;
  font-weight: 600;
}
@media screen and (max-width: 820px) {
  .error-404 {
    padding: 70px 0 80px;
  }
}
.error-404 .btn {
  margin-top: 50px;
}
.error-404 .icon_404 {
  background: #fff;
  font-size: 90px;
  font-size: 9rem;
  text-align: center;
  letter-spacing: 1px;
}
@media screen and (max-width: 820px) {
  .error-404 .icon_404 {
    font-size: 7rem;
  }
}
.error-404 .icon_404 span {
  color: #fff;
}/*# sourceMappingURL=style.css.map */