@charset "UTF-8";
.inner {
  padding-inline: 20px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-inline: 40px;
    max-width: 1104px;
  }
}

/*===================================================
# フォント
====================================================*/
/*===================================================
# 基本設定
====================================================*/
body {
  color: #4c4c4c;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.75;
  overflow-wrap: break-word;
  background-color: #fff;
  overflow-x: hidden;
}

p {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 16px;
  }
}

/*===================================================
# 補足設定
====================================================*/
html {
  scroll-behavior: smooth;
}

.hidden-wrapper {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

@media not screen and (min-width: 768px) {
  .hidden-sp {
    display: none;
  }
}

@media not screen and (min-width: 768px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

.inline-block {
  font-weight: inherit;
  display: inline-block;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-left {
  text-align: left;
}

.text-link {
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .text-link:hover {
    color: #7dbdb0;
  }
}

.mt20 {
  margin-top: 20px;
}

.mt40 {
  margin-top: 40px;
}

.ls20 {
  letter-spacing: 0.02em !important;
}

/*===================================================
# section
====================================================*/
section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.section__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .section__head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 26px;
    margin-left: 16px;
  }
}
.section__subtitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 6px;
  position: relative;
  z-index: 1;
}
.section__subtitle::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 86px;
  height: 40px;
  background: url(../img/icon/icon_ribbon-g1.svg) no-repeat center center/contain;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .section__subtitle {
    font-size: 16px;
    padding-bottom: 2px;
    padding-right: 4px;
  }
  .section__subtitle::after {
    background: url(../img/icon/icon_ribbon-g2.svg) no-repeat center center/contain;
    width: 72px;
    height: 24px;
  }
}
.section__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: #cfeee9;
  line-height: 1;
  margin-top: 12px;
  text-shadow: #4c4c4c -1px -1px, #4c4c4c -1px 0px, #4c4c4c -1px 1px, #4c4c4c 0px -1px, #4c4c4c 0px 0px, #4c4c4c 0px 1px, #4c4c4c 1px -1px, #4c4c4c 1px 0px, #4c4c4c 1px 1px;
}
@media screen and (min-width: 768px) {
  .section__title {
    margin-top: 0;
  }
}

/*===================================================
# header
====================================================*/
.header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.header__inner {
  padding: 12px 20px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 12px 40px;
    max-width: 1104px;
  }
}

.header__logo a {
  color: #7dbdb0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .header__logo a {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header__logo a:hover {
    color: #4c4c4c;
  }
}

.header__nav {
  color: #7dbdb0;
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.48px;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .header__nav-link {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header__nav-link:hover {
    color: #4c4c4c;
  }
}

.button__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}

.button__icon-path {
  fill: #7dbdb0;
}
@media screen and (min-width: 768px) {
  .button__icon-path {
    -webkit-transition: fill 0.3s;
    transition: fill 0.3s;
  }
  .button__icon-path:hover {
    fill: #4c4c4c;
  }
}

.drawer-icon {
  opacity: 1;
  visibility: visible;
  position: fixed;
  top: 14px;
  right: 18px;
  width: 36px;
  height: 21px;
  z-index: 101;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(44deg);
          transform: rotate(44deg);
  top: 11px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-44deg);
          transform: rotate(-44deg);
  top: 11px;
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    opacity: 0;
    visibility: hidden;
  }
}

.drawer-icon__bar {
  position: absolute;
  width: 36px;
  top: 0;
  left: 0;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
  background-color: #7dbdb0;
  height: 3px;
  border-radius: 6px;
}
.drawer-icon__bar:nth-of-type(2) {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.drawer-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: #cfeee9;
  padding: 60px 40px 40px;
  z-index: 100;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -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;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.drawer-content__link {
  display: block;
  padding: 14px 0;
  text-align: right;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.48px;
}
.drawer-content__link:nth-of-type(n + 2) {
  margin-top: 10px;
}
.drawer-content__top {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
}

/*===================================================
# ローディング画面
====================================================*/
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #cfeee9; /* ローディング画面の背景色やスタイルを設定 */
  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;
  z-index: 9999; /* ローディング画面が最前面に表示されるようにする */
}

.loading-screen-text {
  font-size: 22px;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #7dbdb0;
  font-weight: 700;
  text-align: center;
}

