@charset "UTF-8";

/*--------------------------------------------------------------------
  　↓ここからstyle.cssの内容を一旦挿入
--------------------------------------------------------------------*/
*, *::after, *::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, img, small, strong, b, dl, dt, dd, ol, ul, li, form, label, table, caption, tbody, tfoot, thead, tr, th, td, article, figure, figcaption, footer, header, nav, section {
  margin: 0;
  padding: 0;

  font: inherit;
  font-size: 100%;
  vertical-align: baseline;

  border: 0;
}

article, figcaption, figure, footer, header, nav, section {
  display: block;
}

html {
  overflow-x: hidden;
}
body {
  line-height: 1;
  overflow-x: hidden;
}

ol, ul {
  list-style: none;
}

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

button, select, input {
  padding: 0;

  background: none;
  border: none;
  border-radius: 0;
  outline: none;

  -webkit-appearance: none;

  -moz-appearance: none;

  appearance: none;
}

select::-ms-expand {
  display: none;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
}
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

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

html {
  /* font-size: 62.5%; */
  font-size: 58%;
}
@media (max-width: 960px) {
  html {
    font-size: 58%;
  }
}
@media (max-width: 800px) {
  html {
    font-size: 52%;
  }
}
@media (max-width: 750px) {
  html {
    font-size: 44%;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 39%;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 35%;
  }
}
@media (max-width: 450px) {
  html {
    /* font-size: 30%; */
    font-size: 34%;
  }
}
/* @media (max-width: 400px) {
  html {
    font-size: 27%;
  }
} */

body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow: auto;
  overflow-x: hidden;

  font-size: 1.4rem;
  line-height: 1;

  font-family: source-han-sans-japanese,sans-serif;
  font-weight: 400;
  font-style: normal;

  color: #000000;

  background-color: #ffffff;
}

@media (max-width: 750px) {
  body {
    font-size: 2.66667vw;
  }
}

body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: hidden;
}
/* ======================================================================
EFFECT
========================================================================= */
.effect-fade {
  opacity : 0;
  transform : translate(0, 45px);
  transition : all 1000ms ease;
}
.effect-fade-left-delay1 {
  opacity : 0;
  transform : translate(-45px, 0px);
  transition : all 800ms ease 0.3s
}
.effect-fade-left-delay2 {
  opacity : 0;
  transform : translate(-45px, 0px);
  transition : all 800ms ease 0.5s
}
.effect-fade-left-delay3 {
  opacity : 0;
  transform : translate(-45px, 0px);
  transition : all 800ms ease 0.8s
}
.effect-fade-right-delay1 {
  opacity : 0;
  transform : translate(45px, 0px);
  transition : all 800ms ease 0.3s
}
.effect-fade-right-delay2 {
  opacity : 0;
  transform : translate(45px, 0px);
  transition : all 800ms ease 0.5s
}
.effect-fade-delay1 {
  opacity : 0;
  transform : translate(0px, 45px);
  transition : all 800ms ease 0.8s
}
.effect-fade-delay2 {
  opacity : 0;
  transform : translate(0px, 45px);
  transition : all 800ms ease 1.1s
}
.effect-fade-delay3 {
  opacity : 0;
  transform : translate(0px, 45px);
  transition : all 800ms ease 1.4s
}
.effect-fade-delay4 {
  opacity : 0;
  transform : translate(0px, 45px);
  transition : all 1000ms ease 1.6s
}
.effect-fade-delay5 {
  opacity : 0;
  transform : translate(0px, 45px);
  transition : all 1000ms ease 1.8s
}
.effect-fade-topdown1 {
  opacity : 0;
  transform : translate(0px, -60px);
  transition : all 2300ms ease  0.9s
}
.effect-fade-topdown2 {
  opacity : 0;
  transform : translate(0px, -50px);
  transition : all 2500ms ease 2.0s
}
.effect-fade-bottomup1 {
  opacity : 0;
  transform : translate(0px, 60px);
  transition : all 2500ms ease 1.1s
}
.effect-fade-bottomup2{
  opacity : 0;
  transform : translate(0px, 60px);
  transition : all 2200ms ease 1.3s
}
.effect-fade-leftright {
  opacity : 0;
  transform : translate(-25px, 0px);
  transition : all 3000ms ease 2.5s
}

