@charset "UTF-8";
/*
theme Name: SAWAMURA STYLE
Author: tomoyukikamimura
Description: original theme
version： 1.0.0
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;700;900&display=swap");
html, body {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  line-height: 1.7;
  font-family: 'Noto Sans JP','Hiragino Kaku Gothic ProN','メイリオ','ＭＳ Ｐゴシック',sans-serif;
  color: #333;
  background-color: #fff;
  word-break: break-all;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

li {
  list-style: none;
}

figure {
  width: 100%;
  max-width: 100%;
}

address {
  word-break: break-all;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: inherit;
  word-break: break-all;
}

a:hover {
  cursor: pointer;
}

a.disable:hover {
  cursor: default;
  opacity: 1;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

*, *:before, *:after {
  box-sizing: border-box;
  -webkit-touch-callout: none;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }

  .pc {
    display: none !important;
  }
}
/*--------------------------------------------------------------
	HEADER
--------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: none;
  background-color: #fff;
  z-index: 4;
}
.header .inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.header .menu_wrap {
  display: flex;
  width: 100%;
  max-width: 1540px;
  margin-left: auto;
}

.hed_logo .logo {
  max-width: 100px;
}

/*--------------------------------------------------------------
	nav
--------------------------------------------------------------*/
.nav_wrap {
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: flex-end;
  align-self: center;
  width: 100%;
  font-family: 'Lora' , serif;
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.8);
}

.nav_list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav_list li {
  padding: 0 15px;
  line-height: 12px;
  border-right: 1px solid #707070;
}
.nav_list li:last-child {
  border-right: none;
}

/*--------------------------------------------------------------
	pc_nav_list hover
--------------------------------------------------------------*/
[class^="nav_list"] li a {
  position: relative;
  display: block;
}

[class^="nav_list"] li a:after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 80%;
  height: 1px;
  background: rgba(0, 0, 0, 0.3);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

[class^="nav_list"] li a:hover:after {
  transform: scale(1, 1);
}

#nav-toggle {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  z-index: 999;
}

#nav-toggle:hover {
  cursor: pointer;
}

#nav-toggle > div {
  position: relative;
  width: 40px;
  height: 40px;
}

#nav-toggle span {
  width: 30px;
  height: 1px;
  display: block;
  background: #000;
  position: absolute;
  left: 5px;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
  top: 16px;
}

#nav-toggle span:nth-child(2) {
  top: 22px;
}

@media screen and (max-width: 1084px) {
  .header {
    background-color: #fff;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  .header .menu_wrap {
    display: block;
  }

  .header.open {
    transform: translateX(20%);
    overflow-y: auto;
  }

  .hed_logo .logo {
    max-width: 100px;
  }

  .header.transform {
    background: none;
  }

  .nav_wrap {
    width: 100%;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 10px 20% 10px 0;
    font-size: 1.5rem;
    color: #000000;
    background-color: #fff;
    -webkit-overflow-scrolling: touch;
  }

  .nav_anime {
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
  }

  .nav_wrap.open {
    transform: translateX(20%);
    overflow-y: auto;
  }

  .nav_list {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: flex-start;
    position: relative;
    padding-top: 50px;
    background-color: rgba(255, 255, 255, 0.95);
    line-height: inherit;
  }

  .nav_list li {
    padding: 0 2rem;
    line-height: 12px;
    border-right: none;
    margin-bottom: 30px;
  }

  .nav_list li a:before {
    display: none;
  }

  .nav_list li a:after {
    display: none;
  }

  .nav_list_sub {
    margin-left: inherit;
  }

  .nav_list_sub li:nth-of-type(2) {
    padding: 0 0 0 0.4rem;
  }

  #nav-toggle {
    display: block;
  }
  #nav-toggle .nav_btn_trigger {
    overflow: hidden;
  }

  #nav-toggle.open span:nth-child(1) {
    top: 19px;
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  #nav-toggle.open span:nth-child(2) {
    top: 20px;
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
}
#overlay {
  display: none;
}

@media screen and (max-width: 1000px) {
  #overlay {
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }

  #overlay {
    z-index: 3;
  }

  #overlay.open {
    display: block;
  }
}
/*--------------------------------------------------------------
 Layout
--------------------------------------------------------------*/
body {
  background-color: #EDF0F2;
  font-size: 1.6rem;
  line-height: 1.8;
}

.container {
  width: 100%;
}