/*===================================================
# fv
====================================================*/
.fv {
  padding-top: 0;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .fv {
    padding-bottom: 40px;
  }
}
.fv__bg {
  width: 100%;
  height: 500px;
  background-image: url(../img/fv-sp.jpg);
  background-repeat: no-repeat;
  background-position: 51% 100%;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv__bg {
    background-image: url(../img/fv-pc.jpg);
    background-position: center center;
  }
}
.fv__bg::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100px;
  background-image: url(../img/bg/bg-ripple-m.svg);
  background-repeat: repeat-x;
  background-position: center center;
  background-size: cover;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1280px) {
  .fv__bg::after {
    background-size: contain;
  }
}
.fv__inner {
  height: 500px;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-inline: 20px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    padding-inline: 40px;
    max-width: 860px;
  }
}
.fv__title {
  max-width: 325px;
  width: 88%;
  margin: 0 auto 0 0;
  padding-top: 7%;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .fv__title {
    max-width: 325px;
    margin: 0 auto 0 4%;
    padding-top: 28px;
  }
}
.fv__title img {
  width: 100%;
}

.fv__image-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  position: absolute;
  bottom: -80px;
  right: 5%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .fv__image-area {
    bottom: -20px;
    right: 10%;
  }
}

.fv__image1 {
  width: 60px;
  margin-bottom: 16px;
}
.fv__image1 img {
  width: 100%;
}

.fv__image2 {
  width: 150px;
}
.fv__image2 img {
  width: 100%;
}

.fv__scroll {
  margin: 0 auto;
  position: relative;
  margin-top: 100px;
  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;
}
.fv__scroll a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #7dbdb0;
}
@media screen and (min-width: 768px) {
  .fv__scroll {
    margin-top: 60px;
  }
}
.fv__scroll-cursor {
  position: absolute;
  content: "";
  background: url(../img/icon/arrow.svg) no-repeat center center/contain;
  width: 14px;
  height: 8px;
  bottom: -10px;
}

/*===================================================
# second
====================================================*/
.second {
  padding-top: 0px;
  padding-bottom: 0px;
}