.effect-fade.effect-scroll,
.effect-fade-left-delay1.effect-scroll,
.effect-fade-left-delay2.effect-scroll,
.effect-fade-left-delay3.effect-scroll,
.effect-fade-right-delay1.effect-scroll,
.effect-fade-right-delay2.effect-scroll,
.effect-fade-delay1.effect-scroll,
.effect-fade-delay2.effect-scroll,
.effect-fade-delay3.effect-scroll,
.effect-fade-delay4.effect-scroll,
.effect-fade-delay5.effect-scroll,
.effect-fade-topdown1.effect-scroll,
.effect-fade-topdown2.effect-scroll,
.effect-fade-bottomup1.effect-scroll,
.effect-fade-bottomup2.effect-scroll,
.effect-fade-leftright.effect-scroll
{
  opacity : 1;
  transform : translate(0, 0);
}

/* ======================================================================
TEST
========================================================================= */
.gray {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
.opacity04 {
  opacity:0.4;
}
.opacity05 {
  opacity:0.5;
}
.opacity06 {
  opacity:0.6;
}
.opacity07 {
  opacity:0.7;
}
.opacity08 {
  opacity:0.8;
}
.opacity09 {
  opacity:0.9;
}
.hidden {
  display: none !important;
}

.wrapper {
  position:relative;
}

.topBtn {
  position:fixed;
  bottom:20px;
  right:20px;
  display:block;
  background-color:#F4E621;
  color:#187FBB;
  text-decoration:none;
  font-weight:bold;
  font-size:10px;
  width:60px;
  height:60px;
  text-align:center;
  line-height:22px;
  border-radius:30px;
  padding-top: 28px;
  box-sizing:border-box;
  z-index: 100;
}
.topBtn:before {
  content:'\25B2';
  position:absolute;
  top:10px;
  left:0;
  width:100%;
  text-align:center;
  font-size:18px;
}
.topBtn:hover {
  opacity:0.7;
}

.top-btn-color-blue {
  background-color: #187FBB;
  color:#fff;
}

.arrow{
  position: relative;
  display: inline-block;
  width: 12vw;
  height: 7vw;
}
@media (min-width:960px){
  .arrow {
    width: 115.2px;
    height: 67.2px;
  }
}

.arrow::before{
  content: '';
  width: 6vw;
  height: 6vw;
  border: 0px;
  border-top: solid 3px #FFF100;
  border-right: solid 3px #FFF100;
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: -16%;
  left: 25%;
}
@media (min-width:960px){
  .arrow::before {
    width: 54.6px;
    height: 54.6px;
  }
}

/* ======================================================================
common
========================================================================= */
.l-ssc-wrap {
  position: static;
  width: 100%;
  margin: 0 auto;
  max-width: 1920px;
}

/* ======================================================================
index.html
========================================================================= */
.l-ssc-header {
  position: static;
  width: 100%;
}

.l-ssc-mainvisual {
  width: 100%;
}
@media (max-width:390px) {
  .l-hr-mainvisual {
    width: 100%;
  }
}

.l-ssc-title {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  align-items:flex-start;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;

  font-size: 2.4em;
}
.l-ssc-headline {
  display: inline-block;
  width: 60%;
  color: #187FBB;
  font-weight: 540;
  line-height: 1.5;
  letter-spacing: 0.15em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  align-items: center;
  padding-top: 2em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items:center;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
}
.l-ssc-scroll {
  width: 40%;
  padding: 2em 1.5em 1.4em 2.5em;
}


.l-ssc-telephone {
  width: 100%;
  padding-top: 2em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items:center;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
}

.l-ssc-button-blue {
  width: 84%;
  display: inline-block;
  padding: 0.5em 0;
  background-color: #187FBB;
  color: #fff;
  border: none;
  border-radius: 2em;
  text-align: center;
  text-decoration: none;
  font-size: 2.4em;
  letter-spacing: 0.1em;
  font-weight: 600;
  cursor: pointer;
}
.l-ssc-button-blue:hover {
  background-color: #FFFF00;
  color: #187FBB;
}


.l-ssc-news {
  width: 100%;
  padding-top: 2em;
  padding-bottom: 2em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items:center;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
}

.l-ssc-button-pink {
  width: 84%;
  display: inline-block;
  padding: 0.5em 0;
  background-color: #FFFFFF;
  color: #FA6B90;
  border: solid;
  border-width: 3px;
  border-color: #FA6B90;
  border-radius: 2em;
  text-align: center;
  text-decoration: none;
  font-size: 2.0em;
  letter-spacing: 0.1em;
  font-weight: 600;
  cursor: pointer;
}
.l-ssc-button-pink:hover {
  background-color: #FA6B90;
  color: #FFF;
}

.l-ssc-sub-visual {
  width: 100%;
  margin-top: 4em;
  padding: 0 8%;
}

.l-ssc-subtitle {
  width: 100%;
  text-align: center;
  font-size: 5.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #187FBB;
  padding-top: 0.5em;
  padding-bottom: 1em;
}
.l-ssc-subtitle a {
  color: #187FBB;
}

.l-ssc-subtitle .small {
  display: inline-block;
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: 0.0em;
  padding-bottom: 0.8em;
}

.l-ssc-discription {
  width: 100%;
  text-align: center;
  font-size: 3.0rem;
  font-weight: 500;
  line-height: 1.5em;
}


.l-ssc-kinds {
  width: 80%;
  margin: 0 auto;
  padding-top: 2em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items:flex-start;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
}

.l-ssc-kinds .item {
  margin: 1em 4%;
  width: 33vw;
  height: 33vw;
  border-radius: 50%;
  background-color: #187FBB;
  color: #fff;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  padding-top: 1em;

  font-size: 3.4rem;
  font-weight: 600;
  line-height:1.2em;
}
.l-ssc-kinds .item a{
  color: #fff;
}
.l-ssc-kinds .health img{ width: 18%; }
.l-ssc-kinds .health p { margin-top: 0.3em; }
.l-ssc-kinds .onecoin img{ width: 30%; }
.l-ssc-kinds .onecoin p { margin-top: 0.3em; }
.l-ssc-kinds .general img{ width: 30%; }
.l-ssc-kinds .general p { margin-top: 0.3em; }
.l-ssc-kinds .kids img{ width: 32%; }
.l-ssc-kinds .kids p { margin-top: 0.8em; }
.l-ssc-kinds .junior-high-school img{ width: 32%; }
.l-ssc-kinds .junior-high-school p { margin-top: 0.5em; }
.l-ssc-kinds .school img{ width: 33%; }
.l-ssc-kinds .school p { margin-top: 0.7em; }


.l-ssc-note {
  width: 100%;
  padding: 0 8%;
  text-align: center;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.5em;
}
.l-ssc-note::before {
  content:"※";
}

.bg-color-blue {
  background-color: #E3F0F7;
}

.l-ssc-news-list {
  padding-top: 1em;
  padding-bottom: 1em;
}
.l-ssc-news-list ul {
  list-style: none;
}

.l-ssc-news-list ul li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items:flex-start;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;

  padding-top: 1em;
  padding-bottom: 1em;
}
.l-ssc-news-list ul li picture {
  width: 22%;
  padding: 0 3%;
}
.l-ssc-news-list ul li .info {
  width: 70%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items:center;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -moz-box-pack: flex-start;
}
.l-ssc-news-list ul li .info .date{
  width: auto;
  font-size: 2.3rem;
  color: #187FBB;
}
.l-ssc-news-list ul li .info .separator {
  width: 1.5em;
  font-size: 2.3rem;
  line-height: 1.8em;
  color: #187FBB;
  text-align: center;
}
.l-ssc-news-list ul li .info .separator::before {
  content:"｜";
}
.l-ssc-news-list ul li .info .type{
  width: 50%;
  font-size: 2.3rem;
  color: #187FBB;
}
.l-ssc-news-list ul li .info .headline{
  width: 95%;
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.5em;
  color: #000;
}
.l-ssc-news-list ul li .info .overview{
  width: 95%;
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1.5em;
  color: #000;
}

