@charset "UTF-8";
/*-------------------------------------
        セレクタの不要CSSをリセット
  -------------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 16px;
  vertical-align: baseline;
  font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
th,
td,
a {
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

img {
  pointer-events: none;
}

ol,
ul {
  list-style: none;
}

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

input[type=email],
input[type=text],
input[type=password],
input[type=submit],
input[type=button],
input[type=radio],
input[type=tel],
textarea,
select {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type=email]::-webkit-search-decoration,
input[type=text]::-webkit-search-decoration,
input[type=password]::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=radio]::-webkit-search-decoration,
input[type=tel]::-webkit-search-decoration,
textarea::-webkit-search-decoration,
select::-webkit-search-decoration {
  display: none;
}

input[type=email]:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=submit]:focus,
input[type=button]:focus,
input[type=radio]:focus,
input[type=tel]:focus,
textarea:focus,
select:focus {
  outline-offset: -2px;
  outline: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

* {
  font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1;
}

body {
  width: max(1000px, 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fafafa;
}
@media screen and (max-width: 767px) {
  body {
    width: 100%;
  }
}

img,
a {
  display: block;
}

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

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

main {
  padding-top: 90px;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 50px;
  }
}

font {
  font-family: "proxima-nova", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-family: "fot-rodin-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

header .header_wrap {
  position: relative;
}
header .header_wrap .fixed_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 40px;
  width: 100%;
  height: 90px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  header .header_wrap .fixed_header {
    padding: 0 20px;
    height: 50px;
  }
}
header .header_wrap .fixed_header .logo {
  width: 120px;
}
@media screen and (max-width: 767px) {
  header .header_wrap .fixed_header .logo {
    width: 100px;
  }
}
header .header_wrap .fixed_header .logo img {
  width: 100%;
}
header .header_wrap .fixed_header .link_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header_wrap .fixed_header .link_wrap a {
  margin-right: 20px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  header .header_wrap .fixed_header .link_wrap a {
    display: none;
  }
}
header .header_wrap .fixed_header .link_wrap a img {
  width: 100%;
  height: 100%;
}
header .header_wrap .fixed_header .link_wrap .hamburger_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 38px;
  height: 38px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  header .header_wrap .fixed_header .link_wrap .hamburger_wrap {
    width: 32px;
    height: 32px;
  }
}
header .header_wrap .fixed_header .link_wrap .hamburger_wrap.open div:first-child {
  -webkit-transform: translate(0, 8px) rotate(30deg);
          transform: translate(0, 8px) rotate(30deg);
}
@media screen and (max-width: 767px) {
  header .header_wrap .fixed_header .link_wrap .hamburger_wrap.open div:first-child {
    -webkit-transform: translate(0, 5px) rotate(30deg);
            transform: translate(0, 5px) rotate(30deg);
  }
}
header .header_wrap .fixed_header .link_wrap .hamburger_wrap.open div:last-child {
  -webkit-transform: translate(0, -6px) rotate(-30deg);
          transform: translate(0, -6px) rotate(-30deg);
}
@media screen and (max-width: 767px) {
  header .header_wrap .fixed_header .link_wrap .hamburger_wrap.open div:last-child {
    -webkit-transform: translate(0, -5px) rotate(-30deg);
            transform: translate(0, -5px) rotate(-30deg);
  }
}
header .header_wrap .fixed_header .link_wrap .hamburger_wrap div {
  width: 100%;
  height: 1.5px;
  background-color: #000000;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
header .header_wrap .fixed_header .link_wrap .hamburger_wrap div:last-child {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  header .header_wrap .fixed_header .link_wrap .hamburger_wrap div:last-child {
    margin-top: 8px;
  }
}
header .header_wrap nav {
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 98;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
}
@media screen and (max-width: 767px) {
  header .header_wrap nav {
    padding-top: 120px;
    width: 100%;
  }
}
header .header_wrap nav.open {
  top: 0;
}
header .header_wrap nav .nav_logo {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 240px;
}
@media screen and (max-width: 767px) {
  header .header_wrap nav .nav_logo {
    display: none;
  }
}
header .header_wrap nav .nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 190px;
  width: 220px;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  header .header_wrap nav .nav_list {
    margin-right: auto;
    width: 210px;
    height: auto;
  }
}
header .header_wrap nav .nav_list a {
  position: relative;
  margin-top: 35px;
  font-size: 16px;
  font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #000000;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  header .header_wrap nav .nav_list a {
    padding-left: 30px;
  }
}
header .header_wrap nav .nav_list a:first-child {
  margin-top: 0;
}
header .header_wrap nav .nav_list a:hover::before {
  opacity: 1;
}
header .header_wrap nav .nav_list a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -35px;
  width: 30px;
  height: 1px;
  background-color: #000000;
  opacity: 0;
}
header .header_wrap nav .sns_wrap {
  display: none;
}
@media screen and (max-width: 767px) {
  header .header_wrap nav .sns_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 100px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  header .header_wrap nav .sns_wrap a {
    margin-left: 30px;
    width: 24px;
    height: 24px;
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  header .header_wrap nav .sns_wrap a:first-child {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  header .header_wrap nav .sns_wrap a img {
    width: 100%;
    height: 100%;
  }
}

footer {
  position: relative;
  margin-top: 180px;
  padding-top: 55px;
  padding-bottom: 20px;
  width: 100%;
  background-color: rgb(184, 193, 201);
}
@media screen and (max-width: 767px) {
  footer {
    margin-top: 90px;
    padding-top: 40px;
  }
}
footer .footer_wrap {
  margin-left: auto;
  margin-right: auto;
  width: 1000px;
}
@media screen and (max-width: 767px) {
  footer .footer_wrap {
    width: 80%;
  }
}
footer .footer_wrap img {
  width: 200px;
}
@media screen and (max-width: 767px) {
  footer .footer_wrap img {
    width: 150px;
  }
}
footer .footer_wrap .footer_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  footer .footer_wrap .footer_contents {
    display: block;
    margin-top: 30px;
  }
}
footer .footer_wrap .footer_contents .block {
  width: 300px;
}
@media screen and (max-width: 767px) {
  footer .footer_wrap .footer_contents .block {
    margin-top: 30px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  footer .footer_wrap .footer_contents .block:first-child {
    margin-top: 0;
  }
}
footer .footer_wrap .footer_contents .block .p_1 {
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  footer .footer_wrap .footer_contents .block .p_1 {
    font-size: 14px;
  }
}
footer .footer_wrap .footer_contents .block .p_2 {
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  footer .footer_wrap .footer_contents .block .p_2 {
    font-size: 14px;
  }
}
footer .footer_wrap .footer_contents .block .p_2 a {
  display: inline;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 2;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  footer .footer_wrap .footer_contents .block .p_2 a {
    font-size: 14px;
  }
}
footer .footer_wrap .small_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 70px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  footer .footer_wrap .small_wrap {
    margin-top: 105px;
  }
}
footer .footer_wrap .small_wrap small {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  footer .footer_wrap .small_wrap small {
    font-size: 10px;
  }
}
footer .footer_wrap .small_wrap p {
  margin-left: 10px;
  margin-right: 10px;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  footer .footer_wrap .small_wrap p {
    font-size: 10px;
  }
}
footer .footer_wrap .small_wrap a {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  footer .footer_wrap .small_wrap a {
    font-size: 10px;
  }
}
footer .background {
  position: absolute;
  right: 120px;
  bottom: 58px;
  width: 52px;
}
@media screen and (max-width: 767px) {
  footer .background {
    right: 20px;
    bottom: 50px;
    width: 42px;
  }
}

main {
  padding-top: 0;
}
main .main_visual_wrap {
  width: 100%;
}
main .main_visual_wrap .main_visual {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual {
    height: 100vh;
  }
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .splide {
    height: 100vh;
  }
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .splide .splide__track {
    height: 100vh;
  }
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .splide .splide__track .splide__list {
    height: 100vh;
  }
}
main .main_visual_wrap .main_visual .splide .splide__track .splide__list .splide__slide.is-active img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 5s linear;
  transition: -webkit-transform 5s linear;
  transition: transform 5s linear;
  transition: transform 5s linear, -webkit-transform 5s linear;
}
main .main_visual_wrap .main_visual .splide .splide__track .splide__list .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
main .main_visual_wrap .main_visual .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  padding-left: 30px;
  left: 0;
  bottom: 0;
  width: 600px;
  height: 46px;
  background-color: #ffffff;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .info {
    padding-left: 10px;
    bottom: 20px;
    width: 100%;
    height: 30px;
  }
}
main .main_visual_wrap .main_visual .info .p_1 {
  font-size: 18px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .info .p_1 {
    display: none;
  }
}
main .main_visual_wrap .main_visual .info .p_2 {
  margin-left: 15px;
  font-size: 15px;
  font-family: "proxima-nova", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .info .p_2 {
    margin-left: 0;
    font-size: 12px;
  }
}
main .main_visual_wrap .main_visual .info .p_3 {
  display: -webkit-box;
  margin-left: 15px;
  height: 15px;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  main .main_visual_wrap .main_visual .info .p_3 {
    height: 14px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  main .menu_wrap {
    margin-top: 30px;
  }
}
main .menu_wrap .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  main .menu_wrap .menu {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
}
main .menu_wrap .menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: max(720px, 50%);
  height: 480px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  main .menu_wrap .menu a {
    display: block;
    margin-top: 20px;
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  main .menu_wrap .menu a:first-child {
    margin-top: 0;
  }
}
main .menu_wrap .menu a .img_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  -webkit-filter: grayscale(25%);
          filter: grayscale(25%);
}
@media screen and (max-width: 767px) {
  main .menu_wrap .menu a .img_wrap {
    position: static;
  }
}
main .menu_wrap .menu a .img_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .menu_wrap .menu a .label_wrap {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  main .menu_wrap .menu a .label_wrap {
    padding-top: 10px;
    padding-bottom: 14px;
    width: 100%;
    background-color: #b8c1c9;
  }
}
main .menu_wrap .menu a .label_wrap .en {
  font-size: 40px;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main .menu_wrap .menu a .label_wrap .en {
    font-size: 24px;
  }
}
main .menu_wrap .menu a .label_wrap .ja {
  margin-top: 5px;
  font-size: 20px;
  font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main .menu_wrap .menu a .label_wrap .ja {
    font-size: 14px;
    font-weight: 500;
  }
}
main .info_wrap {
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  main .info_wrap {
    margin-top: 50px;
  }
}
main .info_wrap .info {
  margin-left: auto;
  margin-right: auto;
  width: 800px;
}
@media screen and (max-width: 767px) {
  main .info_wrap .info {
    width: 90%;
  }
}
main .info_wrap .info h2 {
  font-size: 30px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main .info_wrap .info h2 {
    font-size: 24px;
  }
}
main .info_wrap .info .contents {
  margin-top: 40px;
  padding: 30px 25px;
  border-top: solid 1px #000000;
  border-bottom: solid 1px #000000;
}
@media screen and (max-width: 767px) {
  main .info_wrap .info .contents {
    margin-top: 30px;
    padding: 20px;
  }
}
main .info_wrap .info .contents .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  main .info_wrap .info .contents .block {
    display: block;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 80vw;
  }
}
main .info_wrap .info .contents .block:first-child {
  margin-top: 0;
}
main .info_wrap .info .contents .block .p_1 {
  width: 110px;
  font-size: 16px;
  font-family: "proxima-nova", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #baa5ce;
  letter-spacing: 0.05em;
  line-height: 20px;
}
@media screen and (max-width: 767px) {
  main .info_wrap .info .contents .block .p_1 {
    width: auto;
    font-size: 15px;
    line-height: 18px;
  }
}
main .info_wrap .info .contents .block .p_2 {
  margin-left: 25px;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  main .info_wrap .info .contents .block .p_2 {
    margin-top: 5px;
    margin-left: 0;
    line-height: 18px;
  }
}
main .info_wrap .info .no_news {
  margin-top: 20px;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main .info_wrap .info .no_news {
    margin-top: 5px;
    margin-left: 0;
    line-height: 18px;
  }
}
main .concept_wrap {
  margin-top: 180px;
}
@media screen and (max-width: 767px) {
  main .concept_wrap {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  main .concept_wrap .concept {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }
}
main .concept_wrap .concept h2 {
  font-size: 30px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main .concept_wrap .concept h2 {
    font-size: 24px;
  }
}
main .concept_wrap .concept .contents {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  main .concept_wrap .concept .contents {
    margin-top: 25px;
  }
}
main .concept_wrap .concept .contents p {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 38px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main .concept_wrap .concept .contents p {
    font-size: 15px;
    letter-spacing: 0.08em;
    line-height: 36px;
  }
}
main .slider_wrap {
  margin-top: 40px;
}
main .slider_wrap .slider {
  margin-left: auto;
  margin-right: auto;
  width: 1000px;
}
@media screen and (max-width: 767px) {
  main .slider_wrap .slider {
    width: 90%;
  }
}
main .slider_wrap .slider .contents {
  width: 100%;
}
main .slider_wrap .slider .contents .splide {
  margin-left: auto;
  margin-right: auto;
}
main .slider_wrap .slider .contents .splide .splide__arrows .splide__arrow {
  width: 110px;
  height: 11px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 0;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  background-color: transparent;
}
main .slider_wrap .slider .contents .splide .splide__arrows .splide__arrow.splide__arrow--prev {
  left: -215px;
  background-image: url("../images/index/prev.png");
}
main .slider_wrap .slider .contents .splide .splide__arrows .splide__arrow.splide__arrow--next {
  right: -215px;
  background-image: url("../images/index/next.png");
}
main .slider_wrap .slider .contents .splide .splide__track .splide__list .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .patissier_wrap {
  margin-top: 180px;
}
@media screen and (max-width: 767px) {
  main .patissier_wrap {
    margin-top: 80px;
  }
}
main .patissier_wrap .patissier {
  margin-left: auto;
  margin-right: auto;
  width: 570px;
}
@media screen and (max-width: 767px) {
  main .patissier_wrap .patissier {
    width: 80%;
  }
}
main .patissier_wrap .patissier h2 {
  font-size: 30px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main .patissier_wrap .patissier h2 {
    font-size: 24px;
  }
}
main .patissier_wrap .patissier .contents {
  margin-top: 40px;
}
main .patissier_wrap .patissier .contents .p_1 {
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  main .patissier_wrap .patissier .contents .p_1 {
    font-size: 16px;
  }
}
main .patissier_wrap .patissier .contents .p_1 span {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  main .patissier_wrap .patissier .contents .p_1 span {
    font-size: 14px;
  }
}
main .patissier_wrap .patissier .contents .p_2 {
  margin-top: 15px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 36px;
}
@media screen and (max-width: 767px) {
  main .patissier_wrap .patissier .contents .p_2 {
    font-size: 15px;
    line-height: 34px;
  }
}
main .calendar_wrap {
  margin-top: 180px;
}
@media screen and (max-width: 767px) {
  main .calendar_wrap {
    margin-top: 80px;
  }
}
main .calendar_wrap .calendar {
  margin-left: auto;
  margin-right: auto;
  width: 1000px;
}
@media screen and (max-width: 767px) {
  main .calendar_wrap .calendar {
    width: 90%;
  }
}
main .calendar_wrap .calendar h2 {
  font-size: 30px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main .calendar_wrap .calendar h2 {
    font-size: 24px;
  }
}
main .calendar_wrap .calendar .sub {
  margin-top: 15px;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main .calendar_wrap .calendar .sub {
    font-size: 12px;
    line-height: 20px;
  }
}
main .calendar_wrap .calendar .contents {
  margin-top: 60px;
  width: 100%;
  height: 810px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  main .calendar_wrap .calendar .contents {
    margin-top: 40px;
    height: 600px;
  }
}
main .calendar_wrap .calendar .contents iframe {
  width: 100%;
  height: 100%;
}
main .instagram_wrap {
  margin-top: 180px;
}
@media screen and (max-width: 767px) {
  main .instagram_wrap {
    margin-top: 80px;
    padding-top: 40px;
    padding-bottom: 60px;
    background-color: #ffffff;
  }
}
main .instagram_wrap .instagram {
  width: 100%;
}
main .instagram_wrap .instagram h2 {
  font-size: 30px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main .instagram_wrap .instagram h2 {
    font-size: 24px;
  }
}
main .instagram_wrap .instagram .contents {
  margin-top: 60px;
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 767px) {
  main .instagram_wrap .instagram .contents {
    margin-top: 30px;
  }
}
main .instagram_wrap .instagram .contents .splide .splide__track .splide__list .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}