@media screen and (max-width: 1000px) {
  body {
    min-width: 100%;
  }
}
/*--------------------------------------------------------------
	top_info
--------------------------------------------------------------*/
.top_info {
  font-family: 'Noto Serif JP', serif;
  font-weight: 800;
  width: 100%;
  max-width: 850px;
  background: #000;
  color: #fff;
  font-size: 4rem;
  line-height: 1.2;
  letter-spacing: -0.09em;
  margin: 0 auto 20px;
  padding: 10px 0;
  background-color: #cf2e2e;
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0.25, #000), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, #000), color-stop(0.75, #000), color-stop(0.75, transparent), to(transparent));
  -webkit-background-size: 20px 20px;
}
.top_info .top_info_txt {
  background: #000;
  padding: 0 30px;
}

@media screen and (max-width: 1000px) {
  .top_info {
    font-family: 'Noto Serif JP', serif;
    font-weight: 800;
    width: 100%;
    max-width: 850px;
    background: #000;
    color: #fff;
    font-size: 4rem;
    line-height: 1.2;
    letter-spacing: -0.09em;
    margin: 0 auto 20px;
    padding: 10px 0;
    background-color: #cf2e2e;
    background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0.25, #000), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, #000), color-stop(0.75, #000), color-stop(0.75, transparent), to(transparent));
    -webkit-background-size: 20px 20px;
  }
  .top_info .top_info_txt {
    background: #000;
    padding: 0;
  }
}
/*--------------------------------------------------------------
	sns_icons
--------------------------------------------------------------*/
.sns_icons {
  font-size: 2rem;
}
.sns_icons.active {
  position: fixed;
  bottom: 10px;
}
.sns_icons ul {
  display: inline-flex;
  flex-direction: column;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sns_icons {
    font-size: 1.8rem;
  }
  .sns_icons.active {
    position: fixed;
    bottom: 10px;
  }
  .sns_icons ul {
    display: inline-flex;
    flex-direction: column;
    text-align: center;
    line-height: 1.5;
  }
}
/*--------------------------------------------------------------
	ttl
--------------------------------------------------------------*/
/*--------------------------------------------------------------
	section topics
--------------------------------------------------------------*/
section.topics {
  position: relative;
}
section.topics .wrap {
  padding: 120px 0;
  position: relative;
}
section.topics .wrap:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 350px;
  background-image: url("../images/bg_topics.png");
  background-size: cover;
  z-index: -1;
}
section.topics .contents {
  max-width: 1000px;
  margin: 0 auto;
}
section.topics .inner {
  padding: 0 10px;
}
section.topics .sc_ttl {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
section.topics .sc_ttl h2 {
  font-size: 5rem;
  font-weight: lighter;
  color: #333;
  padding-bottom: 0.15em;
  line-height: 1.1;
}
section.topics .sc_ttl span {
  font-size: 3rem;
  padding-left: 0.25em;
}
section.topics .topics_wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
section.topics .topics_list_tab ul {
  display: flex;
}
section.topics .topics_list_tab li {
  position: relative;
  width: 100%;
  max-width: 120px;
  padding: 10px 0;
  background-color: #fff;
  font-size: 1.6rem;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}
section.topics .topics_list_tab li:after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 15px;
  position: absolute;
  transform: translateY(-50%);
  right: 0;
  top: 50%;
  background-color: #333;
}
section.topics .topics_list_tab li:last-child:after {
  display: none;
}
section.topics .topics_list_tab li.is_active {
  background-color: #3b98d6;
  color: #fff;
}
section.topics .topics_list_tab li:hover {
  background-color: #3b98d6;
  color: #fff;
}
section.topics .topics_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0 40px;
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 1.6rem;
}
section.topics .topics_list ul {
  margin-bottom: 20px;
}
section.topics .topics_list ul a {
  display: flex;
  margin-bottom: 20px;
}
section.topics .topics_list ul span {
  margin-left: 0.5em;
}
section.topics .topics_list ul time {
  margin-right: 30px;
  display: block;
  width: 5em;
  word-break: keep-all;
}
section.topics #topics_list ul {
  display: none;
}
section.topics #topics_list ul.is_show {
  display: block;
}

