@charset "UTF-8";

body {
  background-color: #f7ffff;
  /* background: url(../img/common/smpl.jpg) no-repeat center top / 1440px; */
}
.main {
  overflow: clip;
  position: relative;
}
@media all and (min-width: 681px) {
  body,
  .head {
    min-width: 1200px;
  }
}
@media all and (max-width: 680px) {
  body {
    /* background: url(../img/common/smpl_sp.jpg) no-repeat center top / 375px; */
  }
}

/* introWrap
***************************************************************/
body.no-scroll.first-visit {
  overflow: hidden;
  height: 100vh;
}
.introWrap {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  transition: 0.3s ease;
  animation: introWrap ease 0.5s forwards 3s;
  pointer-events: none;
}
body:not(.first-visit) .introWrap {
  display: none !important;
}
.intro_bg {
  width: 100%;
  height: 100%;
  background-color: #1b7da8;
  transition: 0.3s ease;
  animation: intro_bg ease 0.5s forwards 2.5s;
}
.site_logo1 {
  width: 418.5px;
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  animation: site_logo1 ease 1.5s forwards 2.5s;
  opacity: 0;
}
.site_sokochi1 {
  width: 76px;
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 59px;
  left: 150px;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.site_sokochi1 img {
  position: relative;
  left: -100px;
  transform: rotate(-50deg);
  transition: 0.3s ease;
  animation: site_sokochi1 ease 0.4s forwards 1.5s;
}
.site_bar1 {
  width: 51.3px;
  height: 142.06px;
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 84px;
  left: 126px;
  right: 0;
  margin: auto;
}
.site_bar1 .i {
  width: 100%;
  height: 0;
  background-color: #f7ffff;
  border-radius: 300px;
  transition: 0.3s ease;
  animation: site_bar1 ease 0.5s forwards 0.5s;
}
@keyframes introWrap {
  0% {
    opacity: 100%;
  }
  100% {
    opacity: 0;
  }
}
@keyframes intro_bg {
  100% {
    background-color: #f7ffff;
  }
}
@keyframes site_logo1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes site_sokochi1 {
  100% {
    left: 0;
    transform: rotate(0);
  }
}
@keyframes site_bar1 {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@media all and (min-width: 681px) {
  .introWrap {
    min-width: 1200px;
  }
}
@media all and (max-width: 680px) {
  .introWrap {
    height: 100svh;
  }
  .site_logo1 {
    width: 229.7px;
  }
  .site_sokochi1 {
    width: 42px;
    bottom: 32px;
    left: 82px;
  }
  .site_bar1 {
    width: 28px;
    height: 79px;
    bottom: 47px;
    left: 68px;
  }
}
@media all and (max-width: 370px) {
}

/* head
***************************************************************/
.head {
  width: 100%;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: background 0.3s ease, height 0.3s ease, top 0.3s ease,
    opacity 0.3s ease;
}
.h_nav_off:not(.open) #head {
  opacity: 0;
  height: 85px;
}
.h_nav_off2:not(.open) #head {
  background-color: #f7ffff;
}
.pageScroll #head {
  position: fixed !important;
  top: 0 !important;
  opacity: 1 !important;
}
.h_id {
  width: 146.71px;
  transition: width 0.3s ease;
  display: block;
  transition: 0.3s ease;
}
.h_nav_off2:not(.open) #head .h_id {
  width: 115.67px;
}
.gNav_list1 {
  display: flex;
  gap: 0 15px;
}
.gNav_list1 .link1 {
  /* background-color: #fff; */
  color: #1b7da8;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  border-radius: 100px;
  padding: 12px 18px;
}

