@charset "UTF-8";
/*
コーディング規約
https://qiita.com/super-mana-chan/items/644c6827be954c8db2c0
*/
/*
「/src/sass/foundation」ディレクトリ内のscssファイルを読み込みます。
[例]/src/sass/foundation/base/_example.scss を読み込む場合
@forward "../../foundation/base/example";
*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;700&display=swap");
@import url("https://tanigawa-group.com/css/style-renewal.css");
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
* {
  box-sizing: border-box;
}

:root {
  scroll-behavior: smooth !important;
  scroll-padding-top: 10px;
}

body {
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

img {
  width: 100%;
}

/*
「/src/sass/layout」ディレクトリ内のscssファイルを読み込みます。
[例]/src/sass/layout/_example.scss を読み込む場合
@forward "../../layout/example";
*/
.l-sectionWrapper {
  padding: 80px 15px;
}
@media screen and (max-width: 960px) {
  .l-sectionWrapper {
    padding: 60px 15px;
  }
}
@media screen and (max-width: 768px) {
  .l-sectionWrapper {
    padding: 40px 15px;
  }
}
.l-sectionWrapper--nopb {
  padding-bottom: 0;
}

/* component project utilityをまとめる */
/*
「/src/sass/object/component」ディレクトリ内のscssファイルを読み込みます。
[例]/src/sass/object/component/_example.scss を読み込む場合
@forward "../../object/component/example";
*/
.c-bg--line {
  position: relative;
}
.c-bg--line::before, .c-bg--line::after {
  content: "";
  display: none;
  width: 100%;
  height: 10px;
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  z-index: 1;
}
.c-bg--line::before {
  top: -5px;
}
.c-bg--line::after {
  bottom: -5px;
}
.c-bg__blue {
  background-color: #008CC2;
}
.c-bg__lightgreen {
  background-color: #80B01A;
}
.c-bg__lightgreen--upperLine::before {
  display: block;
  background-image: url(../img/bg_line_lightgreen.webp);
}
.c-bg__lightgreen--bottomLine::after {
  display: block;
  background-image: url(../img/bg_line_lightgreen.webp);
  transform: rotate(180deg);
}
.c-bg__green {
  background-color: #00A29A;
}
.c-bg__green::after {
  display: block;
  background-image: url(../img/bg_line_green.webp);
  transform: rotate(180deg);
}
.c-bg__stripe {
  background-image: url(../img/bg_stripe_left.webp), url(../img/bg_stripe_right.webp), repeating-linear-gradient(135deg, #e6f4f9, #e6f4f9 15px, #fff 15px, #fff 23px);
  background-repeat: no-repeat;
  background-position: left bottom, right bottom, center center;
  background-size: 400px, 400px, auto auto;
}
@media screen and (max-width: 960px) {
  .c-bg__stripe {
    background-size: 300px, 300px, auto auto;
  }
}
@media screen and (max-width: 768px) {
  .c-bg__stripe {
    background-size: 180px, 180px, auto auto;
  }
}

.c-footer {
  margin-top: 0;
}

.c-festaTitle {
  display: flex;
  width: calc(100% - 40px);
  margin: 0 auto -2px;
}
.c-festaTitle figure {
  width: 22.5%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
@media screen and (max-width: 960px) {
  .c-festaTitle figure {
    width: 18%;
  }
}
@media screen and (max-width: 768px) {
  .c-festaTitle figure {
    display: none;
  }
}
.c-festaTitle figure img {
  margin: 0 auto;
}
.c-festaTitle h2 {
  width: 55%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
@media screen and (max-width: 960px) {
  .c-festaTitle h2 {
    width: 64%;
  }
}
@media screen and (max-width: 768px) {
  .c-festaTitle h2 {
    width: 95%;
    margin: 0 auto;
  }
}

.c-present {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
}
.c-present__btn {
  width: 35%;
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .c-present__btn {
    width: 55%;
    bottom: 9%;
  }
}
.c-present__btn a {
  transition: 0.5s;
}
.c-present__btn a:hover {
  opacity: 0.7;
  transition: 0.5s;
}
.c-present__note {
  width: 100%;
  text-align: center;
  font-size: clamp(10px, 1.5vw, 12px);
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .c-present__note {
    bottom: 2%;
  }
}

.c-imageCaption {
  position: relative;
}
.c-imageCaption img {
  border-radius: 15px;
}
.c-imageCaption figcaption {
  position: absolute;
  font-size: 12px;
  left: 6px;
  bottom: 6px;
}
.c-imageCaption--white figcaption {
  color: #FFF;
}

/*
「/src/sass/object/project」ディレクトリ内のscssファイルを読み込みます。
[例]/src/sass/object/project/_example.scss を読み込む場合
@forward "../../object/project/example";
*/
.p-hero {
  padding: 80px 15px 60px;
  position: relative;
  background-image: url(../img/hero_bg_left.webp), url(../img/hero_bg_right.webp);
  background-repeat: no-repeat;
  background-position: bottom left, bottom right;
  background-size: 380px auto, 400px auto;
}
@media screen and (max-width: 1400px) {
  .p-hero {
    background-size: 280px auto, 300px auto;
  }
}
@media screen and (max-width: 1100px) {
  .p-hero {
    background-size: 200px auto, 180px auto;
  }
}
@media screen and (max-width: 768px) {
  .p-hero {
    padding: 60px 15px;
    background-size: 220px auto, 120px auto;
  }
}
.p-hero__logo {
  position: absolute;
  top: 40px;
  left: 80px;
  width: 200px;
}
@media screen and (max-width: 1400px) {
  .p-hero__logo {
    top: 30px;
    left: 40px;
  }
}
@media screen and (max-width: 1100px) {
  .p-hero__logo {
    width: 160px;
  }
}
@media screen and (max-width: 768px) {
  .p-hero__logo {
    top: 20px;
    left: 20px;
    width: 150px;
  }
}
.p-hero__title {
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .p-hero__title {
    max-width: 600px;
  }
}
@media screen and (max-width: 1100px) {
  .p-hero__title {
    max-width: 500px;
  }
}
.p-hero__note {
  color: #FFF;
  text-align: center;
  margin-top: 30px;
  font-weight: bold;
}
@media screen and (max-width: 1400px) {
  .p-hero__note {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .p-hero__note {
    font-size: 12px;
  }
}
.p-hero__text1 {
  width: 200px;
  position: absolute;
  right: 8%;
  top: 80px;
}
@media screen and (max-width: 1400px) {
  .p-hero__text1 {
    width: 170px;
  }
}
@media screen and (max-width: 1100px) {
  .p-hero__text1 {
    width: 150px;
    right: 5%;
  }
}
@media screen and (max-width: 768px) {
  .p-hero__text1 {
    position: static;
    margin: 30px auto 0;
    width: 150px;
    transform: translateX(-20px);
  }
}
.p-hero__text2 {
  width: 160px;
  position: absolute;
  right: 4%;
  top: 215px;
  animation: hero_fluffy 1s infinite;
}
@media screen and (max-width: 1400px) {
  .p-hero__text2 {
    width: 130px;
    top: 200px;
  }
}
@media screen and (max-width: 1100px) {
  .p-hero__text2 {
    width: 120px;
    right: 3%;
  }
}
@media screen and (max-width: 768px) {
  .p-hero__text2 {
    position: static;
    margin: -30px auto 0;
    width: 120px;
    transform: translateX(20px);
  }
}
.p-hero__text2 a {
  transition: 0.5s;
}
.p-hero__text2 a:hover {
  transition: 0.5s;
  opacity: 0.9;
}
@keyframes hero_fluffy {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.p-hero__imageLeft {
  width: 380px;
  position: absolute;
  left: 100px;
  bottom: -70px;
  z-index: 2;
}
@media screen and (max-width: 1400px) {
  .p-hero__imageLeft {
    width: 320px;
    left: 40px;
    bottom: -60px;
  }
}
@media screen and (max-width: 1100px) {
  .p-hero__imageLeft {
    width: 250px;
    bottom: -70px;
  }
}
@media screen and (max-width: 768px) {
  .p-hero__imageLeft {
    width: 130px;
    left: 5px;
    bottom: -20px;
  }
}
.p-hero__imageRight {
  width: 450px;
  position: absolute;
  right: 50px;
  bottom: -30px;
  z-index: 2;
}
@media screen and (max-width: 1400px) {
  .p-hero__imageRight {
    right: 30px;
    width: 350px;
  }
}
@media screen and (max-width: 1100px) {
  .p-hero__imageRight {
    right: 10px;
    width: 290px;
    bottom: -60px;
  }
}
@media screen and (max-width: 768px) {
  .p-hero__imageRight {
    width: 220px;
    right: 0;
    bottom: -40px;
  }
}

.p-menu {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .p-menu {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-menu {
    margin-bottom: 40px;
  }
}
.p-menu ul {
  max-width: calc(100% - 300px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .p-menu ul {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-menu ul {
    max-width: none;
  }
}
.p-menu ul li {
  width: 250px;
}
@media screen and (max-width: 1280px) {
  .p-menu ul li {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .p-menu ul li {
    width: 150px;
  }
}
.p-menu ul li a img {
  transition: 0.5s;
}
.p-menu ul li a img:hover {
  transition: 0.5s;
  transform: scale(1.1);
}
.p-menu__illustLeft {
  width: 55px;
  position: absolute;
  left: 150px;
  z-index: 0;
}
@media screen and (max-width: 1400px) {
  .p-menu__illustLeft {
    left: 80px;
  }
}
@media screen and (max-width: 1280px) {
  .p-menu__illustLeft {
    left: 120px;
    left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-menu__illustLeft {
    display: none;
  }
}
.p-menu__illustRight {
  width: 190px;
  position: absolute;
  right: 50px;
  top: -85px;
  z-index: 2;
}
@media screen and (max-width: 1400px) {
  .p-menu__illustRight {
    width: 150px;
    right: 20px;
  }
}
@media screen and (max-width: 1280px) {
  .p-menu__illustRight {
    right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-menu__illustRight {
    display: none;
  }
}

.p-festa {
  max-width: 960px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 960px) {
  .p-festa {
    margin: 0 auto 60px;
  }
}
@media screen and (max-width: 960px) {
  .p-festa {
    margin: 0 auto 40px;
  }
}
.p-festa__contents {
  border: solid 5px #008CC2;
  background-color: #FFF;
  padding: 40px;
  border-radius: 25px;
}
@media screen and (max-width: 768px) {
  .p-festa__contents {
    padding: 15px;
  }
}
.p-festa__titleLeft img {
  max-width: 180px;
}
.p-festa__titleRight img {
  max-width: 150px;
}
.p-festa__content {
  display: flex;
  justify-content: space-between;
  border-bottom: dotted 5px #008CC2;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-festa__content {
    display: block;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.p-festa__content--nobd {
  border-bottom: none;
}
.p-festa__content--tsukamidori {
  background-image: url(../img/festa_bg1.svg);
  background-repeat: no-repeat;
  background-size: 33% auto;
  background-position: right center;
}
@media screen and (max-width: 768px) {
  .p-festa__content--tsukamidori {
    background-size: 40% auto;
    background-position: right bottom 20px;
  }
}
.p-festa__content--food {
  background-image: url(../img/festa_bg2.svg);
  background-repeat: no-repeat;
  background-size: 38% auto;
  background-position: right center;
}
@media screen and (max-width: 768px) {
  .p-festa__content--food {
    background-size: 55% auto;
    background-position: right bottom 40px;
  }
}
.p-festa__contentImage {
  width: 35%;
}
@media screen and (max-width: 768px) {
  .p-festa__contentImage {
    width: 100%;
    margin-bottom: 20px;
  }
}
.p-festa__contentText {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .p-festa__contentText {
    width: 100%;
  }
}
.p-festa__contentText h3 {
  font-size: 28px;
  color: #008CC2;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .p-festa__contentText h3 {
    font-size: 20px;
  }
}
.p-festa__contentText p {
  line-height: 1.8em;
}
@media screen and (max-width: 768px) {
  .p-festa__contentText p {
    font-size: 14px;
  }
}
.p-festa__contentText ul {
  margin-top: 10px;
  line-height: 1.8em;
  font-size: 14px;
}
.p-festa__contentText--food ul {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-festa__contentText--food ul {
    font-size: 15px;
  }
}
.p-festa__contentText--food ul li {
  color: #008CC2;
}
.p-festa__contentText--food ul li::first-letter {
  color: #CCE8F3;
}
.p-festa__rico {
  background-color: #CCE8F3;
  padding: 40px;
  border-radius: 15px;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .p-festa__rico {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 768px) {
  .p-festa__rico {
    margin-bottom: 35px;
    padding: 30px 15px;
  }
}
.p-festa__ricoTextDate {
  background-color: #FFF000;
  position: absolute;
  padding: 5px 30px;
  font-weight: bold;
  color: #008CC2;
  border-radius: 50px;
  top: -15px;
  left: 20px;
}
@media screen and (max-width: 768px) {
  .p-festa__ricoTextDate {
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    text-align: center;
  }
}
.p-festa__ricoContents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p-festa__ricoText {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .p-festa__ricoText {
    width: 100%;
    margin-bottom: 15px;
  }
}
.p-festa__ricoText h2 {
  color: #008CC2;
  font-size: 22px;
  margin-bottom: 10px;
}
.p-festa__ricoText p {
  font-size: 14px;
}
.p-festa__ricoLogo {
  width: 13%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .p-festa__ricoLogo {
    width: 30%;
  }
}
.p-festa__ricoImage {
  width: 23%;
}
@media screen and (max-width: 768px) {
  .p-festa__ricoImage {
    width: 60%;
  }
}
.p-festa__ricoTextNote {
  font-size: 12px;
  margin-top: 10px;
}
.p-festa__ricoIllust1 {
  position: absolute;
  width: 70px;
  top: -30px;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .p-festa__ricoIllust1 {
    width: 50px;
    right: 5px;
    top: -40px;
  }
}
.p-festa__ricoIllust2 {
  position: absolute;
  width: 70px;
  bottom: -30px;
  right: -15px;
}
@media screen and (max-width: 768px) {
  .p-festa__ricoIllust2 {
    right: -25px;
  }
}
.p-festa__map {
  padding-top: 40px;
}
.p-festa__map h2 {
  max-width: 200px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  .p-festa__map h2 {
    max-width: 150px;
  }
}
.p-festa__derection ul {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .p-festa__derection ul {
    font-size: 10px;
  }
}
.p-festa__derection ul li {
  margin: 0 30px;
}
@media screen and (max-width: 768px) {
  .p-festa__derection ul li {
    margin: 0;
  }
}
.p-festa__note {
  margin-top: 20px;
  font-size: 14px;
}

.p-modelhouse {
  max-width: 960px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 960px) {
  .p-modelhouse {
    margin: 0 auto 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-modelhouse {
    margin: 0 auto 40px;
  }
}
.p-modelhouse__contents {
  border: solid 5px #ec6d65;
  background-color: #fff;
  padding: 40px;
  border-radius: 25px;
}
@media screen and (max-width: 768px) {
  .p-modelhouse__contents {
    padding: 15px;
  }
}
.p-modelhouse__titleText {
  margin-bottom: 50px;
  text-align: center;
}
.p-modelhouse__titleText h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #ec6d65;
}
.p-modelhouse__titleLeft {
  margin-bottom: -10px;
}
.p-modelhouse__titleLeft img {
  max-width: 140px;
}
.p-modelhouse__titleRight {
  margin-bottom: -10px;
}
.p-modelhouse__titleRight img {
  max-width: 170px;
  margin-bottom: -10px;
}
.p-modelhouse__maps {
  display: flex;
  gap: 40px;
  padding-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .p-modelhouse__maps {
    flex-direction: column;
  }
}
.p-modelhouse__mapRight {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .p-modelhouse__mapRight {
    width: 100%;
  }
}
.p-modelhouse__mapLeft {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .p-modelhouse__mapLeft {
    width: 100%;
  }
}
.p-modelhouse__mapRightData {
  display: flex;
  flex-wrap: wrap;
  margin-top: -20px;
  margin-right: 32px;
  font-size: 12px;
  gap: 0px 8px;
}
@media screen and (max-width: 768px) {
  .p-modelhouse__mapRightData {
    margin-right: 40px;
    margin-top: -25px;
  }
}
.p-modelhouse__mapRightData dl {
  display: flex;
}
.p-modelhouse__features {
  grid-template-rows: auto;
}
.p-modelhouse__features ol {
  display: grid;
  gap: min(2.3vw, 25px);
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: min(5vw, 60px);
}
@media screen and (max-width: 768px) {
  .p-modelhouse__features ol {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: min(10vw, 80px);
  }
}
@media (max-width: 500px) {
  .p-modelhouse__features ol {
    grid-template-columns: 1fr;
    padding-bottom: 20px;
  }
}
.p-modelhouse__features li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 10px;
  background: #fdf0f0;
  color: #ec6d65;
  padding: 20px 8%;
  font-weight: 600;
}
.p-modelhouse__features li dt {
  color: #fff;
  background: #ec6d65;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 1.4em;
  aspect-ratio: 1/1;
  padding-bottom: 1px;
  margin-top: 1px;
  margin-right: 10px;
}
.p-modelhouse__inDeco {
  position: relative;
}
.p-modelhouse__inDeco dd {
  padding-right: 5px;
}
.p-modelhouse__inDeco div {
  position: absolute;
  z-index: 10;
  top: 50px;
  right: -55px;
  width: 40%;
  max-width: 120px;
}
@media screen and (max-width: 768px) {
  .p-modelhouse__inDeco div {
    top: 30px;
  }
}
.p-modelhouse__slider .slick-list {
  width: 90%;
  margin: 0 auto;
}
.p-modelhouse__slider div {
  font-size: 12px;
  text-align: right;
}
.p-modelhouse__slider--next, .p-modelhouse__slider--prev {
  width: 5%;
  max-width: 25px;
  height: auto;
}
.p-modelhouse__slider--prev {
  position: absolute;
  left: 0;
  padding-right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.p-modelhouse__slider--next {
  position: absolute;
  right: 0;
  padding-left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.p-consulting {
  max-width: 960px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 960px) {
  .p-consulting {
    margin: 0 auto 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-consulting {
    margin: 0 auto 40px;
  }
}
.p-consulting__title {
  position: relative;
  padding-bottom: 60px;
}
.p-consulting__title h2 {
  max-width: 720px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .p-consulting__title h2 {
    max-width: 460px;
  }
}
.p-consulting__title p {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  line-height: 1.8em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-consulting__title p {
    font-size: 14px;
  }
}
.p-consulting__titleIllustLeft {
  width: 200px;
  position: absolute;
  left: 20px;
  bottom: -25px;
}
@media screen and (max-width: 960px) {
  .p-consulting__titleIllustLeft {
    width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .p-consulting__titleIllustLeft {
    left: 15px;
    width: 110px;
    bottom: -10px;
  }
}
.p-consulting__titleIllustRight {
  width: 80px;
  position: absolute;
  right: 60px;
  bottom: -10px;
}
@media screen and (max-width: 960px) {
  .p-consulting__titleIllustRight {
    width: 60px;
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-consulting__titleIllustRight {
    width: 60px;
    right: 0;
  }
}
.p-consulting__contents {
  background-color: #fff;
  padding: 40px 6%;
  border-radius: 25px;
}
@media screen and (max-width: 768px) {
  .p-consulting__contents {
    padding: 30px 4%;
  }
}
.p-consulting__content {
  display: flex;
  gap: 20px 4%;
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: dotted 5px #00a29a;
}
.p-consulting__content:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-consulting__content {
    flex-direction: column;
  }
}
.p-consulting__contentImage {
  flex: 1;
  width: auto;
}
.p-consulting__contentImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-consulting__contentImage img {
    aspect-ratio: 1/0.6;
  }
}
.p-consulting__contentText {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .p-consulting__contentText {
    width: 100%;
  }
}
.p-consulting__contentText h2 {
  color: #00a29a;
  font-size: 35px;
}
@media screen and (max-width: 768px) {
  .p-consulting__contentText h2 {
    font-size: 25px;
  }
}
.p-consulting__contentText p {
  line-height: 2em;
  margin-bottom: 20px;
}
.p-consulting__contentText ul {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75em;
}
.p-consulting__contentText ul li::before {
  content: "";
  background: url(../img/consulting_content_check.svg) top/cover;
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  margin-right: 10px;
}

.p-access {
  max-width: 960px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 960px) {
  .p-access {
    margin: 0 auto 40px;
  }
}
.p-access__title {
  position: relative;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-access__title {
    padding-bottom: 30px;
  }
}
.p-access__title h2 {
  font-size: 40px;
  color: #008cc2;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-access__title h2 {
    font-size: 35px;
  }
}
@media screen and (max-width: 768px) {
  .p-access__title h2 {
    font-size: 30px;
  }
}
.p-access__titleIllustLeft {
  width: 200px;
  position: absolute;
  left: 30px;
  bottom: -25px;
}
@media screen and (max-width: 960px) {
  .p-access__titleIllustLeft {
    width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .p-access__titleIllustLeft {
    left: 15px;
    width: 90px;
    bottom: -10px;
  }
}
.p-access__titleIllustRight {
  width: 180px;
  position: absolute;
  right: 60px;
  bottom: -10px;
}
@media screen and (max-width: 960px) {
  .p-access__titleIllustRight {
    width: 120px;
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-access__titleIllustRight {
    width: 60px;
    right: 20px;
  }
}
.p-access__contents {
  background-color: #fff;
  padding: 40px;
  border-radius: 25px;
}
@media screen and (max-width: 768px) {
  .p-access__contents {
    padding: 15px;
  }
}
.p-access__contents iframe {
  width: 100%;
}
.p-access__contents div {
  font-size: 14px;
}
.p-access__contents dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5em;
  margin-top: 15px;
}
.p-access__contents dl dt {
  font-size: 18px;
  background: #6fba2c;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding: 0 5px;
  width: fit-content;
  min-width: 70px;
  font-weight: 600;
}
.p-access__contents dl dt img {
  aspect-ratio: 1/1;
  width: 1em;
  height: auto;
  margin-right: 5px;
}

.p-bottomIllust {
  padding: 0 15px;
  position: relative;
  z-index: 2;
}
.p-bottomIllust picture {
  max-width: 1400px;
  margin: 0 auto -30px;
}
@media screen and (max-width: 768px) {
  .p-bottomIllust picture {
    margin: 0 auto -15px;
  }
}

.p-company {
  text-align: center;
  margin-top: 80px;
  font-weight: bold;
  color: #FFF;
}
@media screen and (max-width: 960px) {
  .p-company {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .p-company {
    margin-top: 40px;
  }
}
.p-company__freedial {
  max-width: 400px;
  margin: 20px auto;
}

/*
「/src/sass/object/utility」ディレクトリ内のscssファイルを読み込みます。
[例]/src/sass/object/utility/_example.scss を読み込む場合
@forward "../../object/utility/example";
*/
.u-br {
  /*
  PCのみ
  */
  /*
  タブレット・スマホ
  */
  /*
  スマホ
  */
}
.u-br__pc {
  display: none;
}
@media screen and (max-width: 960px) {
  .u-br__pc {
    display: inline;
  }
}
.u-br__tb {
  display: none;
}
@media screen and (max-width: 960px) {
  .u-br__tb {
    display: inline;
  }
}
.u-br__sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-br__sp {
    display: inline;
  }
}
.u-br__nosp {
  display: inline;
}
@media screen and (max-width: 768px) {
  .u-br__nosp {
    display: none;
  }
}

/*
「/src/sass/pages」ディレクトリ内のscssファイルを読み込みます。
[例]/src/sass/pages/_example.scss を読み込む場合
@forward "../../pages/example";
*//*# sourceMappingURL=style.css.map */