.l-ssc-to-news-list {
  width: 100%;
  padding-top: 1em;
  padding-bottom: 2em;
}
.l-ssc-to-news-list a {
  display: block;
  width:37%;
  padding-right: 2%;
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 2.5em;
  margin: 0 auto;
  text-align: center;

  color: #187FBB;
  border-bottom: 3px solid #187FBB;
}
.l-ssc-to-news-list a::before {
  content: '';
  display: inline-block;
  width: 2.0em;
  height: 1.5em;
  background-image: url(../img/top/icon-right-arrow-sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  vertical-align: middle;
}


.l-ssc-plan {
  padding-top: 1em;
  padding-bottom: 1em;
}
.l-ssc-plan ul {
  list-style: none;
  margin-top: -1.5em;
}

.l-ssc-plan ul li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items:flex-start;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;

  padding-top: 1em;
  padding-bottom: 1em;
}
.l-ssc-plan ul li:hover {
  opacity: 60%;
  cursor: pointer;
}
.l-ssc-plan a {
  display: block;
  width:60%;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 2.5em;
  margin: 0 auto;
  text-align: center;

  color: #187FBB;
  background-color: #F4E621;
  border-radius: 10px;
}


.l-ssc-instagram {
  padding-top: 1em;
  padding-bottom: 3em;
}
.l-ssc-instagram .l-ssc-subtitle::before {
  content: '';
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  background-image: url(../img/top/icon-instagram-sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  vertical-align: middle;
}
.l-ssc-instagram .instagram {
  width: 86%;
  margin: -1em auto 0;
}


.l-ssc-footer {
  position: static;
  width: 100%;
  padding-top: 3em;
  background-color: #fff;
}

.l-ssc-map {
  width: 100%;
  padding-bottom: 1em;
}

.l-ssc-address {
  width: 100%;
  padding: 1em 8%;
  font-size: 3.0rem;
  line-height: 1.4em;
  color: #187FBB;
  letter-spacing: 0.03em;
  font-weight: 500;
}

.l-ssc-address .postcode{
  font-size: 3.0rem;
  line-height: 1.5;
}
.l-ssc-address .business-hours {
  margin-top: 0.8em;
}

.l-ssc-line {
  width: 84%;
  margin: 0 auto;
  border-top: 1px solid #000;
}

.l-ssc-links {
  width: 84%;
  margin: 1.2em auto;
  font-size: 2.4rem;
}

.l-ssc-links a{
  color: #000;
}

.l-ssc-links li{
  display: inline-block;
  position: relative;
  padding-left: 1.1em;
  margin-right: 1em;
}

.l-ssc-links li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #000;
}