.h_toggle {
  width: 32px;
  height: 18px;
  cursor: pointer;
}
.h_toggle p {
  position: relative;
  height: 100%;
}
.h_toggle p span,
.h_toggle p::before,
.h_toggle p::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1b7da8;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
}
.h_toggle p span {
  transform: translateY(-50%);
}
.h_toggle p::before {
  transform: translateY(-8px) rotate(0deg);
}
.h_toggle p::after {
  transform: translateY(6px) rotate(0deg);
}
.open .h_toggle p span {
  opacity: 0;
}
.open .h_toggle p::before {
  transform: translateY(-50%) rotate(-45deg);
}
.open .h_toggle p::after {
  bottom: 0;
  transform: translateY(-50%) rotate(45deg);
}
@media all and (min-width: 681px) and (max-width: 1399px) {
  .gNav_list1 {
    gap: 0 10px;
  }
  .gNav_list1 .link1 {
    font-size: 13px;
    padding: 10px 14px;
  }
}
@media all and (min-width: 681px) {
  .gNav_list1 a.link1:hover {
    background-color: #1b7da8;
    color: #fff;
  }
}
@media all and (max-width: 680px) {
  .head {
    height: 66px;
    padding: 0 30px;
  }
  .h_nav_off:not(.open) #head {
    height: 66px;
  }
  .h_id {
    width: 88.86px;
  }
  .h_nav_off2:not(.open) #head .h_id {
    width: 88.86px;
  }
  .open .h_id {
    opacity: 0;
    pointer-events: none;
  }
}
@media all and (max-width: 370px) {
}

/* paint
***************************************************************/
.paint {
  position: absolute;
  /* z-index: -1; */
  transition: width 0.3s ease;
  /* mix-blend-mode: multiply; */
  pointer-events: none;
}
.paint_in {
  width: 0;
  overflow: hidden;
  transition: width 0.5s ease;
}
.paint img {
  max-width: none;
}
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
}
@media all and (max-width: 370px) {
}

/* w_title1
***************************************************************/
.w_title1 {
  position: relative;
  display: flex;
  justify-content: center;
  color: #1b7da8;
  font-size: 52px;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.w_title1 .bold {
  font-weight: 700;
}
.w_title1_in {
  z-index: 1;
}
.w_title1_paint {
  width: 266.83px;
  height: 88.91px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(-16deg);
  pointer-events: none;
}
.w_title1_paint_in {
  width: 0;
  overflow: hidden;
  transition: width 0.5s ease 0.5s;
}
.scrollin .w_title1_paint_in {
  width: 266.83px;
}
.w_title1_paint_in img {
  max-width: none;
  width: 266.83px;
}
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
  .w_title1 {
    font-size: 33px;
    letter-spacing: 0.03em;
  }
  .w_title1_paint {
    width: 155.37px;
    height: 51.77px;
  }
  .w_title1_paint_in {
    width: 0;
    overflow: hidden;
    transition: width 0.5s ease 0.5s;
  }
  .scrollin .w_title1_paint_in {
    width: 155.37px;
  }
  .w_title1_paint_in img {
    width: 155.37px;
  }
}
@media all and (max-width: 370px) {
}

/* w_link1
***************************************************************/
.w_link1 {
  width: 342px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: #1b7da8;
  color: #fff;
  position: relative;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.3;
  transition: 0.3s ease;
}
.w_link1::after {
  content: "";
  width: 29px;
  height: 29px;
  background: url(../img/common/arrow4_w.svg) no-repeat center / contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  margin: auto;
  transition: background 0.3s ease;
}
.w_link1.white {
  background-color: #fff;
  color: #1b7da8;
}
.w_link1.white::after {
  background-image: url(../img/common/arrow4_b.svg);
}
@media all and (min-width: 681px) {
  a.w_link1:hover,
  a:hover .w_link1 {
    background-color: #52a5c9;
  }
  a.w_link1.white:hover,
  a:hover .w_link1.white {
    background-color: #1b7da8;
    color: #fff;
  }
  a.w_link1.white:hover::after,
  a:hover .w_link1.white::after {
    background-image: url(../img/common/arrow4_w.svg);
  }
}
@media all and (max-width: 680px) {
  .w_link1 {
    width: 260px;
    height: 50px;
    font-size: 14px;
  }
  .w_link1::after {
    width: 21px;
    height: 21px;
    right: 13px;
  }
}
@media all and (max-width: 370px) {
}

