@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@500;700&display=swap");
@media screen and (max-width: 768px) {
  .is-mqmNone {
    display: none;
  }
}

.is-mqmDisplay {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-mqmDisplay {
    display: block;
  }
}

.onLoad {
  background-color: #fff;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  pointer-events: none;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
.onLoad .loading-text {
  margin: 10px 0 0 40px;
}
.onLoad .loading-Image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-right: 20px;
}
.onLoad .loading_inoakun {
  width: 60px;
  padding-bottom: 2px;
}
.onLoad .loading_inoakun img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.onLoad .loading_happouWrapper {
  width: 60px;
  height: 80px;
  padding: 0 5px 6px 5px;
  position: relative;
}
.onLoad .loading_happouWrapper .loading_happou {
  width: 100%;
  height: 100%;
  bottom: 0;
  border-radius: 8px;
  background-image: url(../img/loading_awa.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left 0 top 50px;
  -webkit-animation: loading 1.6s ease-in-out 0.3s forwards;
          animation: loading 1.6s ease-in-out 0.3s forwards;
}
.onLoad .loading_happouWrapper .loading_happou img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.onLoad .loading_happouWrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 83%;
  bottom: 0;
  left: 0;
  border-bottom: solid 3px #004d8a;
  border-right: solid 3px #004d8a;
  border-left: solid 3px #004d8a;
  border-radius: 0 0 8px 8px;
}

@-webkit-keyframes loading {
  0% {
    background-position: left 0 top 50px;
  }
  100% {
    background-position: left 0 top 0;
  }
}

@keyframes loading {
  0% {
    background-position: left 0 top 50px;
  }
  100% {
    background-position: left 0 top 0;
  }
}
#loadComplete {
  display: none;
}

/*-----------------------------------------------
　　　　　　　　　　　泡アニメーション
------------------------------------------------*/
.js-awaAnime {
  background-image: url(../img/back-awaawa.png);
  background-position: center;
  background-position-y: 800px;
  background-repeat: no-repeat;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-size: 0;
}
@media screen and (max-width: 768px) {
  .js-awaAnime {
    background-image: url(../img/back-awaawa-m.png);
    background-size: 800px;
  }
}

.is-awaShow {
  background-size: 2500px;
  background-position-y: 0;
  animation: awaShow 1s forwards, awaFloat 1s ease-in-out 1.2s infinite alternate-reverse;
}
@media screen and (max-width: 768px) {
  .is-awaShow {
    background-size: 800px;
  }
}

@-webkit-keyframes awaShow {
  0% {
    background-position-y: 800px;
  }
  40% {
    background-position-y: 0;
  }
  60% {
    background-position-y: 20px;
  }
  100% {
    background-position-y: 10px;
  }
}

@keyframes awaShow {
  0% {
    background-position-y: 800px;
  }
  40% {
    background-position-y: 0;
  }
  60% {
    background-position-y: 20px;
  }
  100% {
    background-position-y: 10px;
  }
}
@-webkit-keyframes awaFloat {
  from {
    background-position-y: 0;
  }
  to {
    background-position-y: 10px;
  }
}
@keyframes awaFloat {
  from {
    background-position-y: 0;
  }
  to {
    background-position-y: 10px;
  }
}
/*-----------------------------------------------
　　　　　　　　　　　フェードイン
------------------------------------------------*/
.js-fadeIn {
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  opacity: 0;
}