.second__bg-area {
  padding-top: 60px;
  padding-bottom: 60px;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .second__bg-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.second__bg-area-fuwa1, .second__bg-area-fuwa2, .second__bg-area-fuwa3, .second__bg-area-fuwa4, .second__bg-area-fuwa5, .second__bg-area-fuwa6, .second__bg-area-fuwa7 {
  position: absolute;
  top: 0;
  width: 100%;
  height: 1000px;
}
.second__bg-area-fuwa1 {
  background-image: url(../img/bg/p_y.svg);
  background-repeat: no-repeat;
  background-position: top 134px left calc(50% + 160px);
  background-size: 25px 25px;
}
@media screen and (min-width: 768px) {
  .second__bg-area-fuwa1 {
    background-position: top 455px left calc(50% + 40px);
  }
}
.second__bg-area-fuwa2 {
  background-image: url(../img/bg/p_g-s.svg);
  background-repeat: no-repeat;
  background-position: top 330px left calc(50% - 110px);
  background-size: 88px 88px;
}
@media screen and (min-width: 768px) {
  .second__bg-area-fuwa2 {
    background-position: top 120px left calc(50% + 330px);
  }
}
.second__bg-area-fuwa3 {
  background-image: url(../img/bg/p_g.svg);
  background-repeat: no-repeat;
  background-position: top 640px left calc(50% + 150px);
  background-size: 49px 49px;
}
@media screen and (min-width: 768px) {
  .second__bg-area-fuwa3 {
    background-position: top 520px left calc(50% + 465px);
  }
}
.second__bg-area-fuwa4 {
  background-image: url(../img/bg/p_y-s.svg);
  background-repeat: no-repeat;
  background-position: top 660px left calc(50% + 116px);
  background-size: 88px 88px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .second__bg-area-fuwa4 {
    background-position: top 290px left calc(50% - 494px);
  }
}
.second__bg-area-fuwa5 {
  background-image: url(../img/bg/p_g-d.svg);
  background-repeat: no-repeat;
  background-position: top 640px left calc(50% - 120px);
  background-size: 49px 49px;
}
@media screen and (min-width: 768px) {
  .second__bg-area-fuwa5 {
    background-position: top 760px left calc(50% - 290px);
  }
}
.second__bg-area-fuwa6 {
  background-image: url(../img/bg/p_y-d.svg);
  background-repeat: no-repeat;
  background-position: top 860px left calc(50% + 340px);
  background-size: 88px 88px;
}
@media screen and (min-width: 768px) {
  .second__bg-area-fuwa6 {
    background-position: top 636px left calc(50% + 210px);
  }
}
.second__bg-area-fuwa7 {
  background-image: url(../img/bg/p_y.svg);
  background-repeat: no-repeat;
  background-position: top 0 left calc(50% - 220px);
  background-size: 37px 37px;
}
@media screen and (min-width: 768px) {
  .second__bg-area-fuwa7 {
    background-position: top 0px left calc(50% - 110px);
  }
}

.second__grid-wrap {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .second__grid-wrap {
    max-width: 920px;
    display: grid;
    gap: 10px 0px;
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr auto;
  }
}

.second__image-area1,
.second__image-area2 {
  position: relative;
}

.second__image1,
.second__image2,
.second__image3,
.second__image4 {
  position: absolute;
}

.second__image-area1 {
  height: 273px;
}
@media screen and (min-width: 768px) {
  .second__image-area1 {
    grid-column: 1/2;
    grid-row: 1/2;
    height: 358px;
  }
}

.second__image1 {
  width: 440px;
  top: 0;
  left: calc(50% - 310px);
}
@media screen and (min-width: 768px) {
  .second__image1 {
    left: calc(50% - 280px);
  }
}
.second__image1 img {
  border-radius: 30px;
  width: 100%;
}

.second__image2 {
  width: 280px;
  bottom: 0;
  left: calc(50% + 20px);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .second__image2 {
    left: calc(50% - 30px);
    z-index: 1;
  }
}
.second__image2 img {
  border-radius: 24px;
  width: 100%;
}

.second__image-area2 {
  height: 227px;
}
@media screen and (min-width: 768px) {
  .second__image-area2 {
    grid-column: 1/2;
    grid-row: 2/3;
    height: 287px;
  }
}

.second__image3 {
  width: 260px;
  top: 0;
  left: calc(50% - 270px);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .second__image3 {
    left: calc(50% - 360px);
  }
}
.second__image3 img {
  border-radius: 30px;
  width: 100%;
}

.second__image4 {
  width: 370px;
  bottom: 0;
  left: calc(50% - 130px);
}
@media screen and (min-width: 768px) {
  .second__image4 {
    left: calc(50% - 190px);
  }
}
.second__image4 img {
  border-radius: 24px;
  width: 100%;
}

.second__message {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-block: 110px 70px;
}
@media screen and (min-width: 768px) {
  .second__message {
    z-index: 1;
    grid-column: 2/3;
    grid-row: 1/3;
    margin-right: 40px;
    margin-left: 40px;
    padding-block: 160px 0;
  }
}
.second__message p {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 24px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  position: relative;
  line-height: 2;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .second__message p {
    font-size: 22px;
    padding: 34px 30px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
}
.second__message p span {
  font-size: 18px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  display: inline-block;
  padding: 10px 4px;
  background-color: #ffff80;
  letter-spacing: 0.1em;
  position: absolute;
  top: -46px;
  right: -58px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (min-width: 768px) {
  .second__message p span {
    top: -38px;
    right: -20px;
  }
}

/*===================================================
# skill
====================================================*/
.skill {
  padding-top: 100px;
}
@media screen and (min-width: 768px) {
  .skill {
    padding-top: 120px;
  }
}
.skill__flame {
  width: 100%;
  background-color: #cfeee9;
  margin: 0 auto;
  border-radius: 10px;
  padding: 0 18px 18px 18px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .skill__flame {
    max-width: 840px;
    padding: 0 24px 24px 24px;
  }
}
.skill__flame::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 228px;
  height: 55px;
  background: url(../img/bg/bg-skill.svg) no-repeat center center/contain;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.skill__flame2 {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .skill__flame2 {
    padding: 0 34px 34px 34px;
    border: solid #f6f6ec;
    border-width: 0px 2px 2px 2px;
    border-radius: 0 0 8px 8px;
  }
}
.skill__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  margin-top: 0;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
.skill__subtitle {
  padding-bottom: 6px;
  color: #7dbdb0;
}
.skill__subtitle::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 86px;
  height: 40px;
  background: url(../img/icon/icon_ribbon-w.svg) no-repeat center center/contain;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .skill__subtitle::after {
    width: 68px;
    height: 30px;
  }
}
.skill__title {
  color: #fff;
  margin-top: 12px;
}
@media screen and (max-width: 320px) {
  .skill__title {
    font-size: 30px;
  }
}
.skill__title::before, .skill__title::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 4px;
  width: 20px;
  height: 8px;
  border-top: 1px solid #7dbdb0;
  border-bottom: 1px solid #7dbdb0;
}
@media screen and (min-width: 768px) {
  .skill__title::before, .skill__title::after {
    width: 28px;
  }
}
.skill__title::before {
  margin-right: 14px;
}
@media screen and (min-width: 768px) {
  .skill__title::before {
    margin-right: 20px;
  }
}
.skill__title::after {
  margin-left: 14px;
}
@media screen and (min-width: 768px) {
  .skill__title::after {
    margin-left: 20px;
  }
}

.skill__contents {
  margin-top: 32px;
  margin-inline: auto;
  width: 94%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .skill__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    gap: 20px;
  }
}
.skill__contents-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .skill__contents-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 33.333%;
            flex: 0 1 33.333%;
  }
}
.skill__contents-image {
  width: 80px;
}
@media screen and (min-width: 768px) {
  .skill__contents-image {
    width: 100px;
    text-align: center;
    margin: 0 auto;
  }
}
.skill__contents-image img {
  width: 100%;
}
.skill__contents-textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 10px;
  gap: 8px;
  width: calc(100% - 94px);
}
@media screen and (min-width: 768px) {
  .skill__contents-textarea {
    width: 100%;
    gap: 10px;
  }
}
.skill__contents-head {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}
.skill__contents-text {
  font-size: 13px;
}