/* foot
***************************************************************/
.foot {
  position: relative;
  overflow-x: hidden;
  background-color: #e7f7f7;
  background: #e7f7f7 url(../img/common/foot_bg1.svg) no-repeat center top /
    3000px;
}
.gotop {
  width: 57.72px;
  display: block;
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 20px;
}
.foot_ov {
  padding: 180px 0 82px;
  position: relative;
  overflow: hidden;
}
.foot_inner {
  width: 1150px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.f_logo1 {
  width: 141.58px;
  margin: 0 auto;
}
.f_logo1_txt1 {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 20px;
}
.f_linkBox1 {
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  gap: 0 20px;
}
.f_sns_list1 {
  margin: 30px auto 0;
  display: flex;
  gap: 0 16px;
  align-items: center;
  justify-content: center;
}
.f_sns_list1 .link1 {
  display: block;
  height: 30px;
}
.f_sns_list1 .link1 img {
  height: 100%;
  width: auto;
}
.cRight {
  margin-top: 52px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
  color: #1b7da8;
}

.paint_foot1 {
  left: -470px;
  top: 74px;
  transform: rotate(10deg);
}
.paint_foot1,
.paint_foot1 .paint_in,
.paint_foot1 img {
  width: 794.57px;
}
.paint_foot2 {
  left: -370px;
  bottom: 25px;
  transform: rotate(-20deg);
}
.paint_foot2,
.paint_foot2 .paint_in,
.paint_foot2 img {
  width: 630.87px;
}
.paint_foot3 {
  left: -175px;
  bottom: -38px;
  transform: rotate(-20deg);
}
.paint_foot3,
.paint_foot3 .paint_in,
.paint_foot3 img {
  width: 544.26px;
}
.paint_foot4 {
  right: -30px;
  bottom: -65px;
  transform: rotate(18deg);
  z-index: 1;
}
.paint_foot4,
.paint_foot4 .paint_in,
.paint_foot4 img {
  width: 319.55px;
}
.paint_foot5 {
  right: -145px;
  top: 80px;
  transform: rotate(-20deg);
}
.paint_foot5,
.paint_foot5 .paint_in,
.paint_foot5 img {
  width: 308.47px;
}
.paint_foot6 {
  right: -370px;
  bottom: -60px;
  transform: rotate(200deg);
}
.paint_foot6,
.paint_foot6 .paint_in,
.paint_foot6 img {
  width: 739.42px;
}

@media all and (min-width: 681px) {
  .f_linkBox1 .w_link1 {
    margin: 0;
  }
  .f_sns_list1 a.link1:hover {
    opacity: 0.6;
  }
}
@media all and (max-width: 680px) {
  .foot {
    background-size: 1000px;
  }
  .foot_ov {
    padding: 110px 0 50px;
  }
  .foot_inner {
    width: 100%;
  }
  .f_logo1 {
    width: 88.17px;
  }
  .f_logo1_txt1 {
    font-size: 17px;
    letter-spacing: 0;
    margin-top: 13px;
  }
  .f_linkBox1 {
    margin-top: 30px;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    gap: 10px 0;
  }
  .f_sns_list1 {
    margin-top: 24px;
  }
  .cRight {
    margin-top: 32px;
    font-size: 12px;
    letter-spacing: 0;
  }

  .paint_foot1 {
    left: -380px;
    top: -10px;
    /* transform: rotate(10deg); */
  }
  .paint_foot1,
  .paint_foot1 .paint_in,
  .paint_foot1 img {
    width: 488.11px;
  }
  .paint_foot2 {
    left: -250px;
    bottom: 165px;
    /* transform: rotate(-20deg); */
  }
  .paint_foot2,
  .paint_foot2 .paint_in,
  .paint_foot2 img {
    width: 387.55px;
  }
  .paint_foot3 {
    left: -172px;
    bottom: 75px;
    /* transform: rotate(-20deg); */
  }
  .paint_foot3,
  .paint_foot3 .paint_in,
  .paint_foot3 img {
    width: 255.37px;
  }
  .paint_foot4 {
    right: -185px;
    top: 35px;
    bottom: auto;
    transform: rotate(-11deg);
  }
  .paint_foot4,
  .paint_foot4 .paint_in,
  .paint_foot4 img {
    width: 324.75px;
  }
  .paint_foot5 {
    right: -70px;
    top: 118px;
    z-index: 1;
    /* transform: rotate(-20deg); */
  }
  .paint_foot5,
  .paint_foot5 .paint_in,
  .paint_foot5 img {
    width: 135.48px;
  }
  .paint_foot6 {
    right: -232px;
    bottom: 114px;
    /* transform: rotate(200deg); */
  }
  .paint_foot6,
  .paint_foot6 .paint_in,
  .paint_foot6 img {
    width: 324.75px;
  }
}
@media all and (max-width: 370px) {
}

/* gNav_sp
***************************************************************/
.gNav_sp {
  width: 100%;
  height: 100svh;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8888;
  padding: 82px 0 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.open .gNav_sp {
  opacity: 1;
  pointer-events: auto;
}
.gNav_sp_inner {
  width: 100%;
  height: 100%;
  padding: 0 30px 60px;
  overflow: auto;
  position: relative;
  z-index: 1;
}
.gNav_sp_list1 {
  margin-bottom: 30px;
}
.gNav_sp_list1 .li1 {
  border-bottom: 1px solid #1b7da8;
}
.gNav_sp_list1 .link1 {
  padding: 18px 0;
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #1b7da8;
  position: relative;
}
.gNav_sp_list1 .link1::after {
  content: "";
  width: 16px;
  height: 13px;
  background: url(../img/common/arrow3_b.svg) no-repeat center / contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  margin: auto;
}

.gNav_sp .f_logo1 {
  /* width: 188px; */
}
.gNav_sp .f_logo1_txt1 {
  font-size: 14px;
  margin-top: 10px;
}
.gNav_sp .f_linkBox1 {
  margin-top: 20px;
}
.gNav_sp .f_sns_list1 {
  margin-top: 30px;
}

.gNav_sp_paint {
  position: absolute;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.gNav_sp_paint1 {
  width: 411.37px;
  top: -36px;
  left: -190px;
  transform: rotate(-15deg);
}
.gNav_sp_paint2 {
  width: 243.49px;
  bottom: 230px;
  left: -165px;
  transform: rotate(30deg);
}
.gNav_sp_paint3 {
  width: 262.91px;
  bottom: -30px;
  left: -95px;
  transform: rotate(30deg);
}
.gNav_sp_paint4 {
  width: 235.27px;
  bottom: 240px;
  right: -145px;
  transform: rotate(35deg);
}
.gNav_sp_paint5 {
  width: 165.35px;
  bottom: 208px;
  right: -105px;
  transform: rotate(35deg);
}

@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
}
@media all and (max-width: 370px) {
}

/* paint_mv
***************************************************************/
@keyframes paint_mv1 {
  0% {
    width: 0;
  }
  100% {
    width: 755.69px;
  }
}
.paint_mv1 {
  width: 755.69px;
  left: -266px;
  top: -36px;
  transform: rotate(-10deg);
}
.first-visit .paint_mv1 .paint_in {
  animation: paint_mv1 ease 0.5s forwards 3.5s;
}
body:not(.first-visit) .paint_mv1 .paint_in {
  width: 755.69px;
}
.paint_mv1 img {
  width: 755.69px;
}

@keyframes paint_mv2 {
  0% {
    width: 0;
  }
  100% {
    width: 765.75px;
  }
}
.paint_mv2 {
  width: 765.75px;
  left: -549px;
  top: 183px;
  transform: rotate(-22deg);
}
.first-visit .paint_mv2 .paint_in {
  animation: paint_mv2 ease 0.5s forwards 3.5s;
}
body:not(.first-visit) .paint_mv2 .paint_in {
  width: 765.75px;
}
.paint_mv2 img {
  width: 765.75px;
}

@keyframes paint_mv3 {
  0% {
    width: 0;
  }
  100% {
    width: 453.25px;
  }
}
.paint_mv3 {
  width: 453.25px;
  left: -321px;
  top: 258px;
  transform: rotate(14deg);
}
.first-visit .paint_mv3 .paint_in {
  animation: paint_mv3 ease 0.5s forwards 4s;
}
body:not(.first-visit) .paint_mv3 .paint_in {
  width: 453.25px;
}
.paint_mv3 img {
  width: 453.25px;
}

@keyframes paint_mv4 {
  0% {
    width: 0;
  }
  100% {
    width: 459.06px;
  }
}
.paint_mv4 {
  width: 459.06px;
  left: -410px;
  bottom: 68px;
  transform: rotate(36deg);
}
.first-visit .paint_mv4 .paint_in {
  animation: paint_mv4 ease 0.5s forwards 4.5s;
}
body:not(.first-visit) .paint_mv4 .paint_in {
  width: 459.06px;
}
.paint_mv4 img {
  width: 459.06px;
}

@keyframes paint_mv5 {
  0% {
    width: 0;
  }
  100% {
    width: 220.65px;
  }
}
.paint_mv5 {
  width: 220.65px;
  left: -33px;
  bottom: 131px;
  transform: rotate(44deg);
}
.first-visit .paint_mv5 .paint_in {
  animation: paint_mv5 ease 0.5s forwards 4.25s;
}
body:not(.first-visit) .paint_mv5 .paint_in {
  width: 220.65px;
}
.paint_mv5 img {
  width: 220.65px;
}

@keyframes paint_mv6 {
  0% {
    width: 0;
  }
  100% {
    width: 810.19px;
  }
}
.paint_mv6 {
  width: 810.19px;
  top: 76px;
  bottom: 0px;
  left: calc(((100% - 810.19px) / 2) + 58px);
  margin: auto;
  display: flex;
  align-items: center;
  transform: rotate(-7deg);
}
.first-visit .paint_mv6 .paint_in {
  animation: paint_mv6 ease 0.5s forwards 5.5s;
}
body:not(.first-visit) .paint_mv6 .paint_in {
  width: 810.19px;
}
.paint_mv6 img {
  width: 810.19px;
}

@keyframes paint_mv7 {
  0% {
    width: 0;
  }
  100% {
    width: 650.61px;
  }
}
.paint_mv7 {
  width: 650.61px;
  right: -299px;
  top: -31px;
  transform: rotate(188deg);
}
.first-visit .paint_mv7 .paint_in {
  animation: paint_mv7 ease 0.5s forwards 3.5s;
}
body:not(.first-visit) .paint_mv7 .paint_in {
  width: 650.61px;
}
.paint_mv7 img {
  width: 650.61px;
  transform: rotate(180deg);
}

@keyframes paint_mv8 {
  0% {
    width: 0;
  }
  100% {
    width: 194.76px;
  }
}
.paint_mv8 {
  width: 194.76px;
  right: -137px;
  top: 150px;
  transform: rotate(198deg);
}
.first-visit .paint_mv8 .paint_in {
  animation: paint_mv8 ease 0.5s forwards 3.75s;
}
body:not(.first-visit) .paint_mv8 .paint_in {
  width: 194.76px;
}
.paint_mv8 img {
  width: 194.76px;
  transform: rotate(180deg);
}

@keyframes paint_mv9 {
  0% {
    width: 0;
  }
  100% {
    width: 220.65px;
  }
}
.paint_mv9 {
  width: 220.65px;
  right: -223px;
  top: 344px;
  transform: rotate(197deg);
}
.first-visit .paint_mv9 .paint_in {
  animation: paint_mv9 ease 0.5s forwards 4s;
}
body:not(.first-visit) .paint_mv9 .paint_in {
  width: 220.65px;
}
.paint_mv9 img {
  width: 220.65px;
  transform: rotate(180deg);
}

@keyframes paint_mv10 {
  0% {
    width: 0;
  }
  100% {
    width: 405.6px;
  }
}
.paint_mv10 {
  width: 470.15px;
  right: -242px;
  bottom: 18px;
  transform: rotate(152deg);
}
.first-visit .paint_mv10 .paint_in {
  animation: paint_mv10 ease 0.5s forwards 4.25s;
}
body:not(.first-visit) .paint_mv10 .paint_in {
  width: 470.15px;
}
.paint_mv10 img {
  width: 470.15px;
  transform: rotate(180deg);
}

@keyframes paint_mv11 {
  0% {
    width: 0;
  }
  100% {
    width: 405.6px;
  }
}
.paint_mv11 {
  width: 405.6px;
  right: -405px;
  bottom: 5px;
  transform: rotate(152deg);
}
.first-visit .paint_mv11 .paint_in {
  animation: paint_mv11 ease 0.5s forwards 4.5s;
}
body:not(.first-visit) .paint_mv11 .paint_in {
  width: 405.6px;
}
.paint_mv11 img {
  width: 405.6px;
  transform: rotate(180deg);
}

@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
  @keyframes paint_mv1 {
    0% {
      width: 0;
    }
    100% {
      width: 410px;
    }
  }
  .paint_mv1 {
    width: 410px;
    left: -140px;
    top: -6px;
  }
  body:not(.first-visit) .paint_mv1 .paint_in,
  .paint_mv1 img {
    width: 410px;
  }

  @keyframes paint_mv2 {
    0% {
      width: 0;
    }
    100% {
      width: 411.37px;
    }
  }
  .paint_mv2 {
    width: 411.37px;
    left: -294px;
    top: 135px;
  }
  body:not(.first-visit) .paint_mv2 .paint_in,
  .paint_mv2 img {
    width: 411.37px;
  }

  @keyframes paint_mv3 {
    0% {
      width: 0;
    }
    100% {
      width: 243.49px;
    }
  }
  .paint_mv3 {
    width: 243.49px;
    left: -182px;
    top: 136px;
  }
  body:not(.first-visit) .paint_mv3 .paint_in,
  .paint_mv3 img {
    width: 243.49px;
  }

  @keyframes paint_mv4 {
    0% {
      width: 0;
    }
    100% {
      width: 262.91px;
    }
  }
  .paint_mv4 {
    width: 262.91px;
    left: -114px;
    bottom: 67px;
  }
  body:not(.first-visit) .paint_mv4 .paint_in,
  .paint_mv4 img {
    width: 262.91px;
  }

  @keyframes paint_mv5 {
    0% {
      width: 0;
    }
    100% {
      width: 174.15px;
    }
  }
  .paint_mv5 {
    width: 174.15px;
    left: -39px;
    bottom: 142px;
  }
  body:not(.first-visit) .paint_mv5 .paint_in,
  .paint_mv5 img {
    width: 174.15px;
  }

  @keyframes paint_mv6 {
    0% {
      width: 0;
    }
    100% {
      width: 377.12px;
    }
  }
  .paint_mv6 {
    width: 377.12px;
    top: -36px;
    left: calc(((100% - 377.12px) / 2) + 8px);
  }
  body:not(.first-visit) .paint_mv6 .paint_in,
  .paint_mv6 img {
    width: 377.12px;
  }

  @keyframes paint_mv7 {
    0% {
      width: 0;
    }
    100% {
      width: 422.49px;
    }
  }
  .paint_mv7 {
    width: 422.49px;
    right: -280px;
    top: 67px;
  }
  body:not(.first-visit) .paint_mv7 .paint_in,
  .paint_mv7 img {
    width: 422.49px;
    transform: rotate(180deg);
  }

  @keyframes paint_mv8 {
    0% {
      width: 0;
    }
    100% {
      width: 189.45px;
    }
  }
  .paint_mv8 {
    width: 189.45px;
    right: -113px;
    top: 92px;
    z-index: 1;
  }
  body:not(.first-visit) .paint_mv8 .paint_in,
  .paint_mv8 img {
    width: 189.45px;
    transform: rotate(180deg);
  }

  @keyframes paint_mv9 {
    0% {
      width: 0;
    }
    100% {
      width: 219.76px;
    }
  }
  .paint_mv9 {
    width: 219.76px;
    right: -85px;
    top: -15px;
    transform: rotate(42deg);
    mix-blend-mode: normal;
  }
  body:not(.first-visit) .paint_mv9 .paint_in,
  .paint_mv9 img {
    width: 219.76px;
  }
  @keyframes paint_mv10 {
    0% {
      width: 0;
    }
    100% {
      width: 409.91px;
    }
  }
  .paint_mv10 {
    width: 409.91px;
    right: -235px;
    bottom: 129px;
  }
  body:not(.first-visit) .paint_mv10 .paint_in,
  .paint_mv10 img {
    width: 409.91px;
    transform: rotate(180deg);
  }

  @keyframes paint_mv11 {
    0% {
      width: 0;
    }
    100% {
      width: 259.61px;
    }
  }
  .paint_mv11 {
    width: 259.61px;
    right: -187px;
    bottom: 65px;
  }
  body:not(.first-visit) .paint_mv11 .paint_in,
  .paint_mv11 img {
    width: 259.61px;
    transform: rotate(180deg);
  }
}
@media all and (max-width: 370px) {
}

/* paint1_box
***************************************************************/
.paint1_box {
  width: 1150px;
  height: 100vh;
  margin: 0 auto;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}
@media all and (min-width: 681px) {
  .paint1_box {
    max-height: 700px;
  }
}
@media all and (max-width: 680px) {
  .paint1_box {
    width: 100%;
    height: 100svh;
  }
}
@media all and (max-width: 370px) {
}

/* w_titleBox1
***************************************************************/
.w_titleBox1 {
  padding-top: 206px;
}
.w_titleBox1_tit1 {
  color: #1b7da8;
  font-size: 42px;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.4;
  padding-bottom: 20px;
  position: relative;
}
.w_titleBox1_tit1 .bold {
  font-weight: 700;
}
.w_titleBox1_tit1::after {
  content: "";
  width: 88px;
  height: 3px;
  background-color: #1b7da8;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.w_titleBox1_tit2 {
  margin-top: 36px;
  color: #1b7da8;
  font-size: 45px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: calc(45 / 33);
}
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
  .w_titleBox1 {
    padding-top: 118px;
  }
  .w_titleBox1_tit1 {
    font-size: 28px;
    padding-bottom: 12px;
  }
  .w_titleBox1_tit1::after {
    width: 70px;
    height: 2px;
  }
  .w_titleBox1_tit2 {
    margin-top: 22px;
    font-size: 33px;
    letter-spacing: 0.025em;
  }
}
@media all and (max-width: 370px) {
}

