@charset "UTF-8";
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

*, :after, :before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden], template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

b, strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

input {
  border-radius: 0;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
}

[type=search][type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted;
}

[type=reset], [type=submit], button, html [type=button] button, select {
  text-transform: none;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

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

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=search] img {
  border-style: none;
  vertical-align: bottom;
}

progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
}

audio, canvas, progress, video {
  display: inline-block;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

:root {
  --color_1:#adebed;
  --color_2:#acedad;
  --color_3:#b5aced;
  --color_4:#edacd8;
  --color_5:#edacac;
  --color_6:#acebed;
}

header {
  background-color: var(--color_1);
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
header h1 {
  width: 260px;
  height: 40px;
  white-space: nowrap;
}
@media (min-width: 900px) {
  header h1 {
    margin: 0 auto;
  }
}
header #ham-btn {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #FFF;
  position: relative;
}
header #ham-btn span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #000;
  position: absolute;
  top: -14px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: 0.2s;
}
header #ham-btn span::after {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  background-color: #000;
  position: absolute;
  top: 14px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: 0.2s;
}
@media (min-width: 900px) {
  header #ham-btn {
    display: none;
  }
}
@media (min-width: 900px) {
  header {
    position: static;
    height: 140px;
  }
}

#ham-btn.is-active {
  border-radius: 50%;
}

#ham-btn.is-active > span {
  top: 0;
  rotate: 45deg;
}
#ham-btn.is-active > span::after {
  top: 0;
  rotate: 450deg;
}

#sp-nav {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background-color: var(--color_2);
  padding: 30px;
  z-index: 10;
  display: none;
}
#sp-nav li {
  margin-bottom: 16px;
}
#sp-nav li a {
  display: block;
  color: #111;
  padding: 8px;
  border-bottom: 1px solid #111;
}
@media (min-width: 900px) {
  #sp-nav {
    display: block;
    width: 100%;
    height: 50px;
    position: sticky;
    top: 0;
    padding: 0;
    z-index: 10;
    /* box-shadow: 0 8px 8px #afafaf; */
  }
  #sp-nav ul {
    display: flex;
    justify-content: center;
    height: 50px;
    align-items: center;
  }
  #sp-nav ul li {
    margin: 0 10px;
  }
  #sp-nav ul li a {
    border-bottom: 0;
  }
  #sp-nav ul li a:hover {
    text-decoration: underline 4px #de386d;
    text-underline-offset: 6px;
  }
}

.container {
  padding: 80px 10px 10px;
}
@media (min-width: 900px) {
  .container {
    padding: 10px;
  }
}