@media screen and (max-width: 768px) {
  section.topics .wrap {
    min-height: 627px;
    padding: 40px 0 176px;
  }
  section.topics .wrap:after {
    height: 450px;
    background-image: url("../images/bg_topics_sp.jpg");
  }
  section.topics .contents {
    max-width: 1000px;
    margin: 0 auto;
  }
  section.topics .sc_ttl {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
  }
  section.topics .sc_ttl h2 {
    font-size: 2.7rem;
    line-height: 1.1;
  }
  section.topics .sc_ttl span {
    font-size: 1.8rem;
    padding-left: 0.25em;
  }
  section.topics .topics_wrap {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }
  section.topics .topics_list_tab ul {
    display: flex;
  }
  section.topics .topics_list_tab li {
    position: relative;
    width: 100%;
    max-width: 80px;
    padding: 5px 0;
    background-color: #fff;
    font-size: 1.4rem;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
  }
  section.topics .topics_list_tab li:after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 15px;
    position: absolute;
    transform: translateY(-50%);
    right: 0;
    top: 50%;
    background-color: #333;
  }
  section.topics .topics_list_tab li:last-child:after {
    display: none;
  }
  section.topics .topics_list_tab li.is_active {
    background-color: #3b98d6;
    color: #fff;
  }
  section.topics .topics_list_tab li:hover {
    background-color: #3b98d6;
    color: #fff;
  }
  section.topics .topics_list {
    width: calc((355 / 375) * 100vw);
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: 50px 20px 40px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
  }
  section.topics .topics_list ul {
    margin-bottom: 20px;
  }
  section.topics .topics_list ul a {
    margin-bottom: 15px;
  }
  section.topics .topics_list ul span {
    margin-left: 0.5em;
  }
  section.topics .topics_list ul time {
    margin-right: 10px;
    display: block;
    width: 4em;
    word-break: keep-all;
  }
}
/*--------------------------------------------------------------
 topics_post
--------------------------------------------------------------*/
section.topics_post {
  position: relative;
}
section.topics_post .wrap {
  min-height: 960px;
  padding: 120px 0;
  position: relative;
}
section.topics_post .contents {
  max-width: 1000px;
  margin: 0 auto;
}
section.topics_post .inner {
  padding: 0 10px;
}
section.topics_post .sc_ttl {
  display: flex;
  margin-bottom: 30px;
}
section.topics_post .sc_ttl h1 {
  font-size: 5rem;
  font-weight: lighter;
  color: #111;
  padding-bottom: 0.15em;
  line-height: 1.1;
}
section.topics_post .sc_ttl span {
  font-size: 3rem;
  padding-left: 0.25em;
}
section.topics_post time {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: lighter;
  color: #111;
}
section.topics_post .post_wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  padding: 50px 0 100px;
}
section.topics_post .post_contents {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
section.topics_post .post_tmb {
  text-align: center;
  margin-bottom: 50px;
}
section.topics_post .txt {
  margin-bottom: 50px;
}
section.topics_post .txt:last-child {
  margin-bottom: 0;
}
section.topics_post .post_images {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  section.topics_post {
    position: relative;
  }
  section.topics_post .wrap {
    min-height: 960px;
    padding: 50px 0 120px;
    position: relative;
  }
  section.topics_post .contents {
    max-width: 1000px;
    margin: 0 auto;
  }
  section.topics_post .inner {
    padding: 0 10px;
  }
  section.topics_post .sc_ttl {
    display: flex;
    margin-bottom: 30px;
  }
  section.topics_post .sc_ttl h1 {
    font-size: 2.7rem;
    font-weight: lighter;
    color: #111;
    padding-bottom: 0.15em;
    line-height: 1.1;
  }
  section.topics_post .sc_ttl span {
    font-size: 1.8rem;
    padding-left: 0.25em;
  }
  section.topics_post .post_wrap {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    padding: 0 0 100px;
    font-size: 1.3rem;
  }
  section.topics_post .post_contents {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
  }
  section.topics_post .post_tmb {
    text-align: center;
    margin-bottom: 20px;
  }
  section.topics_post .txt {
    margin-bottom: 20px;
  }
  section.topics_post .txt:last-child {
    margin-bottom: 0;
  }
  section.topics_post .post_images {
    margin-bottom: 20px;
  }
}
/*--------------------------------------------------------------
 topics_nav_links
--------------------------------------------------------------*/
section.topics .nav-links,
section.topics_list .nav-links,
section.topics_post .nav-links {
  display: flex;
  justify-content: center;
  padding-top: 10px;
  font-size: 1.4rem;
  color: #fff;
}
section.topics .nav-links .nav-previous,
section.topics_list .nav-links .nav-previous,
section.topics_post .nav-links .nav-previous {
  margin-right: 15px;
}

section.topics_list .nav-links {
  color: #fff;
}

section.topics_post .nav-links {
  padding-top: 80px;
  color: #000;
}

@media screen and (max-width: 768px) {
  section.topics .nav-links,
  section.topics_list .nav-links,
  section.topics_post .nav-links {
    display: flex;
    justify-content: center;
    padding-top: 10px;
    font-size: 1.4rem;
    color: #fff;
  }
  section.topics .nav-links .nav-previous,
  section.topics_list .nav-links .nav-previous,
  section.topics_post .nav-links .nav-previous {
    margin-right: 15px;
  }

  section.topics_list .nav-links {
    color: #fff;
  }

  section.topics_post .nav-links {
    padding-top: 50px;
    color: #000;
  }
}
/*--------------------------------------------------------------
	section shop
--------------------------------------------------------------*/
section.shop_info {
  position: relative;
  padding-top: 100px;
}
section.shop_info .wrap {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding-bottom: 5px;
}
section.shop_info .wrap:after {
  content: '';
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 100vw;
  height: 30px;
  background-color: #28A7C8;
  z-index: -1;
}
section.shop_info .inner {
  padding: 0 10px;
}
section.shop_info .shop_wrap {
  width: 100%;
  max-width: 1600px;
  display: flex;
  justify-content: flex-end;
}
section.shop_info .info_wrap {
  width: 100%;
  max-width: 400px;
}
section.shop_info .sc_ttl {
  display: flex;
  margin-bottom: 25px;
}
section.shop_info .sc_ttl h2 {
  font-size: 5rem;
  font-weight: lighter;
  color: #333;
  padding-bottom: 0.15em;
  line-height: 1.1;
}
section.shop_info .access {
  background-color: #fff;
  padding: 61px 15px 61px 61px;
  font-size: 1.4rem;
}
section.shop_info .access dl {
  display: flex;
  margin-bottom: 15px;
}
section.shop_info .access dl:last-child {
  margin-bottom: 0;
}
section.shop_info .access dd span,
section.shop_info .access dt span {
  display: block;
}
section.shop_info .access dt {
  width: 30%;
  max-width: 58px;
  margin-right: 60px;
}
section.shop_info .access dt:last-child {
  margin-bottom: 0;
}
section.shop_info .access dt span {
  font-size: 1rem;
  line-height: 1;
  font-style: italic;
}
section.shop_info .g_map {
  width: 100%;
  max-width: 800px;
}
section.shop_info .g_map iframe {
  width: 100%;
}

@media screen and (max-width: 480px) {
  section.shop_info {
    position: relative;
    padding-top: 40px;
  }
  section.shop_info .wrap {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding-bottom: 5px;
  }
  section.shop_info .wrap:after {
    display: none;
  }
  section.shop_info .inner {
    padding: 0;
  }
  section.shop_info .shop_wrap {
    width: 100%;
    max-width: 1600px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
  }
  section.shop_info .info_wrap {
    width: 100%;
    max-width: 400px;
    padding: 0 10px;
    margin: 0 auto;
  }
  section.shop_info .sc_ttl {
    display: flex;
    margin-bottom: 25px;
  }
  section.shop_info .sc_ttl h2 {
    font-size: 2.7rem;
    font-weight: lighter;
    color: #333;
    padding-bottom: 0.15em;
    line-height: 1.1;
  }
  section.shop_info .access,
  section.shop_info .move_txt {
    background-color: #fff;
    padding: 20px 10px 20px 20px;
    font-size: 1.4rem;
  }
  section.shop_info .access dl,
  section.shop_info .move_txt dl {
    display: flex;
    margin-bottom: 15px;
    font-style: italic;
  }
  section.shop_info .access dl:last-child,
  section.shop_info .move_txt dl:last-child {
    margin-bottom: 0;
  }
  section.shop_info .access dd span,
  section.shop_info .access dt span,
  section.shop_info .move_txt dd span,
  section.shop_info .move_txt dt span {
    display: block;
  }
  section.shop_info .access dt,
  section.shop_info .move_txt dt {
    width: 30%;
    max-width: 58px;
    margin-right: 60px;
  }
  section.shop_info .access dt:last-child,
  section.shop_info .move_txt dt:last-child {
    margin-bottom: 0;
  }
  section.shop_info .access dt span,
  section.shop_info .move_txt dt span {
    font-size: 1rem;
    line-height: 1;
  }
  section.shop_info .g_map {
    width: 100%;
    max-width: 400px;
    padding: 0 10px;
    margin: 0 auto;
  }
  section.shop_info .g_map .g_map_inner {
    padding: 0 10px;
    background-color: #fff;
  }
  section.shop_info .g_map iframe {
    width: 100%;
    height: 300px;
  }
  section.shop_info .move_txt {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    padding: 20px 10px 30px 20px;
  }
}
/*--------------------------------------------------------------
	section about + privecy
--------------------------------------------------------------*/
section.about,
section.privecy {
  position: relative;
  font-size: 1.4rem;
}
section.about .wrap,
section.privecy .wrap {
  padding: 120px 0;
  position: relative;
}
section.about .contents,
section.privecy .contents {
  max-width: 1000px;
  margin: 0 auto;
}
section.about .inner,
section.privecy .inner {
  padding: 0 10px;
}
section.about .sc_ttl,
section.privecy .sc_ttl {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
section.about .sc_ttl h1,
section.privecy .sc_ttl h1 {
  font-size: 3rem;
  font-weight: lighter;
  color: #333;
  padding-bottom: 0.15em;
  line-height: 1.1;
}
section.about .txt_area,
section.privecy .txt_area {
  background-color: #fff;
  padding: 50px 20px 100px;
  min-height: 500px;
}
section.about .txt_area p,
section.privecy .txt_area p {
  margin-bottom: 20px;
}
section.about a,
section.privecy a {
  color: #28A7C8;
}

@media screen and (max-width: 768px) {
  section.about,
  section.privecy {
    position: relative;
  }
  section.about .wrap,
  section.privecy .wrap {
    padding: 50px 0 0;
    position: relative;
  }
  section.about .contents,
  section.privecy .contents {
    max-width: 1000px;
    margin: 0 auto;
  }
  section.about .inner,
  section.privecy .inner {
    padding: 0 10px;
  }
  section.about .sc_ttl,
  section.privecy .sc_ttl {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
  }
  section.about .sc_ttl h1,
  section.privecy .sc_ttl h1 {
    font-size: 2rem;
    font-weight: lighter;
    color: #333;
    padding-bottom: 0.15em;
    line-height: 1.1;
  }
  section.about .txt_area,
  section.privecy .txt_area {
    background-color: #fff;
    padding: 30px 20px 100px;
    min-height: 500px;
  }
}
/*--------------------------------------------------------------
	footer
--------------------------------------------------------------*/
.footer {
  padding: 90px 0;
}
.footer #page-top {
  max-width: 70px;
  padding: 15px 0 10px;
  margin: 0 auto 30px;
  font-size: 1.2rem;
  text-align: center;
  cursor: pointer;
}
.footer #page-top img {
  transition: .3s;
  margin-bottom: 10px;
}
.footer #page-top:hover img {
  transform: translateY(-5px);
}