/* news_list1
***************************************************************/
.news_list1 {
  width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 60px 42px;
}
.news_list1 .li1 {
  width: calc((100% - 84px) / 3);
}
.news_list1 .link1 {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.news_list1_thumb {
  width: 100%;
  height: 237px;
  overflow: hidden;
}
.news_list1_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news_list1_txtBox {
  padding: 20px 30px 28px;
}
.news_list1_day {
  color: #a6c8d3;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.news_list1_tit1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  font-weight: 500;
  text-align: justify;
  letter-spacing: 0;
  line-height: 1.6;
  min-height: 3.2em;
  color: #1b7da8;
}
.news_list1_txt1 {
  margin-top: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
  font-weight: 400;
  text-align: justify;
  letter-spacing: 0;
  line-height: 1.6;
  min-height: 3.2em;
}
@media all and (min-width: 681px) {
  a:hover .news_list1_thumb img {
    transform: scale(1.1);
  }
}
@media all and (max-width: 680px) {
  .news_list1 {
    width: 100%;
    padding: 0 30px;
    display: block;
  }
  .news_list1 .li1 {
    width: 100%;
  }
  .news_list1 .li1:nth-of-type(n + 2) {
    margin-top: 25px;
  }
  .news_list1_thumb {
    height: calc((180 / 375) * 100vw);
  }
  .news_list1_txtBox {
    padding: 18px 24px 25px;
  }
  .news_list1_day {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .news_list1_tit1 {
    font-size: 16px;
    line-height: 1.6;
    min-height: auto;
  }
  .news_list1_txt1 {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.6;
    min-height: auto;
  }
}
@media all and (max-width: 370px) {
}

/* ページネーション
***************************************************************/
.pagination {
  margin-top: 60px;
}
.nav-links {
  display: flex;
  justify-content: center;
}
.pagination ul.page-numbers {
  display: flex;
  color: #1b7da8;
}
.pagination a.page-numbers,
.pagination span.page-numbers {
  display: inline-block;
  margin: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b7da8;
  border-radius: 100%;
  /* background: #fff; */
  color: #a6c8d3;
  border: 1px solid #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  line-height: 1;
}
.pagination .current {
  background: #1b7da8 !important;
  color: #fff !important;
  border-color: #1b7da8 !important;
}
.pagination a.prev,
.pagination a.next {
  background: transparent;
  box-shadow: none;
  border: none;
  color: #000;
}
.pagination .nav-links .dots {
  background: transparent;
  box-shadow: none;
  border: none;
}
@media all and (min-width: 681px) {
  .pagination a:hover {
    opacity: 0.5;
  }
}
@media all and (max-width: 680px) {
  .pagination {
    margin-top: 45px;
  }
  .pagination a.page-numbers,
  .pagination span.page-numbers {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* コンテンツ
***************************************************************/
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
}
@media all and (max-width: 370px) {
}

/* コンテンツ
***************************************************************/
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
}
@media all and (max-width: 370px) {
}
