@charset "utf-8";
/* CSS Document */
/* 変数 */ :root {
  --f1: 3.125em; /* 50ppx */
  --f2: 1.95em; /* 31.2px */
  --f3: 1.56em; /* 24.96px */
  --f4: 1.25em; /* 20px */
  --f5: 1em; /* 16px */
  --f6: 0.9em; /* 14.4px */
  --basecolor: #E9C6BB; /* 基本色 */
  --maincolor: #736357; /* メイン */
  --accentcolor: #C8B099; /* アクセント */
  --myfont: Noto-serif-JP;
  --myw: 1120px; /* 標準幅 */
  --mob-myw: 500px;
}
/* フォント */
body {
  font-family: Noto-serif-JP;
}
p {
  line-height: 1.8;
  font-size: var(--f5);
}
h1 {
  font-size: var(--f1);
}
h2 {
  font-size: var(--f2);
  font-weight: bold;
}
h3 {
  font-size: var(--f3);
}
h4 {
  font-size: var(--f4);
}
h5 {
  font-size: var(--f5);
}
h6 {
  font-size: var(--f6);
}
.section-title {
  color: var(--maincolor);
  text-align: center;
  margin-bottom: 50px;
}
/* 横幅 */
body {
  margin: 0;
}
.mycontainer, .mob-mycontainer {
  margin-left: 10px;
  margin-right: 10px;
}
.alignfull {
  margin-left: -10px;
  margin-right: -10px;
  max-width: none;
  width: auto;
}
@media (min-width: 1120px) {
  .mycontainer {
    max-width: none;
    margin-left: calc((100vw - var(--myw)) / 2);
    margin-right: calc((100vw - var(--myw)) / 2);
    padding: 0 20px;
  }
}
@media (min-width: 500px) and (max-width: 780px) {
.mob-mycontainer {
    max-width: 500px;
    margin-left: calc((100vw - var(--mob-myw)) / 2);
    margin-right: calc((100vw - var(--mob-myw)) / 2);
  }
  .about-profile {
    max-width: 500px;
    margin-left: calc((100vw - var(--mob-myw)) / 2);
    margin-right: calc((100vw - var(--mob-myw)) / 2);
  }
}
header {
  height: 112px;
  background-color: var(--basecolor);
  position: relative; /*z-index使用のため指定*/
  z-index: 1; /*top-heroのmargin-topを－にしたため指定*/
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo img {
  height: 100px;
}
.header-logo img:hover {
  opacity: 0.5;
}
.header-nav > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 112px;
}
.header-nav li {
  margin-left: 30px;
  display: block;
  height: 100%;
  line-height: 112px; /*同じ高さを指定（ulで112px指定すみ。）で中央配置んいする*/
}
.header-nav li :hover {
  border-bottom: solid 3px var(--maincolor);
  transition: all 0.1s 0.2s ease; /*(対象のプロパティ)(変化にかかる時間)(変化の開始時間を遅らせる)(変化する速度を変える)*/
}
.header-nav li:last-child {
  background-color: var(--accentcolor);
  padding: 0 13px;
}
.section-top-hero {
  height: 100vh;
  background-image: url("img/top-hero.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  position: relative;
  z-index: 0;
  margin-top: -112px;
}
.section-top-hero::before {
  content: "";
  background-color: rgba(233, 198, 187, 0.3);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.top-hero-text {
  position: relative;
  height: 100%;
}
.top-hero-text > p {
  position: absolute;
  top: 56%;
  left: 2%;
  font-size: var(--f1);
  color: #736357;
  font-weight: bold;
  text-shadow: 5px 5px 2px rgb(250, 250, 250, 5.4);
}
/*section-top-works*/
.section-top-works {
  margin-top: 80px;
}
.top-works-wrapper.pc {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top-works-wrapper.mob{
display: none;
}
.top-works-item {
  flex-basis: 31.2%;
  border-radius: 5px;
  box-shadow: 4px 4px 4px rgb(0, 0, 0, .25);
  margin-bottom: 50px;
}
.top-works-item.item01 {
  background-image: linear-gradient(45deg, rgba(244, 161, 174, .22) 0%, rgba(244, 161, 174, .11) 100%);
}
.top-works-item.item02 {
  background-image: linear-gradient(45deg, rgba(255, 242, 237, 1) 0%, rgba(255, 242, 237, .5) 100%);
}
.top-works-item.item03 {
  background-image: linear-gradient(45deg, rgba(0, 144, 170, .2) 0%, rgba(0, 144, 170, .04) 100%);
}
.top-works-item.item04 {
  background-image: linear-gradient(45deg, rgba(236, 251, 255, 1) 0%, rgba(236, 251, 255, .25) 100%);
}
.top-works-item img {
  margin: 20px 0;
  width: 100%;
}
.top-works-item > .p-s {
  font-size: var(--f6);
}
.top-works-item-content {
  text-align: center;
  width: 94.2%;
  margin: 0 auto;
  padding-bottom: 60px;
}
.top-works-item p {
  text-align: left;
  color: #666666;
}
/*section-toop-skil*/
.section-toop-skil {
  margin-top: 80px;
  padding: 80px 0;
  background-color: var(--basecolor);
}
.top-skil-wrapper {
  display: flex;
  justify-content: space-between;
}
.top-skil-item {
  background-color: #fff;
  padding: 50px 25px;
  width: 32%;
}
.top-skil-item > .p-m {
  font-size: var(--f3);
  text-align: center;
  margin-bottom: 20px;
}
/*ポップアップウィンドウ設定*/
.modal_pop-01, .modal_pop-02, .modal_pop-03, .modal_pop-04 {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9997 !important;
  display: none; /*サイト表示の際に一瞬ポップアップウィンドウが表示されるのを防ぐ*/
}
.modal_pop-bg {
  background-color: #333333;
  opacity: .9;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9998 !important;
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 50px;
  height: 50px;
}
.fa-x {
  color: #fff;
}
.modal_pop_main {
  margin-top: 20px;
  max-width: 750px;
  margin-left: calc((100vw - 750px) / 2);
  margin-right: calc((100vw - 750px) / 2);
}
.modal_pop_img_wrapper, .slider {
  display: flex;
  justify-content: space-between;
}
.modal_pop_main {
  margin-top: 30px;
  max-width: 900px;
  margin-left: calc((100vw - 900px) / 2);
  margin-right: calc((100vw - 900px) / 2);
  padding: 0 5%;
}
.modal_pop_sub {
  padding: 0 12%;
}
.modal_pop_title {
  font-size: var(--f2);
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
}
.modal_pop_sub {
  font-size: var(--f3);
  font-weight: bold;
  color: #fff;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.modal_pop_item {
  width: 28%;
}
.modal_pop_item img {
  width: 100%;
}
.show_pop {
  cursor: pointer;
}
/*Worksアイテムにホバーした際の設定（read moreのフレーム）*/
.top-works-item-flame {
  position: relative;
  overflow: hidden;
}
.top-works-item-flame::before, .top-works-item-flame::after {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1); /*イージングの設定*/
  opacity: 0;
}
.top-works-item-flame::before {
  background: rgba(233, 198, 187, .9);
  width: 100%;
  height: 100%;
}
.top-works-item-flame::after {
  color: #fff;
  content: "Read More";
  font-size: 22px;
  font-weight: bold;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  bottom: 0;
  right: 0;
}
.top-works-item-flame:hover::before, .top-works-item-flame:hover::after {
  opacity: 1;
}
/*works一覧へのボタン*/
.works-btn {
  text-align: right;
  width: 94.2%;
}
.top-profilo-right > a > button, .section-top-contact > a > button, .works-btn > a > button {
  margin-top: 50px;
  background-color: var(--accentcolor);
  color: #fff;
  width: 80%;
  height: 69px;
  font-size: var(--f4);
  font-weight: bold;
  text-align: center;
  box-shadow: 4px 4px 4px rgba(115, 99, 87, .8);
  max-width: 260px;
}
.works-btn > a > button {
  width: 27%;
}
.top-profilo-right > a > button:hover, .section-top-contact > a > button:hover, .works-btn > a > button:hover {
  background-color: #fff;
  color: var(--accentcolor);
  border: solid 2px var(--accentcolor);
  box-shadow: 4px 4px 4px rgba(115, 99, 87, .8);
  transition: all 0.2s 0.2s ease; /*(対象のプロパティ)(変化にかかる時間)(変化の開始時間を遅らせる)(変化する速度を変える) */
}
.top-profilo-right > a > button > span, .section-top-contact > a > button > span, .works-detail-left-second > a > button > span, .works-btn > a > button > span {
  margin-left: 20px;
}
/*section-top-tool*/
.section-top-tool {
  margin-top: 80px;
}
.top-tool-wrapper {
  text-align: left;
}
.top-tool-item {
  display: flex;
  margin-bottom: 50px;
  align-items: center;
  justify-content: flex-start;
}
.top-tool-item > .p-m {
  font-size: var(--f3);
  background-color: var(--basecolor);
  color: #fff;
  width: 26.5%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  margin-right: 5%;
}
.top-tool-item > .p-s {
  font-size: var(--f4);
  color: var(--maincolor);
}
/*section-top-profilo*/
.section-top-profilo {
  margin-top: 80px;
  padding: 80px 0;
  background-color: var(--basecolor);
}
.top-profilo-wrapper {
  display: flex;
  justify-content: space-between;
}
.top-profilo-img {
  flex-basis: 49.1%;
}
.top-profilo-img > img {
  width: 100%;
  box-shadow: 20px 20px 0px #fff;
}
.top-profilo-right {
  flex-basis: 42.1%;
  text-align: left;
}
.top-profilo-name {
  font-size: var(--f2);
  margin-bottom: 50px;
}
/*section-top-contact*/
.section-top-contact {
  margin-top: 135px;
  background-image: url("img/top-contact.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 30%;
  height: 250px;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-top-contact::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.section-top-contact > a {
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
.section-top-contact > a > button {
  width: 20.8%;
  margin-top: 0;
  min-width: 390px;
}
footer {
  height: 150px;
  background-color: var(--basecolor);
  color: #fff;
  margin-top: 150px;
  padding-top: 40px;
}
.footer-wrapper{
display: flex;
flex-direction: row;
align-items: flex-end;
justify-content: space-between;
}
.footer-logo img {
  height: 100px;
}
.footer-logo img:hover {
  opacity: 0.5;
}
.footer-left{
display: flex;
flex-direction: row;
align-items: center;
}
.footer-nav-list{
display: flex;
flex-direction: row;
}
.footer-nav-list>li{
margin-left: 30px;
}
.footer-nav-list>li:first-child{
margin-left: 50px;
}
.footer-nav li :hover {
  color: var(--maincolor);
  transition: all 0.1s 0.2s ease; /*(対象のプロパティ)(変化にかかる時間)(変化の開始時間を遅らせる)(変化する速度を変える)*/
}
/*-----profile-----*/
.section-about-hero, .section-works-hero, .section-contact-hero {
  background-image: url("img/about-hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 10%;
  height: 240px;
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}
.section-about-hero::before, .section-works-hero::before, .section-contact-hero::before {
  content: "";
  background-color: rgba(233, 198, 187, 0.3);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.hero-title > h1 {
  color: var(--maincolor);
  text-shadow: 3px 3px 3px #fff;
}
/*about-profile*/
.about-profile {
  max-width: none;
  margin-left: calc((100vw - 780px) / 2);
  margin-right: calc((100vw - 780px) / 2);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-profile-img {
  flex-basis: 55.5%;
  margin-bottom: 50px;
}
.about-profile-img > img {
  width: 100%;
  border-radius: 30px;
  max-width: 400px;
}
.about-profile-name {
  font-size: var(--f2);
  display: flex;
  align-items: center; /* 垂直中心 */
  justify-content: center; /* 水平中心 */
  margin-bottom: 50px;
  width: 100%;
}
.about-profile-name::before, .about-profile-name::after {
  content: "";
  border: solid 3px var(--accentcolor);
  flex-basis: 33%;
}
.about-profile-name::before {
  margin-right: 6%; /* 文字の右隣 */
  border-radius: 2px 0px 0px 2px; /* 線幅の半分 */
}
.about-profile-name::after {
  margin-left: 6%; /* 文字の左隣 */
  border-radius: 0px 2px 2px 0px; /* 線幅の半分 */
}
.about-profile-text {
  text-align: left;
  margin-bottom: 50px;
}
.about-profile-text > p:nth-child(2) {
  margin: 30px 0 20px;
}
.about-profile-self-introduction {
  border: solid 2px #E9C6BB; /* 太さ2pxの二重線の枠線をひく*/
  outline: solid 2px #E9C6BB; /* 外側の線になる一本線の枠線をひく*/
  outline-offset: 15px; /* 外側の線と内側の線の空き具合を調整*/
  margin: 2px; /* 外側の線を広げた分、要素の大きさを調整する*/
  padding: 45px 90px;
}
.about-profile-self-introduction > p > span {
  font-weight: bold;
}
.about-profile-self-introduction > p {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 550px;
}
/*-----works-----*/
.works-design {
  background-image: linear-gradient(45deg, rgba(244, 161, 174, .30) 0%, rgba(244, 161, 174, .08) 100%);
  padding: 80px 0;
  margin-top: 30px;
}
.works-design-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
}
.works-design-pc-img {
  display: flex;
  flex-wrap: wrap;
}
.works-design-pc-img-outer {
  width: 47.8%;
  margin-bottom: 50px;
}
.works-design-pc-img-outer > img {
  width: 93%;
  text-align: center;
  margin: 0 auto;
}
.works-design-pc {
  flex-basis: 62%;
}
.works-design-mob {
  flex-basis: 29%;
}
.works-design-mob-img {
  text-align: center;
  display: flex;
  justify-content: space-between;
}
.works-design-mob-img-outer {
  width: 43.3%;
}
.works-design-mob-img img {
  width: 100%;
}
.works-design-wrapper p {
  font-size: var(--f3);
  color: var(--maincolor);
  text-align: center;
  margin-bottom: 50px;
  min-width: 200px; /*pc用のimgモバイルデザインの文字の改行を防ぐ*/
}
/*works-detail*/
.title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
}
.title-line::before, .title-line::after {
  content: "";
  border: solid 2px var(--maincolor);
  opacity: 0.5;
  width: 80%;
}
.title-line::before{
  margin-right: 50px;
}
.title-line::after {
margin-left: 50px;
}

.works-detail {
  margin-top: 100px;
}
.works-detail-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.works-detail-left {
  flex-basis: 49.5%;
}
.works-detail-right {
  flex-basis: 31.2%;
}
.works-detail-left-first {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.works-detail-title {
  font-size: var(--f2);
}
/*さくら総合病院のサイトへいくボタン*/
.works-detail-left-second > a > button {
  background-color: var(--basecolor);
  color: var(--maincolor);
  padding: 15px 40px;
  box-shadow: 4px 4px 4px rgba(98, 75, 72, .8);
  margin-top: 50px;
}
.works-detail-left-second > a > button:hover {
  background-color: var(--maincolor);
  color: #fff;
  transition: all 0.5s 0.1s ease-in-out;
}
.works-detail-right > P {
  margin-bottom: 30px;
}
.works-detail-right-text {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.works-detail-right-text > .text {
  text-align: left;
  overflow-wrap: break-word;
  word-break: break-all;
}
.works-detail-right-text >.title{
  margin-right: 25px;
  overflow-wrap: normal;
}
/*-----contact-----*/
/*section-cntact-greeting*/
.section-cntact-greeting {
  max-width: none;
  margin-left: calc((100vw - 780px) / 2);
  margin-right: calc((100vw - 780px) / 2);
  padding: 4.1%;
}
.section-cntact-greeting p {
  border: solid 4px var(--basecolor); /* 太さ2pxの二重線の枠線をひく*/
  outline-offset: 15px; /* 外側の線と内側の線の空き具合を調整*/
  padding: 45px 5%;
  position: relative;
  background-color: #fff;
}
.section-cntact-greeting p::after {
  content: '';
  border: 4px solid var(--basecolor);
  position: absolute;
  top: 15px;
  right: -15px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.section-cntact-form {
  max-width: none;
  margin-left: calc((100vw - 700px) / 2);
  margin-right: calc((100vw - 700px) / 2);
}
.contact-form-wrapper { /*フォームの設定*/
  text-align: left;
  padding: 0px 38px 60px 38px;
}
.contact-form-item, .select-wrapper {
  margin-bottom: 40px;
}
label {
  display: block;
  margin-right: 3%; /*labelと記入欄の余白*/
  min-width: 112px;
  margin-bottom: 10px;
  font-size: var(--f4);
}
/*<inputタグの各属性は、[]で囲んでセレクターに指定できる>*/
input[type=text], input[type=email], input[type=tel] { /*記入欄の設定*/
  width: 100%;
  max-width: 700px;
  height: 50px;
  outline: solid 2px var(--accentcolor);
  padding: 5px 20px;
}
select {
  width: 100%;
  max-width: 700px;
  height: 50px;
  outline: solid 2px var(--accentcolor);
  padding: 5px 20px;
}
textarea { /*テキストエリアの記入欄の設定*/
  width: 100%;
  max-width: 923px;
  height: 150px;
  outline: solid 2px var(--accentcolor);
  padding: 5px 20px;
}
/*セレクトの右の下向き三角の設定（親要素に指定）*/
.select-wrapper { /* selectボックスの親要素 */
  position: relative;
  width: 100%;
  max-width: 700px;
}
.select-wrapper:after { /* selectボックスの親要素にオリジナルの矢印を宣言 */
  content: "";
  position: absolute;
  right: 40px;
  top: 50px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333;
  border-left: 2px solid #333;
  transform: translateY(-50%) rotate(-135deg);
  font-size: 20px;
  pointer-events: none;
}
/*記入欄選択時の枠の中の色-googleフォームのセレクター＋タグ指定で設定*/
.ff-form .rest-form-group>input[type="text"]:focus,.ff-form .rest-form-group>input[type="email"]:focus,.ff-form .rest-form-group>textarea:focus,.ff-form .rest-form-group> select:focus{
   box-shadow: none !important;
   outline: solid 3px var(--accentcolor);
   background-color: rgba(200, 176, 153, .15);
}
input[type="submit"] { /*送信ボタンの設定*/
  text-align: center;
  border: none;
  background-color: var(--accentcolor);
  color: #fff;
  padding: 20px 100px;
}
input[type="submit"]:hover { /*送信ボタンの設定*/
  background-color: #fff;
  color: var(--accentcolor);
  outline: solid 2px var(--accentcolor);
  transition: all 0s 0.2s ease;
}
/*送信ボタンの設定*/
.ff-button-bar>.ff-next:hover, .ff-button-bar>.ff-submit:hover {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1) !important;
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
    --tw-shadow-color: #333 !important;
    --tw-shadow: #333 !important;
}
.ff-form .rest-btn{
background-color: var(--accentcolor)!important;
box-shadow:4px 4px 4px rgba(115, 99, 87, .8);
}
/*googleフォームのタイトルとヘッダーを削除*/
.ff-form .ff-title{
display: none;
}
img.ff-banner-image.ff-image {
display: none;
}
.ff-form>.ff-section>.ff-description{
display: none;
}
/*モバイル用のworksを非表示*/
.works-design-mobile {
  display: none;
}
/*---------------------------------------------モバイル対応--------------------------------------------------------*/
@media (max-width: 780px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4.1%;
    height: 80px;
  }
  /*ドロワーメニュー*/
  /*ハンバーガーボタン */
  .burger-btn {
    display: block;
    width: 39px;
    height: 39px;
    position: relative;
    z-index: 3;
    border: none;
  }
  .bar {
    width: 30px;
    height: 2px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--maincolor);
  }
  .bar_top {
    top: 10px;
  }
  .bar_mid {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .bar_bottom {
    bottom: 10px;
  }
  /*「.burger-btn」にcloseというclassが追加（jquery）されたときに、3本線がばつ印になるCSS*/
  .burger-btn.close .bar_top {
    transform: translate(-50%, 10px) rotate(45deg);
    transition: transform .3s;
  }
  .burger-btn.close .bar_mid {
    opacity: 0;
    transition: opacity .3s;
  }
  .burger-btn.close .bar_bottom {
    transform: translate(-50%, -8px) rotate(-45deg);
    transition: transform .3s;
  }
  /* 以下、ハンバーガーメニュー */
  .nav-wrapper {
    /* visibility: hidden;*/
    /*opacity: 0;*/
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    transition: all .5s;
    z-index: 2;
  }
  .header-nav {
    width: 100%;
    height: 100%;
    background-color: var(--basecolor);
    z-index: 2;
  }
  .nav-list {
    display: block;
    position: absolute;
    top: 15%;
    left: 10%;
    transform: unset;
    text-align: center;
  }
  .header-nav li {
    line-height: 16px;
  }
  .nav-list a {
    color: var(--maincolor);
  }
  .nav-item {
    margin-right: 0;
    margin-bottom: 40px;
  }
  /* メニューオープン時 */
  .nav-wrapper {
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    transform: translateX(100%);
    transition: transform .3s;
    width: 100vw;
    z-index: 2; /*キービジュアルと.btn_triggerとの重なりの前後関係を調整*/
  }
  .nav-wrapper.slide-in {
    transform: translateX(0);
  }
  .header-nav > ul {
    flex-direction: column;
    align-items: flex-start;
    width: 80%;
    text-align: left;
  }
  .header-nav li {
    padding: 20px 0 20px 5%;
    width: 100%;
    border-bottom: solid 2px var(--maincolor);
    margin: 0;
  }
  .header-nav li:last-child {
    background-color: transparent;
    height: auto;
    padding: 20px 0 20px 5%;
    margin-left: 0;
  }
  /*モバイル-topページ*/
  .section-top-hero {
    height: 100vh;
    background-image: url("img/top-hero-img-mobile.png");
    padding: 0 4.1%;
  }
  .top-hero-text > p {
    font-size: 1.4rem;
    top: 60%;
    left: 0;
    text-shadow: 3px 3px 2px rgb(250, 250, 250, 5.4);
  }
  /*モバイル用works一覧（ポップアップせず、ページリンク）*/
  .top-works-wrapper.pc{
  display: none;
  }
  .top-works-wrapper.mob{
  display: block;
  }
  .top-works-wrapper {
    flex-direction: column;
    padding: 0 4.1%;
  }
  .works-btn > a > button {
    font-size: var(--f5);
    margin-top: 30px;
  }
  .top-skil-wrapper {
    flex-direction: column;
    padding: 0 4.1%;
  }
  .top-skil-item {
    width: 100%;
    margin-bottom: 30px;
  }
  .section-top-tool {
    padding: 0 4.1%;
  }
  .top-tool-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .top-tool-item > .p-m {
    width: 54.9%;
    margin-bottom: 20px;
  }
footer {
  height: 260px;
  background-color: var(--basecolor);
  color: #fff;
  margin-top: 150px;
  padding-top: 40px;
}
.footer-wrapper{
display: flex;
flex-direction: column;
align-items: center;
}
.footer-logo{
margin-bottom: 30px;
}
.footer-left{
display: flex;
flex-direction: column;
align-items: center;
}
.footer-nav-list{
display: flex;
flex-direction: row;
}
.footer-nav-list>li:first-child{
margin-left: 0px;
}
  /*モバイル-profilページ*/
  .top-profilo-wrapper {
    padding: 0px 4.1%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .section-top-profilo {
    padding: 80px 4.1%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .top-profilo-img {
    flex-basis: 49.1%;
    width: 95%;
    margin-right: 5px;
  }
  .top-profilo-img img {
    box-shadow: 10px 10px 0px #fff;
  }
  .top-profilo-right {
    text-align: center;
  }
  .top-profilo-name {
    margin-bottom: 20px;
    margin-top: 30px;
  }
  .top-profilo-text {
    text-align: left;
  }
  .top-profilo-right > a > button {
    width: 63%;
    height: 56px;
    font-size: var(--f5);
  }
  .section-top-contact > a > button {
    width: 77%;
    max-width: 450px;
    min-width: 200px;
  }
  .section-about-hero, .section-works-hero, .section-contact-hero {
    height: 157px;
  }
  h1 {
    font-size: var(--f2);
  }
  .about-profile {
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
    padding: 0 4.1%;
  }
  .about-profile-name {
    font-size: var(--f3);
    justify-content: space-between;
    width: 100%;
  }
  .about-profile-name::before, .about-profile-name::after {
    flex-basis: 23%;
  }
  .about-profile-name::before {
    margin-right: 6%;
  }
  .about-profile-name::after {
    margin-left: 6%;
  }
  /*2重ピンク枠線、outlineのため、widthで調整する。paddin分（100-4.1%）*/
  .about-profile-self-introduction {
    padding: 7% 7%;
    text-align: left;
    width: 95.9%;
  }
  .about-profile-self-introduction > p {
    flex-direction: column;
    min-width: 250px;
  }
  /*モバイル-contactページ*/
  .section-cntact-greeting {
    max-width: 390px;
    margin-left: calc((100vw - 350px) / 2);
    margin-right: calc((100vw - 350px) / 2);
  }
  .section-cntact-greeting p {
    border: solid 4px var(--basecolor);
    outline-offset: 15px;
    padding: 45px 5%;
    position: relative;
    background-color: #fff;
    margin-bottom: 100px;
    margin-right: 7.5px;
  }
  .section-cntact-form {
    max-width: none;
    margin-left: calc((100vw - 350px) / 2);
    margin-right: calc((100vw - 350px) / 2);
  }
  .works-btn > a > button {
    width: 50%;
    height: 56px;
    margin-top: 50px;
  }
  /*さくら総合病院のスライダー*/
  .mobile-slider {
    display: block;
  }
  .slick-dots>li>button::before{
  font-size: 20px;
  color: #fff;
  opacity: 1;
  }
.slick-dots li.slick-active button:before{
   color: #C97E83;
}
  /*モバイルではpc版、モバイル版を縦並びに*/
  .works-design-wrapper {
    display: flex;
    flex-direction: column;
  }
  .works-design-pc {
    margin-bottom: 50px;
  }
  .works-design-mob {
    width: 93%;
    text-align: center;
    margin: 0 auto;
  }
  .works-design-pc-img-outer {
    margin-bottom: 20px;
  }
  /*さくら総合医療センターのテキスト部分*/
  .works-detail-left-first {
    flex-direction: column;
    align-items: flex-start;
  }
  .works-detail-wrapper {
    flex-direction: column;
  }
  .works-detail {
  display: none;
    width: 93%;
    text-align: center;
    margin: 0 auto;
    margin-top: 50px;
  }
  .works-detail-left-first {
    text-align: left;
    margin-bottom: 30px;
  }
  .works-detail-left-last {
    text-align: left;
    margin-bottom: 50px;
  }
  .works-detail-title {
    font-size: var(--f3);
  }
  .works-detail-left-second > a > button > br {
    display: block;
  }
  .works-detail-left-second > a > button {
    height: 86px;
    min-width: 300px;
    line-height: 1.5em;
    margin: 0px auto 30px;
  }
  /*モバイル-individualページ*/
  .individual-tyitle h2 {
    font-size: var(--f3);
    text-align: center;
    font-weight: 500;
    margin: 50px auto;
    color: var(--maincolor);
  }
  .individual-works-pc h3,.individual-works-mobile h3{
    font-size: var(--f4);
    color: var(--maincolor);
  }
  .section-individual-works-img {
    width: 100%;
    background-color: #FBF6F6;
    padding: 50px 0px;
    margin-bottom: 50px;
  }
  
  .section-individual-works-img-wrapper, .section-individual-works-text {
    width: 84.6%;
    text-align: center;
    margin: 0 auto;
    max-width: 500px;
  }
  .individual-works-pc-img, .individual-works-mobile-img {
    margin-top: 20px;
  }
  .individual-works-pc-img > img {
    width: 100%;
    object-fit: contain;
    margin-bottom: 50px;
    box-shadow: 4px 4px 4px 1px rgba(0, 0, 0, .2)
  }
  .individual-works-mobile-img {
    display: flex;
    justify-content: space-between;
  }
  .individual-works-mobile-img > img {
    width: 45.4%;
  }
}
@media (min-width: 781px) and (max-width: 1120px) {
 .mycontainer{
 padding: 0 20px;
 }
 .top-works-item{
 flex-basis: 48%;
 }
 .works-detail-wrapper{
 flex-direction: column;
 }
 .works-detail-right{
 margin-top: 20px; 
 width: 100%;
 }
 .works-detail-left-second > a > button{
 max-width: 487px;
 }
 .works-detail-left-second>a>button>br{
 display: none;
 }
}