.skill__tool-wrap {
  margin-top: 30px;
  background-color: #f6f6ec;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0px;
}
@media screen and (min-width: 768px) {
  .skill__tool-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.skill__tool-head {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  padding: 10px 14px;
  text-align: center;
  border-bottom: 3px dotted #cfeee9;
}
@media screen and (min-width: 768px) {
  .skill__tool-head {
    border-bottom: none;
    border-right: 3px dotted #cfeee9;
    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;
    padding: 10px 10px 12px 10px;
    width: 16.6666666667%;
  }
}
.skill__tool-contents {
  padding: 8px 14px;
}
@media screen and (min-width: 768px) {
  .skill__tool-contents {
    width: 83.3333333333%;
    padding: 8px 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px;
  }
}
.skill__tool-contents p {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .skill__tool-contents p {
    font-size: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.skill__tool-contents p::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 4px;
  background-color: #7dbdb0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-radius: 50%;
}

/*===================================================
# work
====================================================*/
.work__head-wrap1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 26px;
}
@media screen and (min-width: 768px) {
  .work__head-wrap1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    width: 98%;
    margin-inline: auto;
    position: relative;
  }
  .work__head-wrap1::before {
    position: absolute;
    content: "";
    background: url(../img/bg/p_g-d.svg) no-repeat center center/contain;
    width: 49px;
    height: 49px;
    top: -10px;
    right: 235px;
  }
}

@media screen and (min-width: 768px) {
  .work__head-wrap2 {
    width: calc(100% - 280px);
  }
}

.work__head-textarea {
  margin-top: 20px;
}
.work__head-textarea p:nth-of-type(2) {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  border: solid #cfeee9;
  border-width: 1px 0px 1px 0px;
  padding: 4px 8px 6px;
}

.work__head-image {
  width: 180px;
  margin: 0 auto;
  position: relative;
}
.work__head-image::after {
  position: absolute;
  content: "";
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #ffff80;
  top: 10px;
  left: 10px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .work__head-image {
    margin-top: 10px;
  }
}
.work__head-image img {
  width: 100%;
}