.content-wrapper .content-box {
  display: flex;
  flex-direction: column-reverse;
}
.content-wrapper .content-box .content-txt {
  background-color: var(--color_3);
  padding: 40px;
  margin: 10px 0;
}
.content-wrapper .content-box .content-txt h2 {
  text-align: center;
  margin-bottom: 20px;
}
.content-wrapper .content-box .content-txt .text {
  line-height: 1.7;
  margin-bottom: 40px;
}
.content-wrapper .content-box .content-txt .more-btn {
  width: 76%;
  background-color: #FFF;
  text-align: center;
  margin: 0 auto;
}
.content-wrapper .content-box .content-txt .more-btn a {
  display: block;
  padding: 16px 0;
  color: #111;
  font-weight: bold;
  position: relative;
  transition: 0.2s;
}
.content-wrapper .content-box .content-txt .more-btn a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #111;
  border-right: 2px solid #111;
  rotate: 45deg;
  position: absolute;
  right: 30px;
  top: 18px;
}
.content-wrapper .content-box .content-txt .more-btn a:hover {
  text-indent: 20px;
}
.content-wrapper .content-box:nth-of-type(2) > .content-txt {
  background-color: var(--color_4);
}
.content-wrapper .content-box:nth-of-type(3) > .content-txt {
  background-color: var(--color_1);
}
.content-wrapper .content-box .content-img {
  width: 100%;
  height: 50vh;
}
.content-wrapper .content-box .content-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (min-width: 900px) {
  .content-wrapper .content-box {
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .content-wrapper .content-box .content-txt {
    width: calc((100% - 20px) / 3);
    margin: 0;
    padding: 80px 40px 20px;
  }
  .content-wrapper .content-box .content-img {
    width: calc((100% - 20px) / 3 * 2 + 10px);
    height: auto;
  }
  .content-wrapper .content-box:nth-of-type(2) {
    flex-direction: row;
  }
}

.col-1 {
  background-color: var(--color_2);
  padding: 40px;
  text-align: center;
  margin-bottom: 10px;
}
.col-1 h2 {
  margin-bottom: 40px;
}
.col-1 .lead {
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .col-1 {
    padding: 80px 40px;
  }
}

.col-3-wrapper {
  /* .col-3-box */
}
.col-3-wrapper .col-3-box {
  display: flex;
  flex-direction: column-reverse;
}
.col-3-wrapper .col-3-box .col-3-txt {
  background-color: var(--color_5);
  margin: 10px 0;
  padding: 40px;
}
.col-3-wrapper .col-3-box .col-3-txt h2 {
  text-align: center;
  margin-bottom: 30px;
}
.col-3-wrapper .col-3-box .col-3-txt .icon {
  width: 80px;
  height: 80px;
  background-color: #FFF;
  margin: 0 auto;
  border-radius: 50%;
  padding: 16px;
  position: relative;
}
.col-3-wrapper .col-3-box .col-3-txt .icon img {
  display: block;
}
.col-3-wrapper .col-3-box .col-3-img {
  width: 100%;
  height: 40vh;
}
.col-3-wrapper .col-3-box .col-3-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (min-width: 620px) {
  .col-3-wrapper .col-3-box {
    flex-direction: row-reverse;
    margin-bottom: 10px;
  }
  .col-3-wrapper .col-3-box .col-3-txt {
    margin: 0;
    width: 50%;
  }
  .col-3-wrapper .col-3-box .col-3-img {
    width: 50%;
    height: auto;
  }
}
@media (min-width: 900px) {
  .col-3-wrapper .col-3-box {
    flex-direction: column-reverse;
    width: calc((100% - 20px) / 3);
  }
  .col-3-wrapper .col-3-box .col-3-txt {
    width: 100%;
  }
  .col-3-wrapper .col-3-box .col-3-img {
    width: 100%;
  }
}
@media (min-width: 900px) {
  .col-3-wrapper {
    display: flex;
    justify-content: space-between;
  }
}

/* .col-3-wrapper */
footer {
  width: 100%;
  padding: 40px 20px;
  background-color: var(--color_4);
}
footer p {
  text-align: center;
  margin-bottom: 30px;
}
footer .sns {
  display: flex;
  justify-content: center;
}
footer .sns li {
  width: 44px;
  height: 44px;
  margin-right: 20px;
}
footer .sns li a {
  display: block;
}
footer .sns li:nth-of-type(3) {
  width: 38px;
}

#curtain {
  width: 100%;
  height: 100vh;
  background-color: var(--color_3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  align-items: center;
}

#logo-box {
  width: 40%;
}

#layer_1 path {
  fill: var(--color_3); /* 塗りの色 */
  stroke: #333; /* 線の色 */
  stroke-width: 2px; /* 線幅 */
  stroke-dasharray: 220px;
  stroke-dashoffset: 220px;
  animation: svg-anime 1.4s 0.5s forwards linear;
}

@keyframes svg-anime {
  0% {
    stroke-dashoffset: 220px;
  }
  80% {
    stroke-dashoffset: 0;
    fill: var(--color_3);
  }
  100% {
    stroke-dashoffset: 0;
    fill: #333;
  }
}/*# sourceMappingURL=style.css.map */