.footer_inner {
  font-size: 1.2rem;
}
.footer_inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer_inner ul li {
  padding: 0;
}
.footer_inner ul li:first-child {
  margin-right: 25px;
}

.c-right {
  padding: 2rem 0;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .footer {
    padding: 50px 0;
  }

  .footer_inner {
    font-size: 1rem;
  }
  .footer_inner ul li {
    padding: 0;
  }
  .footer_inner ul li:first-child {
    margin-right: 20px;
  }
}
/*--------------------------------------------------------------
	section home
--------------------------------------------------------------*/
section.home {
  height: 100%;
}
section.home .slider_wrap {
  position: relative;
}
section.home .slider_wrap .kv_logo {
  max-width: 400px;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translateY(-50%) translateX(50%);
  z-index: 1;
}
section.home [class^="home_bg"] {
  display: block;
  margin: 0;
  padding: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  max-width: 100%;
  height: 100vh;
  min-height: 100%;
  z-index: 1;
}
section.home .home_bg_1 {
  background-image: url("../images/slide/bg_1.jpg");
}
section.home .home_bg_2 {
  background-image: url("../images/slide/bg_2.jpg");
}
section.home .home_bg_3 {
  background-image: url("../images/slide/bg_3.jpg");
}
section.home .home_bg_4 {
  background-image: url("../images/slide/bg_4.jpg");
}
section.home .home_bg_5 {
  background-image: url("../images/slide/bg_5.jpg");
}
section.home .home_bg_6 {
  background-image: url("../images/slide/bg_6.jpg");
}
section.home .bnr_main {
  max-width: 870px;
  margin: 20px auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  section.home .slider_wrap {
    position: relative;
  }
  section.home .slider_wrap .kv_logo {
    width: 70%;
    text-align: center;
  }
  section.home .bnr_main {
    max-width: 96%;
  }
}
.loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 9999;
}
.loading .animation {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  -webkit-animation: loadinganimation 1500ms ease-out forwards infinite;
  animation: loadinganimation 1500ms ease-out forwards infinite;
}
.loading .animation .spinner {
  margin: 0 auto;
  width: 70px;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.loading .animation .spinner > div {
  width: 18px;
  height: 18px;
  background-color: #28A7C8;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.loading .animation .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loading .animation .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%,
    100%,
    80% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%,
    100%,
    80% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  background: #fff;
  text-align: center;
  color: #fff;
  opacity: 1;
  visibility: visible;
}

#splash.is-active {
  opacity: 0;
  visibility: hidden;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#splash_logo svg {
  width: 300px;
}