/* ======================================================================
aboutus.html
========================================================================= */
.bg-color-yello {
  background-color: #F4E621;
  color: #187FBB;
}
.l-ssc-subpage-headline .logo2 {
  position: absolute;
  right: 3%;
  top: 14em;
  width: 43%;
  z-index: 10;
}

.l-ssc-aboutus .headline {
  width: 100%;
  margin: 0 auto;
  padding-top: 1em;
  padding-bottom: 8em;
  text-align: center;
}
.l-ssc-aboutus .headline h2 {
  text-align: center;
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 1.2;
}
.l-ssc-aboutus .headline .subimage img {
  width: 7%;
  margin: 2.0em auto;
}
.l-ssc-aboutus .headline p {
  width: 80%;
  margin: 0em auto;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.6;
}
.l-ssc-aboutus .headline p .important {
  font-size: 3.0rem;
  font-weight: 600;
}

.l-ssc-aboutus .about-logo {
  width: 90%;
  margin: 0em auto 6em;
  padding: 1em 0%;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
}
.l-ssc-aboutus .about-logo h2 {
  text-align: center;
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 1.2;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.l-ssc-aboutus .about-logo hr.lineyellow {
  width: 100%;
  border-top: none;
  border-bottom: 1px #F4E621 solid;
}

.l-ssc-aboutus .about-logo img {
  width: 75%;
  margin: 0em auto;
  margin-top: 2.5em;
}

.l-ssc-aboutus .about-logo p {
  width: 100%;
  margin: 2em auto 1em;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.8;
}
.l-ssc-aboutus .information p {
  position: relative;
  text-align: left;
  padding-left: 6em;
  font-size: 2.6rem;
  padding-bottom: 0.5em;
}
.l-ssc-aboutus .information p.public a{
  text-decoration: underline;
  color: #187FBB;
}
.l-ssc-aboutus .information .name::before{
  position:absolute;
  top: 0;
  left: 0;
  content: "団体名：";
}
.l-ssc-aboutus .information .address::before{
  position:absolute;
  top: 0;
  left: 0;
  content: "所在地：";
}
.l-ssc-aboutus .information .foundation::before{
  position:absolute;
  top: 0;
  left: 0;
  content: "設　立：";
}
.l-ssc-aboutus .information .officer::before{
  position:absolute;
  top: 0;
  left: 0;
  content: "役　員：";
}
.l-ssc-aboutus .information .work::before{
  position:absolute;
  top: 0;
  left: 0;
  content: "事業内容：";
}
.l-ssc-aboutus .information .public::before{
  position:absolute;
  top: 0;
  left: 0;
  content: "公開情報：";
}

/* ======================================================================
共通強制.html
========================================================================= */
.l-scc-menu-fix {
  position: fixed;
  top: 0;
  z-index: 100;
}
.force-color-white {
  color: #FFF;
}
.force-color-blue {
  color: #187FBB;
}
.force-bgcolor-white {
  background-color: #FFF !important;
}
.wave {
  width: 20%;
  margin: 0 auto;
}

.l-ssc-aboutus .information ul li {
  text-align: left;
  padding-left: 5em;
  font-size: 2.6rem;
  padding-bottom: 0.5em;
}

/* ======================================================================
　↑ここまでstyle.cssの内容を一旦挿入
========================================================================= */


/* ======================================================================
newslist.html
========================================================================= */
.l-sw-bg {
  background-image: url(../img/bg-img.jpg);
  /* background-repeat: no-repeat; */
  background-size: 100%;  
}
.l-sw-header {
  position:static;
  padding-top: 4.65vw;
  width: 100%;
  margin: 0 auto;

  background-image: url(../img/news/bg-news-header.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.l-sw-logo {
  width: 16.89%;
  margin: 0 4.57% 4.65vw;
}

.l-sw-logo {
  width: 16.89%;
  margin: 0 4.57% 4.65vw;
}

.l-sw-title {
  height: 6.65vw;
  margin-left: 15.51%;
}
.l-sw-title img {
  width:auto;
  height: 100%;
}
@media (max-width:750px) {
  .l-sw-title {
    height: 8.65vw;
    margin-left: 8.51%;
  }
}

.l-sw-char {
  width: 46.09%;
  margin-left: 50.63%;
  margin-top: -8.7vw;
}


.l-sw-main-wrap {
  position: static;
  width: 80%;
  margin: 0 auto;
  max-width: 1920px;
}
@media (max-width:1280px) {
  .l-sw-main-wrap {
    width: 95%;
  }
}
@media (max-width:960px) {
  .l-sw-main-wrap {
    width: 100%;
  }
}

.l-sw-news {  
  position:static;
  width: 100%;
  margin: 9vw auto;
}

.l-sw-news-article {
  width: 80%;
  margin: 0 auto 10em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items:center;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center; 
}
@media (max-width:750px) {
  .l-sw-news-article {
    width: 96%;
  }
}


.l-sw-news-article .main-visual {
  width:65.39%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items:center;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -moz-box-pack: flex-start;
  padding-right: 2%;
}
@media (max-width:450px) {
  .l-sw-news-article .main-visual {
    padding-right: 4%;
  }
}

.l-sw-news-article .main-visual figure {
  width: 100%;
  margin-top: 0.5em;
}

.l-sw-news-article .main-visual figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit:cover;
  border-radius: 15px;
}

.l-sw-news-article .main-visual .date {
  font-family: filson-pro,sans-serif;
  font-weight: 500;
  font-size: 1.76rem;
  line-height: 1.5;
  letter-spacing: 0.0em;
  margin-top: 1em;
  margin-bottom: 1em;
}
@media (max-width:750px) {
  .l-sw-news-article .main-visual .date {
    font-size: 2.76rem;
  }
}

.bg-pink {
  background-color: #FFA38E;
}
.bg-green {
  background-color: #66C1B1;
}
.l-sw-news-article .main-visual .tag {
  margin-left: 3%;
  padding: 0.3em 5% 0.3em 1%;
  border-radius: 0 5px 5px 0;

  font-family: source-han-sans-japanese,sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.76rem;
}
.l-sw-news-article .main-visual .tag::before {
  content:"・";
  color: #FFF;
  font-size: 1.76rem;
  font-weight: 800;
}
@media (max-width:750px) {
  .l-sw-news-article .main-visual .tag {
    font-size: 2.76rem;
  }
}

.l-sw-news-article .article-title {
  width: 30%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items:flex-start;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  margin-top: -3em;
}
.l-sw-news-article .article-title p{
  
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;

  font-family: maru-maru-gothic-bsr-stdn,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4.5rem;
  line-height: 1.2;
  letter-spacing: 0.1em;

}
@media (max-width:750px) {
  .l-sw-news-article .article-title {
    width: 24%;
  }
  .l-sw-news-article .article-title p{
    font-size: 5.4rem;
  }
}


hr.dot-line {
  width: 95%;
  height: 3px;
  position: relative;
  border: 0;
  margin: 2em auto;
}
hr.dot-line::before {
  content: "";
  background-image: linear-gradient(to right, #FFA38E, #FFA38E 10px, transparent 10px, transparent 20px);
  background-size: 20px 2px;
  background-repeat: repeat-x;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width:750px) {
  hr.dot-line {
    margin: 1.5em auto;
  }
}

.l-sw-news-article .article-body {
  width: 96%;
  margin: 2em auto 10em;
}
@media (max-width:750px) {
  .l-sw-news-article .article-body {
    width: 96%;
    margin: 1em auto 10em;
  }
}
.l-sw-news-article .article-body p {
  font-family: maru-maru-gothic-bsr-stdn,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.25rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media (max-width:750px) {
  .l-sw-news-article .article-body p {
    font-size: 3.25rem;
  }
}


.l-sw-others {
  width: 100%;
  text-align: center;
}
.button01 {
  margin: 0 auto;
  padding: 0.3em 8%;
  border-style: solid;
  border-width: 3px;
  border-color: #000;
  border-radius: 9999px;

  font-size: 2.88rem;
  letter-spacing: 0.1em;
  background-color: #FFF;
  white-space: nowrap;
  color: #000;
}
@media (max-width:750px) {
  .button01 {
    padding: 0.3em 10%;
    font-size: 3.88rem;
  }
}



.l-sw-footer {
  position:static;
  padding-top: 25.65vw;
  padding-bottom: 10.65vw;
  width: 100%;
  margin: 0 auto;

  background-image: url(../img/news/bg-news-footer.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media (max-width:600px) {
  .l-sw-footer {
    padding-top: 25.65vw;
    padding-bottom: 5.65vw;
  }
}

.l-sw-footer-contents {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items:center;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
}
.l-sw-footer-contents .logo {
  width: 25%;
}
@media (max-width:600px) {
  .l-sw-footer-contents .logo {
    width: 30%;
  }
}

.l-sw-footer-contents .address {
  width: 25%;
  padding-left: 1%;
  text-align: center;

  font-family: satsuki-gendai-mincho-m,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.96vw;
  letter-spacing: 0.04em;
  color: #FFF;
}
@media (max-width:600px) {
  .l-sw-footer-contents .address {
    width: 40%;
    font-size: 2.96vw;
  }
}

.l-sw-footer-contents .tel {
  width: 90%;
  height: 3.95vw;
  text-align: center;
  margin: 0.5em auto 1.2em;
}
.l-sw-footer-contents .tel img {
  width: auto;
  height: 100%;
}
@media (max-width:600px) {
  .l-sw-footer-contents .tel {
    height: 5.2vw;
  }
}


.l-sw-footer-contents .fax {
  width: 23%;
  padding-left: 1%;
  text-align: center;

  font-family: satsuki-gendai-mincho-m,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.98vw;
  letter-spacing: 0.1em;
  color: #FFF;
}
.l-sw-footer-contents .fax::before {
  content:"fax.";
}
@media (max-width:600px) {
  .l-sw-footer-contents .fax {
    width: 28%;
    font-size: 2.56vw;
  }
}

.l-sw-footer-contents .mail {
  width: 34%;
  padding-left: 1%;
  text-align: center;

  font-family: satsuki-gendai-mincho-m,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.98vw;
  letter-spacing: 0.1em;
  color: #FFF;
}
.l-sw-footer-contents .mail::before {
  content:"Mail ";
}
@media (max-width:600px) {
  .l-sw-footer-contents .mail {
    width: 43%;
    font-size: 2.56vw;
  }
}

.l-sw-footer-contents .policy {
  width: 80%;
  text-align: center;
  margin: 2em auto;
}
.l-sw-footer-contents .policy>a {
  font-family: satsuki-gendai-mincho-m,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.28vw;
  letter-spacing: 0.1em;
  color: #FFF;
}
.l-sw-footer-contents .policy>a::before {
  content:"▶";
}
@media (max-width:600px) {
  .l-sw-footer-contents .policy {
    margin: 0.9em auto;
  }
  .l-sw-footer-contents .policy>a {
    font-size: 1.98vw;
  }
}


.l-sw-footer-contents .copyright {
  width: 80%;
  text-align: center;
  margin: 0em auto;
  font-family: satsuki-gendai-mincho-m,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.78vw;
  letter-spacing: 0.1em;
  color: #FFF;
}

.l-sw-menu {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items:flex-start;
  justify-content: flex-end;
  -webkit-box-pack: flex-end;
  -moz-box-pack: flex-end;
  z-index: 900;
}
.l-sw-menu .icon {
  position: static;
  width: 6vw;
  margin: 2vw 2.5vw 0 0;
  z-index: 999;
}

@media (max-width:750px) {
  .l-sw-menu .icon {
    width: 7vw;
    margin: 6vw 4.5vw 0 0;
  }
}
.l-sw-menu .icon:hover {
  cursor: pointer;
  opacity: 0.7;
}
.l-sw-menu .menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  opacity: 0;

  height: 56.25vw;
  transition: .5s;

  background-image: url(../img/menu/bg-menu.png);
  /* background-repeat: no-repeat; */
  background-size: 100%;  
  background-position: bottom;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items:center;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
}
@media (max-width:750px) {
  .l-sw-menu .menu {
    height: 80vh;
  }
}
@media (max-width:600px) {
  .l-sw-menu .menu {
    height: 100vh;
  }
}

.l-sw-menu.open .menu {
  width: 100%;
  opacity: 1;
}
.l-sw-menu .menu .logo {
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items:center;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
}
@media (max-width:960px) {
  .l-sw-menu .menu .logo {
    width: 30%;
  }
}
@media (max-width:750px) {
  .l-sw-menu .menu .logo {
    width: 100%;
    height: auto;
    padding-top: 10vw;
  }
}

.l-sw-menu .menu .logo img {
  width: 18.3vw;
}
@media (max-width:750px) {
  .l-sw-menu .menu .logo img {
    width: 28.3vw;
  }
}

.l-sw-menu .menu .itemlist {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
}
@media (max-width:750px) {
  .l-sw-menu .menu .itemlist {
    width: 80%;
    height: 70%;
  }
}

.l-sw-menu .menu .itemlist ul {
  height: 70%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items:center;
  justify-content: space-around;
  -webkit-box-pack: space-around;
  -moz-box-pack: space-around;
}
.l-sw-menu .menu .itemlist ul li {
  width: 100%;
  height: 9vw;
  max-height: 9vh;
  padding-left: 40%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items:center;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -moz-box-pack: flex-start;

  font-size: 2.02em;
  letter-spacing: 0.1em;

  background-repeat: no-repeat;
  background-size: auto 50%;
  background-position: 10% 45%;
}
@media (max-width:1280px) {
  .l-sw-menu .menu .itemlist ul li {
    background-size: auto 40%;
  }
}
@media (max-width:960px) {
  .l-sw-menu .menu .itemlist ul li {
    background-size: auto 40%;
  }
}
@media (max-width:750px) {
  .l-sw-menu .menu .itemlist ul li {
    font-size: 1.5em;
    background-size: auto 50%;
  }
}

.l-sw-menu .menu .itemlist ul li:hover {
  cursor: pointer;
}
.l-sw-menu .menu .itemlist ul li.news {
  background-image: url(../img/menu/menu-item-news.png);
}  
.l-sw-menu .menu .itemlist ul li.store {
  background-image: url(../img/menu/menu-item-store.png);
}  
.l-sw-menu .menu .itemlist ul li.about {
  background-image: url(../img/menu/menu-item-about.png);
}  
.l-sw-menu .menu .itemlist ul li.contact {
  background-image: url(../img/menu/menu-item-contact.png);
}
.l-sw-menu .menu .linklist {
  width: 10%;
  height: 100%;
}
@media (max-width:750px) {
  .l-sw-menu .menu .linklist {
    width: 0%;
    height: 80%;
  }
}

.l-sw-menu .menu .linklist ul {
  margin-top: 6vw;
  height: 70%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items:center;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -moz-box-pack: flex-start;
}
@media (max-width:750px) {
  .l-sw-menu .menu .linklist ul {
    margin-top: 0vw;
    height: 95%;
    justify-content: flex-end;
    -webkit-box-pack: flex-end;
    -moz-box-pack: flex-end;
  }
}
.l-sw-menu .menu .linklist ul li {
  width: 100%;
  height: 10vh;
  padding-left: 40%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items:center;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -moz-box-pack: flex-start;

  background-repeat: no-repeat;
  background-position: 50% 50%;
}
@media (max-width:750px) {
  .l-sw-menu .menu .linklist ul li {
    align-items:flex-start;
  }
}

.l-sw-menu .menu .linklist ul li:hover {
  cursor: pointer;
}
.l-sw-menu .menu .linklist ul li.store {
  background-image: url(../img/menu/menu-icon-store.png);
  background-size: auto 60%;
}  
.l-sw-menu .menu .linklist ul li.instagram {
  background-image: url(../img/menu/menu-icon-instagram.png);
  background-size: auto 50%;
}  
.l-sw-menu .menu .linklist ul li.facebook {
  background-image: url(../img/menu/menu-icon-facebook.png);
  background-size: auto 54%;
}  
.l-sw-menu .menu .linklist ul li.twitter {
  background-image: url(../img/menu/menu-icon-twitter.png);
  background-size: auto 46%;
}

.pc-none {
  display: none;
}

@media (max-width:750px) {
.pc-none {
  display: block;
}

.l-ssc-news.pc-none {
  display: flex;
}

.sp-none {
  display: none;
}

}

.l-ssc-news-main {
  padding: 0 3em;
}

.l-ssc-subpage-headline .main-visual {
  right: -18%;
  top:15em;
}
@media(max-width:750px) {
  .l-ssc-subpage-headline .main-visual {
    right: -25%;
    top:12em;
  }
}

.main-visual-title {
  position: relative;
}

.main-visual-title::after{
  content:"";
  width: 10em;
  height: 10em;
  background-image: url(../img/news/ressabachan.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 22em;
  top: 50%;
}
@media(max-width:750px) {
  .main-visual-title::after{
    width: 5em;
    height: 5em;
    left: 12em;
  }
}

.main-visual-title-text {
  font-size: 5em;
  color: #187FBB;
  line-height: 1.1;
  font-weight: 600;
}
@media (max-width:750px) {
  .main-visual-title-text {
    font-size: 3em;
  }
}


.main-visual-title-text .main-visual-small {
  font-size: 0.55em;
  font-weight: 400;
}

.l-ssc-button-pink {
  position: relative;
  font-weight: 500;
}

.l-ssc-button-pink::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 88%;
  background-image: url(../img/news/icon-instagram-color.png);
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 0.1em;
}

.l-ssc-news-main .l-ssc-button-pink::after {
  left: 86%;
}

.l-ssc-news-list ul {
  display: flex;
  flex-direction: column;
  gap: 2em 0;
}


.l-ssc-news-list ul li {
  background-color: #FFF;
  border-radius: 2em;
  padding-top: 1.8em;
  padding-bottom: 1.8em;
}

@media (max-width:750px) {
  .l-sw-menu .menu .linklist ul li {
    align-items:flex-start;
  }
}