.js-fadeIn.is-scrollShow {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.description h3 span {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.js-productsHover {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  animation: floating-base 3s ease-in-out infinite alternate-reverse;
}
.js-productsHover:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.js-productsHover:nth-child(4n) {
  animation: floating-1 2.2s ease-in-out infinite alternate-reverse;
}
.js-productsHover:nth-child(3n) {
  animation: floating-2 2s ease-in-out infinite alternate-reverse;
}
.js-productsHover:nth-child(5n) {
  animation: floating-3 1.6s ease-in-out infinite alternate-reverse;
}

.is-hoverOut {
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.js-backImageChange {
  background-image: url(../img/sec3_product.png), url(../img/sec3_product-set1.png), url(../img/sec3_product-set2.png), url(../img/sec3_product-set3.png), url(../img/sec3_product-set4.png), url(../img/sec3_product-set5.png), url(../img/sec3_product-set6.png), url(../img/sec3_product-set7.png), url(../img/sec3_product-set8.png), url(../img/sec3_product-set9.png);
}
@media screen and (max-width: 768px) {
  .js-backImageChange {
    background-image: none;
  }
}

.js-backImageChange-set1 {
  background-image: url(../img/sec3_product-set1.png);
}

.js-backImageChange-set2 {
  background-image: url(../img/sec3_product-set2.png);
}

.js-backImageChange-set3 {
  background-image: url(../img/sec3_product-set3.png);
}

.js-backImageChange-set4 {
  background-image: url(../img/sec3_product-set4.png);
}

.js-backImageChange-set5 {
  background-image: url(../img/sec3_product-set5.png);
}

.js-backImageChange-set6 {
  background-image: url(../img/sec3_product-set6.png);
}

.js-backImageChange-set7 {
  background-image: url(../img/sec3_product-set7.png);
}

.js-backImageChange-set8 {
  background-image: url(../img/sec3_product-set8.png);
}

.js-backImageChange-set9 {
  background-image: url(../img/sec3_product-set9.png);
}

@-webkit-keyframes floating-base {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-8%, -8%);
            transform: translate(-8%, -8%);
  }
}

@keyframes floating-base {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-8%, -8%);
            transform: translate(-8%, -8%);
  }
}
@-webkit-keyframes floating-1 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(5%, 3%);
            transform: translate(5%, 3%);
  }
}
@keyframes floating-1 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(5%, 3%);
            transform: translate(5%, 3%);
  }
}
@-webkit-keyframes floating-2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-2%, 6%);
            transform: translate(-2%, 6%);
  }
}
@keyframes floating-2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(-2%, 6%);
            transform: translate(-2%, 6%);
  }
}
@-webkit-keyframes floating-3 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(6%);
            transform: translateY(6%);
  }
}
@keyframes floating-3 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(6%);
            transform: translateY(6%);
  }
}
.is-Close {
  opacity: 0;
  display: none;
}

.is-Open {
  opacity: 1;
  display: block;
  -webkit-animation-name: modalopen;
          animation-name: modalopen;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

.js-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
}

@-webkit-keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*-----------------------------------------------
　　　　　　　　　　　video-modal
------------------------------------------------*/
.Video-modal {
  background-color: rgba(2, 29, 62, 0.7);
  cursor: pointer;
}