/*========= SVG操作手書き風にするためのCSS ===============*/
#mask .st0 {
  fill: none;
  stroke: #fff;
  stroke-width: 90;
  /*線の太さを指定する*/
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1500;
  /* 線の間隔を指定する */
  stroke-dashoffset: 1500;
  /* 線の位置を指定する */
}

/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/
.splashbg {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.is-active .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #28A7C8;
  /*伸びる背景色の設定*/
  animation-name: PageAnime;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
/*bodyにappearクラスがついたら出現*/
#container {
  opacity: 0;
}

body.is-active #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#mask path {
  fill-opacity: 0;
  /*最初は透過0で見えない状態*/
  transition: fill-opacity .5s;
  /*カラーがつく際のアニメーション0.5秒で変化*/
  fill: none;
  /*塗りがない状態*/
  stroke: #d90303;
  /*線の色*/
}

/*アニメーション後に.doneというクラス名がで付与された時の指定*/
#mask.done path {
  fill: #d90303;
  /*塗りの色*/
  fill-opacity: 1;
  /*透過1で見える状態*/
  stroke: none;
  /*線の色なし*/
}

.slick_type_bg {
  opacity: 0;
  transition: opacity .2s linear;
  visibility: hidden;
}

.slick_type_bg.slick-initialized {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
 button
--------------------------------------------------------------*/
#Read_more.vbt {
  visibility: hidden;
}