.work__list-head {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, #7dbdb0 6px, #f6f6ec 6px, #f6f6ec 100%);
  padding: 20px 16px 24px 16px;
}
.work__list02 .work__list-head {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .work__list-head {
    margin-top: 60px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    padding: 16px 16px 16px 22px;
    background: linear-gradient(90deg, #7dbdb0 6px, #f6f6ec 6px, #f6f6ec 100%);
  }
  .work__list02 .work__list-head {
    margin-top: 70px;
  }
}
.work__list01 .work__list-head {
  position: relative;
}
.work__list01 .work__list-head::before {
  position: absolute;
  content: "";
  background: url(../img/icon/work_icon1.png) no-repeat center center/contain;
  width: 40px;
  height: 40px;
  bottom: -18px;
  right: 60px;
}
@media screen and (min-width: 768px) {
  .work__list01 .work__list-head::before {
    top: 50%;
    right: 58px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.work__list01 .work__list-head::after {
  position: absolute;
  content: "";
  background: url(../img/icon/work_icon2.png) no-repeat center center/contain;
  width: 40px;
  height: 40px;
  bottom: -18px;
  right: 14px;
}
@media screen and (min-width: 768px) {
  .work__list01 .work__list-head::after {
    top: 50%;
    right: 12px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.work__list02 .work__list-head {
  position: relative;
}
.work__list02 .work__list-head::after {
  position: absolute;
  content: "";
  background: url(../img/icon/work_icon2.png) no-repeat center center/contain;
  width: 40px;
  height: 40px;
  bottom: -18px;
  right: 14px;
}
@media screen and (min-width: 768px) {
  .work__list02 .work__list-head::after {
    top: 50%;
    right: 12px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.work__list-head-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .work__list-head-title {
    font-size: 20px;
  }
}
.work__list-head-title span {
  font-size: 20px;
}
.work__list-head-lead {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .work__list-head-lead {
    font-size: 16px;
    text-align: left;
  }
}
@media screen and (max-width: 840px) {
  .work__list-head-lead {
    font-size: 14px;
  }
}

.work__list {
  width: 92%;
  margin-inline: auto;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .work__list {
    margin-top: 54px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 60px 80px;
  }
}

.work__item {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .work__item {
    width: calc(50% - 40px);
  }
}
.work__item button {
  width: 100%;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .work__item-link {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .work__item-link:hover {
    opacity: 0.8;
  }
  .work__item-link:hover .work__item-name {
    color: #7dbdb0;
  }
}
@media screen and (min-width: 768px) {
  .work__item-button {
    cursor: pointer;
  }
  .work__item-button:hover .work__item-img {
    opacity: 0.8;
  }
  .work__item-button:hover .work__item-name {
    color: #7dbdb0;
  }
}
.work__item-img {
  margin-bottom: 8px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .work__item-img {
    margin-bottom: 12px;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
}
.work__item-img img {
  -webkit-box-shadow: 0 0px 4px rgba(76, 76, 76, 0.15);
          box-shadow: 0 0px 4px rgba(76, 76, 76, 0.15);
}
.work__item-img-pc {
  left: 0;
  width: 76.6773162939%;
}
.work__item-img-sp {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 19.9680511182%;
}
.work__item-name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.work__item-name > span {
  font-size: 15px;
  display: inline-block;
  margin-right: 8px;
}
@media screen and (min-width: 768px) {
  .work__item-name {
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
  }
}
.work__item-date {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin-block: 6px;
}
.work__item-tag {
  font-size: 13px;
  font-weight: 500;
  padding: 0 8px 1px;
  border-radius: 104px;
  border: solid 1px #7dbdb0;
  color: #7dbdb0;
  display: inline-block;
  margin-right: 4px;
  margin-bottom: 4px;
}

.types-modal {
  z-index: 100;
  position: fixed;
  inset: 0;
  margin: auto;
  border: none;
  padding: 0;
  border-radius: 4px;
  background: #fff;
  max-width: calc(100% - 40px);
  max-height: calc(100% - 40px);
  height: 480px;
  overflow: auto;
  overscroll-behavior-y: none;
}
@media screen and (min-width: 768px) {
  .types-modal {
    max-width: 800px;
    width: calc(100% - 40px);
    max-height: 600px;
    height: calc(100% - 40px);
  }
}
.types-modal::-ms-backdrop {
  opacity: 0.2;
  background: #000;
}
.types-modal::backdrop {
  opacity: 0.2;
  background: #000;
}

.types-modal-wrap {
  position: relative;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .types-modal-wrap {
    padding: 40px;
  }
}

.work__item-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
}
.work__item-text {
  margin-top: 14px;
}
.work__item-text + .work__item-text {
  margin-top: 10px;
}

.types-modal__close-button {
  position: fixed;
  top: 60px;
  right: 20px;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .types-modal__close-button {
    top: 40px;
    right: max(5%, 50% - 380px);
  }
}

.close-icon {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
.close-icon::before, .close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  border-radius: 2px;
  height: 24px;
  background: #4c4c4c;
}
.close-icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.close-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.close-icon p {
  font-size: 11px;
  position: absolute;
  bottom: -20px;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*===================================================
# about
====================================================*/
.about {
  background-color: #f6f6ec;
  padding-top: 100px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about {
    padding-top: 140px;
  }
}
.about::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100px;
  background-image: url(../img/bg/bg-ripple-m.svg);
  background-repeat: repeat-x;
  background-position: center center;
  background-size: cover;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(1, -1);
          transform: translateX(-50%) scale(1, -1);
}
@media screen and (min-width: 1280px) {
  .about::after {
    background-size: contain;
  }
}
.about__head-wrap1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 26px;
}
@media screen and (min-width: 768px) {
  .about__head-wrap1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 10px;
    width: 98%;
    margin-inline: auto;
  }
}
.about__head-wrap2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .about__head-wrap2 {
    width: calc(100% - 240px);
    margin-bottom: 10px;
    position: relative;
  }
  .about__head-wrap2::before {
    position: absolute;
    content: "";
    background: url(../img/bg/p_w-s.svg) no-repeat center center/contain;
    width: 88px;
    height: 88px;
    top: -50px;
    right: 12.6953125%;
  }
  .about__head-wrap2::after {
    position: absolute;
    content: "";
    background: url(../img/bg/p_y.svg) no-repeat center center/contain;
    width: 29px;
    height: 29px;
    top: 30px;
    right: 6.8359375%;
  }
}
.about__head-lead {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__head-lead {
    text-align: left;
  }
}
.about__head-image {
  width: 180px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.about__head-image::after {
  position: absolute;
  content: "";
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #ffff80;
  top: 10px;
  left: 10px;
  z-index: -1;
}
.about__head-image img {
  width: 100%;
}

.about__text-area {
  margin-top: 40px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .about__text-area {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 60px;
  }
}
.about__text-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .about__text-item {
    width: calc(50% - 30px);
  }
}
.about__text-head {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  padding-bottom: 8px;
  padding-inline: 10px;
  border-bottom: 1px solid #4c4c4c;
}
.about__text-content p {
  font-size: 14px;
}
.about__text-content p:nth-of-type(n + 2) {
  margin-top: 14px;
}

/*===================================================
# footer
====================================================*/
.footer__bg {
  padding-top: 40px;
  width: 100%;
  height: 440px;
  background-image: url(../img/bg/bg_footer-sp.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer__bg {
    padding-top: 60px;
    height: 270px;
    background-image: url(../img/bg/bg_footer-pc.jpg);
    background-position: center center;
  }
}
.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .footer__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}
.footer__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 10px;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .footer__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-left: 16px;
  }
}
.footer__subtitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: #fff;
  line-height: 1;
  margin-top: 12px;
  text-shadow: #7dbdb0 -1px -1px, #7dbdb0 -1px 0px, #7dbdb0 -1px 1px, #7dbdb0 0px -1px, #7dbdb0 0px 0px, #7dbdb0 0px 1px, #7dbdb0 1px -1px, #7dbdb0 1px 0px, #7dbdb0 1px 1px;
}
@media screen and (min-width: 768px) {
  .footer__subtitle {
    margin-top: 0;
  }
}
.footer__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #7dbdb0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 6px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer__title {
    font-size: 16px;
    padding-bottom: 2px;
    padding-right: 4px;
  }
}
.footer__message p {
  font-size: 14px;
}
.footer__text {
  font-size: 13px;
  margin-top: 20px;
  line-height: 1.8;
  text-align: left;
}
.footer__text dt {
  font-weight: 400;
  float: left;
  padding-left: 12px;
  padding-right: 10px;
  position: relative;
}
.footer__text dt::after {
  position: absolute;
  content: "";
  background-color: #7dbdb0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 12px;
  left: 4px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.footer__text dd {
  font-weight: 400;
}
.footer__copy-wrap {
  text-align: center;
  padding: 10px 40px;
  position: absolute;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.footer__copy {
  font-size: 11px;
}