.modalVideo-wrapper {
  max-width: 940px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modalVideo-wrapper .modalVideo-inner {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
.modalVideo-wrapper .modalVideo-inner iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/*-----------------------------------------------
　　　　　　　　　　　　Q-modal
------------------------------------------------*/
@-webkit-keyframes Qmodal-wrapper {
  from {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes Qmodal-wrapper {
  from {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.Qmodal-wrapper {
  background: -webkit-gradient(linear, right top, left bottom, from(rgba(0, 60, 150, 0.45)), to(rgba(0, 178, 223, 0.45))), url(../img/back-blue.jpg);
  background: linear-gradient(to bottom left, rgba(0, 60, 150, 0.45), rgba(0, 178, 223, 0.45)), url(../img/back-blue.jpg);
  background-repeat: repeat;
  overflow-y: scroll;
}
.Qmodal-wrapper .Qmodal-layout {
  margin: 60px;
  padding: 60px 30px 160px 30px;
  border-radius: 50px;
  background-color: #F2F4F4;
  max-width: 100%;
  position: relative;
  -webkit-animation-name: Qmodal-wrapper;
          animation-name: Qmodal-wrapper;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}
@media screen and (max-width: 768px) {
  .Qmodal-wrapper .Qmodal-layout {
    margin: 20px;
    padding: 60px 30px 170px 30px;
    border-radius: 30px;
  }
  .Qmodal-wrapper .Qmodal-layout p {
    text-align: justify;
    max-width: 460px;
    margin: 0 auto;
  }
}
.Qmodal-wrapper .Qmodal-layout .Qmodal-backBtn {
  width: 68px;
  height: 68px;
  background-color: #6bb0de;
  background-image: url(../img/icon_modal-back.png);
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  position: absolute;
  top: 30px;
  left: 30px;
  cursor: pointer;
}
.Qmodal-wrapper .Qmodal-layout .Qmodal-backBtn:hover {
  background-color: #004d8a;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .Qmodal-wrapper .Qmodal-layout .Qmodal-backBtn {
    width: 50px;
    height: 50px;
    background-size: 25px;
    top: 10px;
    left: 10px;
  }
}
.Qmodal-wrapper .Qmodal-layout h3 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  line-height: 2.8rem;
}
@media screen and (max-width: 768px) {
  .Qmodal-wrapper .Qmodal-layout h3 {
    font-size: 2rem;
  }
}
.Qmodal-wrapper .Qmodal-layout p {
  line-height: 2.2rem;
  margin-bottom: 14px;
}
.Qmodal-wrapper .Qmodal-layout .Q-image {
  margin: 0 auto;
  border-radius: 20px;
  margin-top: 30px;
}

.Q1modal {
  background-image: url(../img/sec4_modal-q1back1.png), url(../img/sec4_modal-q1back2.png);
  background-repeat: no-repeat;
  background-size: 280px;
  background-position: left 20px bottom 0, right 20px bottom 0;
}
@media screen and (max-width: 768px) {
  .Q1modal {
    background-image: url(../img/sec4_modal-q1back1-m.png);
    background-size: 100%;
    background-position: center bottom;
  }
}
.Q1modal .Q1modal-image {
  width: 420px;
  height: 250px;
  background-image: url(../img/sec3_Q1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .Q1modal .Q1modal-image {
    max-width: 460px;
    width: 100%;
    height: auto;
    aspect-ratio: 1.6/1;
  }
}

.Q2modal {
  background-image: url(../img/sec4_modal-q2back1.png), url(../img/sec4_modal-q2back2.png);
  background-repeat: no-repeat;
  background-size: 100px, 260px;
  background-position: left 60px bottom 0, right 20px bottom 0;
}
@media screen and (max-width: 768px) {
  .Q2modal {
    background-size: 80px, 180px;
    background-position: left 20px bottom 0, right 20px bottom 0;
  }
}
.Q2modal .Q2modal-image {
  width: 450px;
  height: 300px;
  background-image: url(../img/sec4_modal-q2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .Q2modal .Q2modal-image {
    max-width: 450px;
    width: 100%;
    height: auto;
    aspect-ratio: 1.4/1;
  }
}

/*-----------------------------------------------
　　　　　　　　　　　　　採用ボタン
------------------------------------------------*/
nav.nav_recruit {
  position: fixed;
  z-index: 8000;
  top: 20px;
  right: 0;
  background: none;
  background-color: #004d8a;
  padding: 10px 28px 10px 18px;
  border-radius: 40px 0 0 40px;
  color: #F2F4F4;
  font-size: 15px;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
nav.nav_recruit:hover {
  background-color: #7F9FC3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  right: -10px;
}
@media screen and (max-width: 768px) {
  nav.nav_recruit {
    padding: 10px 15px 10px 18px;
  }
}

nav.nav_recruit.is-Out {
  right: -450px;
}

/*-----------------------------------------------
　　　　　　　　　　　動画再生ボタン
------------------------------------------------*/
.Btn-moovie {
  cursor: pointer;
  background-color: #fff;
  position: relative;
}
.Btn-moovie .moovie-arrow {
  border-radius: 50%;
  background-color: #F2F4F4;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.Btn-moovie .moovie-arrow svg {
  fill: #004d8a;
  width: 35px;
  height: auto;
  margin: 0 auto;
  padding-left: 2px;
}
.Btn-moovie img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.Btn-moovie:hover .moovie-arrow {
  background-color: #004d8a;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.Btn-moovie:hover .moovie-arrow svg {
  fill: #F2F4F4;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.Btn-moovie:hover img {
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*-----------------------------------------------
　　　　　　　　　　　清野さん吹き出し
------------------------------------------------*/
.fukidashi {
  position: relative;
  margin-bottom: 20px;
  padding: 30px;
  border: 1px solid #004d8a;
  border-radius: 8px;
  background-color: #F2F4F4;
  margin-bottom: 40px;
  font-size: 0.9rem;
}

.fukidashi::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #004d8a transparent transparent;
  translate: -50% 100%;
}
@media screen and (max-width: 768px) {
  .fukidashi::before {
    left: 50%;
  }
}

.fukidashi::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  border-style: solid;
  border-width: 17.8px 8.9px 0 8.9px;
  border-color: #F2F4F4 transparent transparent;
  translate: -50% 100%;
}
@media screen and (max-width: 768px) {
  .fukidashi::after {
    left: 50%;
  }
}

/*-----------------------------------------------
　　　　　　　　　　　上下の揺れ
------------------------------------------------*/
@-webkit-keyframes jougeMove {
  from {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  to {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
}
@keyframes jougeMove {
  from {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  to {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
}
/*! destyle.css v1.0.15 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model */
/* ============================================ */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::before,
::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
  vertical-align: bottom;
}

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

html {
  text-align: center;
  font-family: "Avenir", "Noto Sans JP", "SourceHanSansJP-Regular-sub", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "メイリオ", sans-serif;
  font-size: 15px;
  font-style: normal;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  letter-spacing: 1px;
  font-weight: 500;
  color: #004d8a;
  line-height: 2rem;
}
@media screen and (max-width: 768px) {
  html {
    font-family: "Avenir", "Noto Sans JP", "SourceHanSansJP-Regular-sub", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "メイリオ", sans-serif;
    font-size: 17px;
    font-style: normal;
  }
}
html p {
  text-align: center;
}

.wrapper {
  background-image: url(../img/back-yellow.jpg);
  background-repeat: repeat;
}

@media screen and (max-width: 768px) {
  .KV-wrap {
    padding-top: 40px;
  }
}

.mainImage_KV {
  position: relative;
  max-width: 1000px;
  margin: auto;
  padding-top: 50px;
}
.mainImage_KV .mainImage_KV-copyWrap {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 0;
  width: 40%;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .mainImage_KV .mainImage_KV-copyWrap {
    width: 45%;
    height: 95%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.mainImage_KV .KV-mainCopy {
  max-width: 400px;
  height: auto;
  overflow: hidden;
  margin-bottom: 20px;
}
.mainImage_KV .KV-mainCopy img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mainImage_KV .KV-copy {
  max-width: 300px;
  height: auto;
  overflow: hidden;
}
.mainImage_KV .KV-copy img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mainImage_KV .KV-logo {
  max-width: 200px;
  height: auto;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .mainImage_KV .KV-logo {
    margin-left: 20px;
  }
}
.mainImage_KV .KV-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mainImage_KV .KV-image {
  margin: 0 0 0 auto;
  max-width: 560px;
  width: 67%;
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .mainImage_KV .KV-image {
    margin-top: 12%;
    width: 72%;
    margin-bottom: 30px;
  }
}
.mainImage_KV .KV-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mainImage_KV-scroll {
  padding-top: 20px;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 6px;
  text-shadow: 0px 0px 10px rgba(72, 44, 4, 0.5);
}
.mainImage_KV-scroll .scroll-arrow {
  width: 30px;
  height: 30px;
  margin: 0 auto;
}
.mainImage_KV-scroll .scroll-arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(72, 44, 4, 0.5));
          filter: drop-shadow(0px 0px 10px rgba(72, 44, 4, 0.5));
  animation: jougeMove 1s ease-in-out infinite alternate-reverse;
}

.mainImage_CM {
  padding: 150px 0 60px 0;
}
.mainImage_CM .CM-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  max-width: 850px;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .mainImage_CM .CM-wrap {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.mainImage_CM .CM-card {
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .mainImage_CM .CM-card:first-child {
    margin-bottom: 40px;
  }
  .mainImage_CM .CM-card p {
    line-height: 2.2rem;
  }
}
.mainImage_CM .CM-card-image {
  max-width: 340px;
  cursor: pointer;
  margin-bottom: 20px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mainImage_CM .CM-card-image {
    max-width: 100%;
  }
}
.mainImage_CM .CM-card-image .cm-card-btn {
  border-radius: 50%;
  background-color: #F2F4F4;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.mainImage_CM .CM-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mainImage_CM .CM-btm {
  display: block;
  background-color: #004d8a;
  padding: 10px;
  width: 250px;
  border-radius: 30px;
  margin: 0 auto;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: 3px;
  font-weight: 600;
  cursor: pointer;
}
.mainImage_CM .CM-btm:hover {
  background-color: #fff;
  color: #004d8a;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.description {
  background-color: #fff;
  font-size: 1.6rem;
  letter-spacing: 3px;
  line-height: 3.8rem;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  background-image: url(../img/sec2_productImage1.png), url(../img/sec2_productImage2.png), url(../img/sec2_productImage3.png), url(../img/sec2_productImage4.png);
  background-repeat: no-repeat;
  background-size: 130px, 100px, 180px, 150px;
  background-position: right 40px top 30px, right 12% bottom 60px, left 15% bottom 80px, left -10px top 100px;
}
@media screen and (max-width: 768px) {
  .description {
    font-size: 1.1rem;
    line-height: 3rem;
    letter-spacing: 2px;
    background-size: 90px, 90px, 100px, 150px;
  }
}
.description .description-warp {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .description .description-warp {
    background-color: rgba(255, 255, 255, 0.4);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.description h3.description-Hight {
  margin-top: 20px;
}

.product {
  padding-top: 50px;
}
.product .product_set-wrapper {
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .product .product_set-wrapper {
    padding: 0 20px;
  }
}
.product .product_set-wrapper .product_set-title {
  margin: 0 auto;
  max-width: 600px;
}
.product .product_set-wrapper .product_set-title img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .product .product_set-wrapper .product_set-title {
    margin-bottom: 40px;
  }
}
.product .product_set-wrapper .product-setImage {
  max-width: 980px;
  margin-bottom: -60px;
}
.product .product_set-wrapper .product-setImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product .product_set-wrapper .product_set-Image {
  max-width: 980px;
  aspect-ratio: 4/3;
  margin: 0 auto;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .product .product_set-wrapper .product_set-Image {
    aspect-ratio: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 15px;
  }
}
.product .product_set-wrapper .product_set-Image .set1 {
  width: 18%;
  top: -4%;
}
.product .product_set-wrapper .product_set-Image .set2 {
  width: 14%;
  top: 8%;
  left: 25%;
}
.product .product_set-wrapper .product_set-Image .set3 {
  width: 12%;
  top: 0;
  left: 45%;
}
.product .product_set-wrapper .product_set-Image .set4 {
  width: 15%;
  top: 22%;
  left: 62%;
}
.product .product_set-wrapper .product_set-Image .set5 {
  width: 15%;
  top: 16%;
  right: -2%;
}
.product .product_set-wrapper .product_set-Image .set6 {
  width: 20%;
  bottom: 0;
  left: 2%;
}
.product .product_set-wrapper .product_set-Image .set7 {
  width: 18%;
  bottom: 3%;
  left: 32%;
}
.product .product_set-wrapper .product_set-Image .set8 {
  width: 16%;
  bottom: -3%;
  left: 60%;
}
.product .product_set-wrapper .product_set-Image .set9 {
  width: 20%;
  bottom: 7%;
  right: -2%;
}
.product .product_Q-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1100px;
  margin: 60px auto;
}
@media screen and (max-width: 768px) {
  .product .product_Q-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    margin: 20px auto;
  }
}
.product .product_Q {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  height: auto;
  cursor: pointer;
  background-image: url(../img/sec3_waku.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 95%;
  padding-top: 70px;
  margin: 0 auto;
}
.product .product_Q:first-child {
  animation: jougeMove 2s ease-in-out infinite alternate-reverse;
}
.product .product_Q:nth-child(2n) {
  animation: jougeMove 2.4s ease-in-out infinite alternate-reverse;
}
@media screen and (max-width: 768px) {
  .product .product_Q {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    background-size: contain;
    width: 80%;
    aspect-ratio: 1.6/1;
    padding-top: 50px;
  }
  .product .product_Q:first-child {
    margin-bottom: 40px;
    margin-right: 17%;
  }
  .product .product_Q:nth-child(2n) {
    margin-left: 17%;
  }
}
.product .product_Q .product_Q-title {
  max-width: 410px;
  margin: 0 auto;
  padding: 0 20px;
}
.product .product_Q .product_Q-title img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product .product_Q p {
  margin: 10px 0 25px 0;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  letter-spacing: 2px;
  text-decoration: underline;
  text-underline-offset: 8px;
}
.product .product_Q:hover {
  background-size: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.product .product_Q:hover .img-hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.product .Q-image-1 {
  margin: 0 auto;
  width: 250px;
  height: 140px;
  border-radius: 20px;
  background-image: url(../img/sec3_Q1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.product .Q-image-2 {
  margin: 0 auto;
  width: 300px;
}
.product .Q-image-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product .product_CMmaking {
  padding: 200px 0 100px 0;
}
@media screen and (max-width: 768px) {
  .product .product_CMmaking {
    padding: 160px 30px 60px 30px;
  }
}
.product .product_CMmaking .CMmaking-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 780px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .product .product_CMmaking .CMmaking-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.product .product_CMmaking .CMmaking-text {
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  .product .product_CMmaking .CMmaking-text {
    max-width: 500px;
    margin-bottom: 40px;
    margin-right: 0px;
  }
}
.product .product_CMmaking .CMmaking-text h3 {
  font-size: 1.4rem;
  text-align: left;
  font-weight: 600;
  padding: 15px 0;
  letter-spacing: 2px;
}
.product .product_CMmaking .CMmaking-text p {
  text-align: left;
}
.product .product_CMmaking .CMmaking-img {
  max-width: 380px;
}
.product .product_CMmaking .CMmaking-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product .product_set-wrapper .product_set-Image .set1, .product .product_set-wrapper .product_set-Image .set2, .product .product_set-wrapper .product_set-Image .set3, .product .product_set-wrapper .product_set-Image .set4, .product .product_set-wrapper .product_set-Image .set5, .product .product_set-wrapper .product_set-Image .set6, .product .product_set-wrapper .product_set-Image .set7, .product .product_set-wrapper .product_set-Image .set8, .product .product_set-wrapper .product_set-Image .set9 {
  position: absolute;
}
.product .product_set-wrapper .product_set-Image .set1 img, .product .product_set-wrapper .product_set-Image .set2 img, .product .product_set-wrapper .product_set-Image .set3 img, .product .product_set-wrapper .product_set-Image .set4 img, .product .product_set-wrapper .product_set-Image .set5 img, .product .product_set-wrapper .product_set-Image .set6 img, .product .product_set-wrapper .product_set-Image .set7 img, .product .product_set-wrapper .product_set-Image .set8 img, .product .product_set-wrapper .product_set-Image .set9 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .product .product_set-wrapper .product_set-Image .set1, .product .product_set-wrapper .product_set-Image .set2, .product .product_set-wrapper .product_set-Image .set3, .product .product_set-wrapper .product_set-Image .set4, .product .product_set-wrapper .product_set-Image .set5, .product .product_set-wrapper .product_set-Image .set6, .product .product_set-wrapper .product_set-Image .set7, .product .product_set-wrapper .product_set-Image .set8, .product .product_set-wrapper .product_set-Image .set9 {
    position: relative;
    width: 27%;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    margin-bottom: 20px;
  }
}

/*-----------------------------------------------
　　　　　　　　　　　　キャスト紹介
------------------------------------------------*/
.cast {
  background: -webkit-gradient(linear, right top, left bottom, from(rgba(0, 60, 150, 0.45)), to(rgba(0, 178, 223, 0.45))), url(../img/back-blue.jpg);
  background: linear-gradient(to bottom left, rgba(0, 60, 150, 0.45), rgba(0, 178, 223, 0.45)), url(../img/back-blue.jpg);
  background-repeat: repeat;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .cast {
    padding: 50px 20px 20px 20px;
  }
}
.cast h2 {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: #F2F4F4;
  padding-bottom: 40px;
}
.cast .cast__wrap {
  background-color: #F2F4F4;
  border-radius: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .cast .cast__wrap {
    border-radius: 30px;
  }
}
.cast .cast-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .cast .cast-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.cast .cast-layout:nth-child(2) {
  margin-top: 40px;
}
.cast .cast-layout .cast-img {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  max-width: 290px;
  height: 100%;
  margin-right: 50px;
  padding: 15px;
}
@media screen and (max-width: 768px) {
  .cast .cast-layout .cast-img {
    margin-right: 0px;
  }
}
.cast .cast-layout .cast-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cast .cast-layout .cast-img-seinosan {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  max-width: 290px;
  aspect-ratio: 1/1.4;
  margin-right: 50px;
  background-image: url("../img/sec4_seinosan.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .cast .cast-layout .cast-img-seinosan {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    aspect-ratio: 1/1.2;
    margin: 0 auto;
  }
}
.cast .cast-layout .cast-img-seinosan-M {
  border-radius: 30px;
  max-width: 250px;
  aspect-ratio: 1/1.4;
  background-image: url("../img/sec4_seinosan.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 20px auto 40px auto;
}
.cast .cast-layout .cast-text {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
@media screen and (max-width: 768px) {
  .cast .cast-layout .cast-text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.cast .cast-layout .cast-text h3 {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .cast .cast-layout .cast-text h3 {
    margin-bottom: 10px;
  }
}
.cast .cast-layout .cast-text p {
  text-align: justify;
}
.cast .cast-layout .cast-text .cast-inoakun-voice {
  width: 100%;
  margin-top: 30px;
  padding-top: 30px;
  border-top: solid 1px;
  text-align: left;
}
.cast .cast-layout .cast-text .cast-inoakun-voice h4 {
  font-weight: 600;
  margin-bottom: 8px;
}
.cast .cast-layout .cast-text .cast-inoakun-voice p {
  font-size: 0.8rem;
  line-height: 1.6rem;
}

/*-----------------------------------------------
　　　　　　　　　　　　　フッター
------------------------------------------------*/
.fotter__wrap {
  background-color: #fff;
  padding-bottom: 40px;
}
.fotter__wrap .footer-logo {
  max-width: 320px;
  margin: 0 auto;
  display: block;
}
.fotter__wrap .footer-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fotter__wrap .fotter-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  max-width: 260px;
  margin: 0 auto 40px auto;
}
.fotter__wrap .fotter-sns .instagram-logo, .fotter__wrap .fotter-sns .youtube-logo {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fotter__wrap .fotter-sns .youtube-logo {
  background-color: #d70b22;
}
.fotter__wrap .fotter-sns .youtube-logo::after {
  content: "";
  display: block;
  width: 50%;
  height: 50%;
  background-image: url(../img/youtube-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.fotter__wrap .fotter-sns .instagram-logo {
  background: -webkit-gradient(linear, left bottom, right top, from(#f8d748), color-stop(#ff384e), to(#ea33f0));
  background: linear-gradient(to right top, #f8d748, #ff384e, #ea33f0);
}
.fotter__wrap .fotter-sns .instagram-logo::after {
  content: "";
  display: block;
  width: 50%;
  height: 50%;
  background-image: url(../img/Instagram_Glyph_White.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.fotter__wrap ul.fotter-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 80px 0 40px 0;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .fotter__wrap ul.fotter-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    text-align: left;
    width: 320px;
  }
}
.fotter__wrap ul.fotter-nav li {
  text-decoration: underline;
  text-underline-offset: 8px;
  margin: 10px;
}
@media screen and (max-width: 768px) {
  .fotter__wrap ul.fotter-nav li {
    margin-bottom: 20px;
  }
}
.fotter__wrap ul.fotter-nav li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/icon-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
}
@media screen and (min-width: 780px) {
  .fotter__wrap ul.fotter-nav li:hover {
    opacity: 0.6;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.fotter__wrap p {
  font-size: 0.7rem;
}