.btn_wrap {
  width: 100%;
  max-width: 120px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 1.5rem;
}
.btn_wrap .button {
  position: relative;
  display: block;
  width: 100%;
  padding: 5px;
  border: 1px solid #28a7c8;
  background-color: #fff;
  color: #28A7C8;
  text-align: center;
  transition: all 0.3s;
}
.btn_wrap .button:hover {
  opacity: 1;
  background-color: #28a7c8;
  color: #fff;
  cursor: pointer;
}
.btn_wrap .arrow {
  position: relative;
  transition: 0.3s all;
  margin: 0;
}
.btn_wrap .arrow:after, .btn_wrap .arrow:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 1px;
}
.btn_wrap .arrow:before {
  right: 0;
  width: 10px;
  background: #28A7C8;
}
.btn_wrap .arrow:after {
  right: -15px;
  transform: translateY(0px);
  width: 20px;
  background: #28A7C8;
}
.btn_wrap .arrow:hover:before {
  background: #fff;
}
.btn_wrap .arrow:hover:after, .btn_wrap .arrow:hover:before {
  transition: 0.3s all;
  transform: translateX(5px);
}

@media screen and (max-width: 768px) {
  .btn_wrap {
    width: 100%;
    max-width: 120px;
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 1.2rem;
  }
  .btn_wrap .button {
    position: relative;
    display: block;
    width: 100%;
    padding: 5px;
    border: 1px solid #28a7c8;
    background-color: #fff;
    color: #28A7C8;
    text-align: center;
  }
  .btn_wrap .button:hover {
    opacity: 1;
    background-color: #28a7c8;
    color: #fff;
    cursor: pointer;
  }
  .btn_wrap .arrow {
    position: relative;
    margin: 0;
  }
  .btn_wrap .arrow:after, .btn_wrap .arrow:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 1px;
  }
  .btn_wrap .arrow:before {
    right: 0;
    width: 10px;
    background: #28A7C8;
  }
  .btn_wrap .arrow:after {
    right: -15px;
    transform: translateY(0px);
    width: 20px;
    background: #28A7C8;
  }
  .btn_wrap .arrow:hover:before {
    background: #fff;
  }
  .btn_wrap .arrow:hover:after, .btn_wrap .arrow:hover:before {
    transform: translateX(5px);
  }
}
/*--------------------------------------------------------------
 scroll_line
--------------------------------------------------------------*/
.top_area .scroll_line {
  position: absolute;
  right: 15px;
  bottom: 0;
}

.topics .sc_area {
  width: 100%;
  max-width: 1400px;
  height: 300px;
  margin: 0 auto;
}
.topics .col {
  position: relative;
  width: 100%;
  max-width: 340px;
}
.topics .scroll_line {
  position: absolute;
  right: 0;
  top: 40px;
}

.scroll_line {
  display: block;
}
.scroll_line a {
  display: inline-block;
  z-index: 2;
  padding: 10px 10px 110px;
  overflow: hidden;
  color: #000;
  font-size: 1.4rem;
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
}
.scroll_line a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #000;
}
.scroll_line a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, 0.4);
}
.scroll_line a::after {
  animation: sdl 3s cubic-bezier(1, 0, 0, 1) infinite;
}

@media screen and (max-width: 768px) {
  .top_area .scroll_line {
    position: absolute;
    right: 15px;
    bottom: 0;
  }

  .topics .sc_area {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: 1400px;
    height: auto;
    margin: 0 auto;
  }
  .topics .col {
    position: relative;
    width: calc((360 / 375) * 100vw);
    max-width: 100%;
    height: 160px;
  }
  .topics .scroll_line {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.8);
  }

  .scroll_line {
    display: block;
    position: absolute;
    right: 15px;
    bottom: 0;
  }
  .scroll_line a {
    display: inline-block;
    z-index: 2;
    padding: 10px 10px 60px;
    overflow: hidden;
    color: #000;
    font-size: 1.2rem;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 0;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    writing-mode: vertical-lr;
    text-orientation: upright;
  }
  .scroll_line a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 50px;
    background: #000;
  }
  .scroll_line a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.4);
  }
  .scroll_line a::after {
    animation: sdl 3s cubic-bezier(1, 0, 0, 1) infinite;
  }
}
/*--animate scroll_line--*/
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
                  /*--------------------------------------------------------------
 effect
 animation
--------------------------------------------------------------*/
.hz_sld {
  position: relative;
}
.hz_sld:after {
  content: '';
  position: absolute;
  bottom: 0;
  display: block;
  height: 50%;
  background: #fff;
  z-index: -1;
  animation-name: hz_sld;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: .5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes hz_sld {
  0% {
    width: 0;
  }
  100% {
    width: calc(100% + 0.3em);
  }
}
 /*--------------------------------------------------------------
	section slide_top
--------------------------------------------------------------*/
section.top_area {
  position: relative;
  padding-top: 20px;
  /*--------------------------------------------------------------
	prevArrow nextArrow
--------------------------------------------------------------*/
}
section.top_area:after {
  content: '';
  display: block;
  width: 88%;
  height: 30px;
  background-color: #28A7C8;
}
section.top_area .wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  padding-bottom: 170px;
}
section.top_area .ttl_area {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding-top: 100px;
  max-width: 340px;
}
section.top_area .ttl_area .ttl_txt {
  padding-left: 10px;
}
section.top_area .ttl_area .ttl {
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  color: #d90303;
  margin-bottom: 10px;
}
section.top_area .ttl_area .ttl_sub {
  max-width: 300px;
  line-height: 1.3;
}
section.top_area .ttl_area .ttl_sub div:first-child {
  margin-bottom: 30px;
}
section.top_area .slide_wrap {
  width: calc(100% - 400px);
  display: flex;
}
section.top_area .top_slide {
  width: calc(100% - 60px);
}
section.top_area .slide_dots {
  width: 100%;
  max-width: 60px;
  position: absolute;
  top: 0;
  right: -60px;
  text-align: center;
  counter-reset: number;
  z-index: 2;
  color: #000;
}
section.top_area .slide_dots li {
  counter-increment: number 1;
}
section.top_area .slide_dots li button {
  background: transparent;
  position: relative;
  margin: 0;
  border: none;
  text-align: right;
  padding: 0;
  width: 100px;
  max-width: 57px;
  font-size: 0;
  cursor: pointer;
}
section.top_area .slide_dots li button:before {
  /* width: 100px; */
  /* height: 100px; */
  content: "0" counter(number);
  color: #000;
  font-size: 5rem;
  font-weight: bold;
  display: block;
  /* text-indent: 0; */
  /* position: absolute; */
  /* top: 0; */
  text-align: right;
  /* left: 0; */
  transform: translateX(0.25em) scale(0.5, 0.5);
}
section.top_area .slide_dots li button:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left top;
}
section.top_area .slide_dots li.slick-active button {
  border-bottom: 3px solid #ccc;
}
section.top_area .slide_dots li.slick-active button:before {
  transition: 0.5s;
  transform: scale(1, 1);
}
section.top_area .slide_dots li.slick-active button:after {
  width: 100%;
  transform: scaleX(1);
  transition: 4.5s;
  transition-timing-function: linear;
}
section.top_area .slick_type_bg .slide-next-arrow,
section.top_area .slick_type_bg .slide-prev-arrow {
  max-width: 40px;
  position: absolute;
  bottom: 6px;
  right: 0;
  z-index: 1;
  cursor: pointer;
}
section.top_area .slick_type_bg .slide-next-arrow {
  bottom: 46px;
}
section.top_area .num {
  width: 100px;
  max-width: 100px;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'Noto Sans JP' , sans-serif;
}
section.top_area .num div.current {
  font-size: 3rem;
}
section.top_area [class^="home_bg"] {
  display: block;
  margin: 0;
  padding: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 70.017035775%;
  z-index: 1;
}
section.top_area .home_bg_1 {
  background-image: url("../images/slide_top/s_01.jpg");
}
section.top_area .home_bg_2 {
  background-image: url("../images/slide_top/s_02.jpg");
}
section.top_area .slick-dots {
  position: absolute;
  left: 100px;
  bottom: 10px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
section.top_area .slick-dotted.slick-slider {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  section.top_area {
    padding-top: 50px;
  /*--------------------------------------------------------------
	prevArrow nextArrow
--------------------------------------------------------------*/
  }
  section.top_area:after {
    height: 15px;
  }
  section.top_area .wrap {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 0;
  }
  section.top_area .ttl_area {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding-top: 0;
    max-width: 100%;
    z-index: 1;
    padding-left: 10px;
  }
  section.top_area .ttl_area .ttl_txt {
    position: relative;
    top: -50px;
    font-size: 1.1rem;
    line-height: 1.5;
    padding-left: 0;
  }
  section.top_area .ttl_area .ttl {
    font-weight: 900;
    font-size: 8.3rem;
    line-height: 0.9;
    color: #d90303;
    margin-bottom: 10px;
  }
  section.top_area .ttl_area .ttl_sub {
    max-width: 250px;
    display: flex;
    padding-top: 30px;
    line-height: 1.3;
  }
  section.top_area .ttl_area .ttl_sub div:first-child {
    margin-right: 30px;
  }
  section.top_area .slide_wrap {
    width: calc((340 / 375) * 100vw);
    display: flex;
    margin-left: auto;
  }
  section.top_area .top_slide {
    width: 100%;
    max-width: 1174px;
  }
  section.top_area .slide_dots {
    width: 100%;
    max-width: 40px;
    position: absolute;
    top: 100%;
    right: 10px;
    text-align: center;
    counter-reset: number;
  }
  section.top_area .slide_dots li {
    counter-increment: number 1;
  }
  section.top_area .slide_dots li button {
    position: relative;
    margin: 0;
    border: none;
    text-align: right;
    padding: 0;
    width: 100px;
    max-width: 45px;
    font-size: 0;
    cursor: pointer;
    border-bottom: 3px solid #ccc;
  }
  section.top_area .slide_dots li button:before {
    /* width: 100px; */
    /* height: 100px; */
    content: "0" counter(number);
    font-size: 3.2rem;
    font-weight: bold;
    display: block;
    /* text-indent: 0; */
    /* position: absolute; */
    /* top: 0; */
    text-align: right;
    /* left: 0; */
    transform: translateX(0.25em) scale(0.5, 0.5);
  }
  section.top_area .slide_dots li button:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: #000;
    transform: scaleX(0);
    transform-origin: left top;
  }
  section.top_area .slide_dots li.slick-active button:before {
    transition: 0.5s;
    transform: scale(1, 1);
  }
  section.top_area .slide_dots li.slick-active button:after {
    width: 100%;
    transform: scaleX(1);
    transition: 4.5s;
    transition-timing-function: linear;
  }
  section.top_area .slick_type_bg .slide-next-arrow,
  section.top_area .slick_type_bg .slide-prev-arrow {
    max-width: 20px;
    position: absolute;
    bottom: 6px;
    right: 0;
    z-index: 2;
    cursor: pointer;
  }
  section.top_area .slick_type_bg .slide-next-arrow {
    bottom: 26px;
  }
  section.top_area .num {
    width: 100px;
    max-width: 100px;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Noto Sans JP' , sans-serif;
  }
  section.top_area .num div.current {
    font-size: 3rem;
  }
  section.top_area [class^="home_bg"] {
    display: block;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 88.235294117%;
    z-index: 1;
  }
  section.top_area .home_bg_1 {
    background-image: url("../images/slide_top/s_01_sp.jpg");
  }
  section.top_area .home_bg_2 {
    background-image: url("../images/slide_top/s_02_sp.jpg");
  }
  section.top_area .slick-dots {
    position: static;
    left: 100px;
    bottom: 10px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
  }
}

/*# sourceMappingURL=styles.css.map */
