@charset "utf-8";

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * メイン
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* -------------------------------------------------------------------------------------------------
   * セクショニング
/* ---------------------------------------------------------------------------------------------- */

#main {}

#main-contents {}

#main-contents div.body {
  padding-left:20px;
  padding-right: 20px;
  margin: 0 auto;
}

#main-contents .column ~ .column {
  margin-top: 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

 #main-contents div.body {
   max-width: 100%;
   padding-left:20px;
   padding-right: 20px;
   margin: 0 auto;
 }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#main-contents > .section {
  padding-top: 4em;
  padding-bottom: 4em;
}

#main-contents div.body {
  max-width: 100%;
  padding:0 1em;
  margin: 0 auto;
}

#main-contents .column ~ .column {
  margin-top: 20px;
}

}


/* ****************************************************************************************************
   * リード文
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.lead {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--c-l-orange);
}
.lead .body {
  max-width: 1240px;
  padding: 0 20px;
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

.lead .title {
  font-size: 3.0rem;
  line-height: 1.4;
}
.lead .title span {
  color: var(--c-orange);
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .lead .title {
    font-size: 2.0rem;
    line-height: 1.4;
  }
  .lead .title span {
    color: var(--c-orange);
    display: block;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 内容
/* ------------------------------------------------------------------------------------------------- */

.lead .content {
  max-width: 600px;
  margin-right: 4%;
  width: 47%;
}
.lead .content p {
  margin-top: 50px;
  font-size: 1.8rem;
}

.lead .content ul.layout-2 {
  justify-content: space-around;
  margin-top: 50px;
}
.lead .content ul.layout-2 li {}
.lead .content ul.layout-2 li:nth-child(3) {
  margin-top: 1em;
}

.lead .content ul.layout-2 li a {
  position: relative;
  font-size: 1.8rem;
  background: #fff;
  color: var(--c-orange);
  border: 1px solid var(--c-orange);
  border-radius: 10px;
  padding: 0.2em 0.5em;
  min-width: 260px;
  display: block;
  transition: 0.6s;
  text-align: center;
}
.lead .content ul.layout-2 li a::after {
  content: "";
  display: block;
  background: url("../../_images/index/detail-arrow.png") no-repeat;
  width: 16px;
  height: 12px;
  background-size: 16px 12px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  transition: 0.6s;
}
.lead .content ul.layout-2 li a:hover::after {
  background: url("../../_images/index/detail-arrow-1.png") no-repeat;
  right: 0.1em;
}

.lead .content ul.layout-2 li a:hover {
  color: #fff;
  background: var(--c-orange);
  opacity: 1;
  box-shadow: 6px 4px 7px rgba(240,134,38,0.5);
}


.lead picture {
  text-align: center;
  width: 47%;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1260px) {
  /*ブラウザの幅が736px以下の時*/
  .lead .content ul.layout-2 {
    display: block;
  }
  .lead .content ul.layout-2 li {
    max-width: 260px;
    margin: 0 auto;
  }
  .lead .content ul.layout-2 li ~ li {
    margin: 1em auto 0;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 900px) {
  /*ブラウザの幅が736px以下の時*/
  .lead .content {
    max-width: 100%;
    margin-right: 0;
    width: 100%;
  }
  .lead picture {
    display: block;
    margin-top: 2em;
    text-align: center;
    width: 100%;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .lead .content {
    max-width: 100%;
    padding-right: 0;
  }
  .lead .content p {
    margin-top: 1em;
    font-size: 1.6rem;
  }
  
  .lead .content ul.layout-2 {
    justify-content: flex-start;
    margin-top: 1em;
  }
  
  .lead .content ul.layout-2 li a {
    font-size: 1.6rem;
    width: 260px;
    margin: 0 auto;
  }
}


/* ****************************************************************************************************
   * お知らせ
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.news {
  position: relative;
  padding-bottom: 100px;
  background: var(--c-l-orange);
}

.news .body {
  max-width: 1120px;
  padding: 0 20px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .news {
    position: relative;
    padding-top: 0 !important;
    padding-bottom: 100px;
    background: var(--c-l-orange);
  }
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

.news .title {
  font-size: 3.0rem;
  line-height: 1.4;
}
.news .title span {
  color: var(--c-orange);
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .news .title {
    font-size: 2.0rem;
    line-height: 1.4;
    text-align: center;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 内容
/* ------------------------------------------------------------------------------------------------- */

.news .inner {
  max-width: 1080px;
  background: #fff;
  border-radius: 10px;
  padding: 50px 40px;
  box-shadow: 0 0px 10px 10px rgba(79, 49, 26, 0.1);
}

.news .content {
  min-width: 245px;
}

.news .detail {
  min-width: 690px;
  width: 69%;
}
.news .detail ul {}

.news .detail ul li {
  font-size: 1.8rem;
}

.news .detail ul li:first-child {
  border-bottom: 1px solid var(--c-h-orange);
}
.news .detail ul li {
  border-bottom: 1px solid var(--c-h-orange);
}
.news .detail ul li a {
  transition: 0.6s;
  display: flex;
  justify-content: flex-start;
  padding: 10px 0;
  margin: 10px 0;
}
.news .detail ul li a:hover {
  opacity: 1;
  background: var(--c-h-orange);
  border-radius: 10px;
}

.news .detail ul li .day {
  width: 7em;
  display: inline-block;
  padding-left: 1em;
}
.news .detail ul li .text {
  color: var(--c-orange);
  width: 82%;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1260px) {
  /*ブラウザの幅が736px以下の時*/
  .news .content {
    min-width: 245px;
  }
  
  .news .detail {
    min-width: 100%;
    width: 100%;
  }
  
  .news .link-btn {
    margin-left: auto;
    margin-right: auto;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .news .inner {
    max-width: 1080px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
  }
  
  .news .content {
    min-width: 245px;
  }
  .news .detail {
    min-width: 100%;
    width: 100%;
  }
  
  .news .detail ul li {
    font-size: 1.6rem;
  }
  .news .detail ul li a {
    transition: 0.6s;
    display: block;
    justify-content: flex-start;
    padding: 5px 0;
    margin: 5px 0;
  }
  .news .detail ul li .day {
    width: 100%;
    display: block;
    padding-left: 0;
  }
  .news .detail ul li .text {
    color: var(--c-orange);
    width: 100%;
    display: block;
    line-height: 1.4;
  }
}

/* ****************************************************************************************************
   * ごあいさつ
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.greeting {
  position: relative;
  background: url("../../_images/index/greeting-bg.jpg") no-repeat;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
}
.greeting .body {
  max-width: 1120px;
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

.greeting .title {
  font-size: 3.0rem;
  line-height: 1.4;
  text-align: center;
}
.greeting .title span {}

.greeting .column p {
  font-size: 1.8rem;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .greeting .title {
    font-size: 2.0rem;
    line-height: 1.4;
    text-align: center;
  }
  .greeting .column p {
    font-size: 1.6rem;
  }
}

/* ****************************************************************************************************
   * 診療のご案内
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.medical {
  position: relative;
  background: #fc9d4f;
  padding-top: 100px;
  padding-bottom: 100px;
}
.medical .body {
  max-width: 1240px;
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

.medical .title {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.medical .title span {
  font-size: 3.0rem;
  line-height: 1.4;
  color: #fff;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .medical .title span {
    font-size: 2.0rem;
    line-height: 1.4;
    color: #fff;
  }
}


/* ----------------------------------------------------------------------------------------------------
   * リスト
/* ------------------------------------------------------------------------------------------------- */

.medical ul.layout-flex-3 {
  min-width: 1080px;
}

.medical ul.layout-flex-3 li {
  width: 32%;
  padding: 0;
  box-shadow: 0 0px 10px 10px rgba(79, 49, 26, 0.1);
  border-radius: 10px;
}

.medical ul.layout-flex-3 li a {
  position: relative;
  background: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  min-height: 200px;
  transition: 0.6s;
  border: 4px solid transparent;
}
.medical ul.layout-flex-3 li a:hover {
  opacity: 1;
  border: 4px solid var(--c-orange);
}
.medical ul.layout-flex-3 li a span {
  font-size: 2.2rem;
  margin-top: 80px;
  transition: 0.6s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.medical ul.layout-flex-3 li a:hover {
  background: var(--c-l-orange);
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1260px) {
  /*ブラウザの幅が736px以下の時*/
  .medical ul.layout-flex-3 {
    min-width: 85%;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .medical .layout-2 {
    display: flex;
  }
  .medical ul.layout-flex-3 li {
    width: 100%;
    padding: 0;
    box-shadow: 0 0px 10px 10px rgba(79, 49, 26, 0.1);
    border-radius: 10px;
  }
  .medical ul.layout-flex-3 li ~ li {
    margin-top: 20px;
  }
  
  .medical ul.layout-flex-3 li a {
    position: relative;
    background: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    min-height: 100px;
    transition: 0.6s;
    border: 4px solid transparent;
  }
  
  .medical ul.layout-flex-3 li a span {
    font-size: 1.6rem;
    margin-top: 40px;
    transition: 0.6s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}


/* アイコン*/

.medical ul.layout-flex-3 li a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(-80%);
}
.medical ul.layout-flex-3 li:nth-child(1) a::before {
  background: url("../../_images/index/medical-icon-02.png") no-repeat;
  width: 62px;
  height: 60px;
  background-size: 62px 60px;
}
.medical ul.layout-flex-3 li:nth-child(2) a::before {
  background: url("../../_images/index/medical-icon-03.png") no-repeat;
  width: 54px;
  height: 60px;
  background-size: 54px 60px;
}
.medical ul.layout-flex-3 li:nth-child(3) a::before {
  background: url("../../_images/index/medical-icon-01.png") no-repeat;
  width: 63px;
  height: 54px;
  background-size: 63px 54px;
}

/* 矢印*/
.medical ul.layout-flex-3 li a::after {
  content: "";
  display: block;
  background: url("../../_images/index/detail-arrow.png") no-repeat;
  width: 16px;
  height: 12px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  transition: 0.6s;
}
.medical ul.layout-flex-3 li a:hover::after {
  right: 0.1em;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .medical ul.layout-flex-3 li:nth-child(1) a::before {
    background: url("../../_images/index/medical-icon-02.png") no-repeat;
    width: 31px;
    height: 30px;
    background-size: 31px 30px;
  }
  .medical ul.layout-flex-3 li:nth-child(2) a::before {
    background: url("../../_images/index/medical-icon-03.png") no-repeat;
    width: 27px;
    height: 30px;
    background-size: 27px 30px;
  }
  .medical ul.layout-flex-3 li:nth-child(3) a::before {
    background: url("../../_images/index/medical-icon-01.png") no-repeat;
    width: 31px;
    height: 27px;
    background-size: 31px 27px;
  }
  /* 矢印*/
  .medical ul.layout-flex-3 li a::after {
    content: "";
    display: block;
    background: url("../../_images/index/detail-arrow.png") no-repeat;
    width: 16px;
    height: 12px;
    position: absolute;
    bottom: 5px;
    right: 5px;
    transition: 0.6s;
  }
}

/* ****************************************************************************************************
   * 専門外来
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.outpatient {
  position: relative;
  background: url("../../_images/index/clinic-bg.jpg") repeat;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
}
.outpatient .body {
  max-width: 1240px;
}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

.outpatient .title {
  font-size: 3.0rem;
  line-height: 1.4;
  text-align: center;
}
.outpatient .title span {
  color: var(--c-orange);
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .outpatient .title {
    font-size: 2.0rem;
    line-height: 1.4;
    text-align: center;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * リスト
/* ------------------------------------------------------------------------------------------------- */

.outpatient .layout-flex-2 {
  margin-top: 50px;
}

.outpatient .layout-flex-2 li {
  position: relative;
  transition: 0.6s;
}

.outpatient .layout-flex-2 li::after {
  transition: 0.6s;
}
.outpatient .layout-flex-2 li:hover::after {
  content: "";
  display: block;
  background: url("../../_images/index/detail-arrow.png") no-repeat;
  width: 16px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.outpatient .layout-flex-2 li a {
  border: 1px solid var(--c-orange);
  display: block;
  padding: 2.5em 1em;
  border-radius: 10px;
  background: var(--c-l-orange);
}
.outpatient .layout-flex-2 li a:hover {
  outline: 1px solid var(--c-orange);
  border-radius: 20px;
  outline-offset: -8px;  /*outline-offsetの値を-15pxにして内側に調整*/
  opacity: 1;
}
.outpatient .layout-flex-2 li a span {
  position: relative;
  font-size: 2.2rem;
  padding-left: 4.5em;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width: 900px) {
  /*ブラウザの幅が736px以下の時*/
  .outpatient .layout-flex-2 {
    margin-top: 30px;
  }
  .outpatient .layout-flex-2 > * {
  }
  .outpatient .layout-flex-2 li a {
    border: 1px solid var(--c-orange);
    display: block;
    padding: 1em;
    border-radius: 10px;
    background: var(--c-l-orange);
  }
  .outpatient .layout-flex-2 li a span {
    position: relative;
    font-size: 1.6rem;
    padding-left: 3em;
  }
}
/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .outpatient .layout-flex-2 li ~ li {
    margin-top: 1em;
  }
}

/* アイコン*/

.outpatient .layout-flex-2 li a span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.outpatient .layout-flex-2 li:nth-child(1) a span::before {
  background: url("../../_images/index/clinic-01.png") no-repeat;
  width: 47px;
  height: 51px;
  background-size: 47px 51px;
}
.outpatient .layout-flex-2 li:nth-child(2) a span::before {
  background: url("../../_images/index/clinic-02.png") no-repeat;
  width: 46px;
  height: 61px;
  background-size: 46px 61px;
}
.outpatient .layout-flex-2 li:nth-child(3) a span::before {
  background: url("../../_images/index/clinic-04.png") no-repeat;
  width: 51px;
  height: 51px;
  background-size: 51px 51px;
}
.outpatient .layout-flex-2 li:nth-child(4) a span::before {
  background: url("../../_images/index/clinic-05.png") no-repeat;
  width: 44px;
  height: 67px;
  background-size: 44px 67px;
}
.outpatient .layout-flex-2 li:nth-child(5) a span::before {
  background: url("../../_images/index/clinic-06.png") no-repeat;
  width: 47px;
  height: 61px;
  background-size: 47px 61px;
}
.outpatient .layout-flex-2 li:nth-child(6) a span::before {
  background: url("../../_images/index/clinic-03.png") no-repeat;
  width: 54px;
  height: 52px;
  background-size: 54px 52px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:900px) {
  /*ブラウザの幅が736px以下の時*/
  .outpatient .layout-flex-2 li a span::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
  }
  .outpatient .layout-flex-2 li:nth-child(1) a span::before {
    background: url("../../_images/index/clinic-01.png") no-repeat;
    width: 23px;
    height: 25px;
    background-size: 23px 25px;
  }
  .outpatient .layout-flex-2 li:nth-child(2) a span::before {
    background: url("../../_images/index/clinic-02.png") no-repeat;
    width: 23px;
    height: 30px;
    background-size: 23px 30px;
  }
  .outpatient .layout-flex-2 li:nth-child(3) a span::before {
    background: url("../../_images/index/clinic-04.png") no-repeat;
    width: 25px;
    height: 25px;
    background-size: 25px 25px;
  }
  .outpatient .layout-flex-2 li:nth-child(4) a span::before {
    background: url("../../_images/index/clinic-05.png") no-repeat;
    width: 22px;
    height: 33px;
    background-size: 22px 33px;
  }
  .outpatient .layout-flex-2 li:nth-child(5) a span::before {
    background: url("../../_images/index/clinic-06.png") no-repeat;
    width: 23px;
    height: 30px;
    background-size: 23px 30px;
  }
  .outpatient .layout-flex-2 li:nth-child(6) a span::before {
    background: url("../../_images/index/clinic-03.png") no-repeat;
    width: 27px;
    height: 26px;
    background-size: 27px 26px;
  }
}

/* ****************************************************************************************************
   * 検診について　／　予防接種
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.about {
  position: relative;
  background: var(--c-l-orange);
  padding-top: 100px;
  padding-bottom: 100px;
}
.about .body {
  max-width: 1240px;
}

/* ----------------------------------------------------------------------------------------------------
   * セクション
/* ------------------------------------------------------------------------------------------------- */

.about section {
  position: relative;
  display: flex;
}
.about section.row {
  flex-direction: row-reverse;
}

.about section ~ section {
  margin-top: 100px;
}

.about section .body {
  padding-top: 60px;
  z-index: 1;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {
  /*ブラウザの幅が736px以下の時*/
  .about section {
    position: relative;
    display: block;
  }
  .about section ~ section {
    margin-top: 50px;
  }
  .about section .body {
    padding-top: 1em !important;
    z-index: 1;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 内容
/* ------------------------------------------------------------------------------------------------- */

.about section .inner {
  min-width: 700px;
  background: #fff;
  border-radius: 10px;
  padding: 50px;
  width: 50%;
}
.about .section-1 .inner {
  margin-right: 0;
  margin-left: auto;
}
.about .section-2 .inner {
  margin-right: auto;
  margin-left: 0;
}


.about section .inner .title {
  font-size: 3.0rem;
  line-height: 1.4;
}
.about section .inner .title span {}

.about section .inner .text {
  font-size: 1.8rem;
}

.about section .inner .link-btn .btn {
  margin-left: 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1280px) {
  /*ブラウザの幅が736px以下の時*/
  .about section .inner {
    width: 50%;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {
  /*ブラウザの幅が736px以下の時*/
  .about section .inner {
    min-width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
  }
  .about section .inner .title {
    font-size: 2.0rem;
    line-height: 1.4;
  }
  
  .about section .inner .text {
    font-size: 1.6rem;
  }
  .about section .inner .link-btn .btn {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * 画像
/* ------------------------------------------------------------------------------------------------- */

.about section picture img {
  width: 100%;
  height: 500px;
  overflow: hidden;
  object-fit: cover;
}
.about section picture {
  position: absolute;
  top: 0;
  width: calc( 50% - 50px );
}

.about .section-1 picture {
  left: 0;
  border-radius: 0px 40px 40px 0px;
}
.about .section-1 picture img {
  border-radius: 0px 40px 40px 0px;
}
.about .section-2 picture {
  right: 0;
  border-radius: 40px 0px 0px 40px;
}
.about .section-2 picture img {
  border-radius: 40px 0px 0px 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {
  /*ブラウザの幅が736px以下の時*/
  .about section picture {
    width: 100%;
    display: block;
    padding: 0 20px;
    max-width: 750px;
    margin: 0 auto;
  }
  .about section picture img {
    width: 100%;
    height: auto;
    overflow: hidden;
    object-fit: cover;
    border-radius: 20px;
  }
  
  .about .section-1 picture {
    position: relative;
    left: 0;
    border-radius: 20px;
  }
  .about .section-1 picture img {
    border-radius: 20px;
  }
  .about .section-2 picture {
    position: relative;
    right: 0;
    border-radius: 20px;
  }
  .about .section-2 picture img {
    border-radius: 20px;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .about section picture img {
    width: 100%;
    height: auto;
    overflow: hidden;
    object-fit: cover;
    border-radius: 20px;
  }
}


/* ****************************************************************************************************
   * コラム　／　インスタグラム
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.about .section-3 {}

.about .section-3 ul.layout-flex-2 {}
.about .section-3 ul.layout-flex-2 > * {
  width: 49%;
}

.about .section-3 ul.layout-flex-2 li {
  text-align: center;
  overflow: hidden;
  border-radius: 10px;
}
.about .section-3 ul.layout-flex-2 li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 150px;
  opacity: 1;
}
.about .section-3 ul.layout-flex-2 li:hover a {
  outline: 1px solid #fff;
  border-radius: 20px;
  outline-offset: -8px;
  opacity: 1;
  z-index: 3;
}

.about .section-3 ul.layout-flex-2 li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: 0.6s;
  z-index: -1;
}
.about .section-3 ul.layout-flex-2 li:nth-child(1) a::after {
  background: url("../../_images/index/column-1.png") no-repeat;
  background-size: cover;
}
.about .section-3 ul.layout-flex-2 li:nth-child(2) a::after {
  background: url("../../_images/index/instagram-1.png") no-repeat;
  background-size: cover;
}
.about .section-3 ul.layout-flex-2 li:hover a::after {
  transform: scale(1.05);
  opacity: 1;
}


.about .section-3 ul.layout-flex-2 li a span {
  position: relative;
  font-size: 2.2rem;
  color: #fff;
  padding-top: 40px;
  z-index: 3;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1260px) {
  /*ブラウザの幅が736px以下の時*/
  .about .section-3 ul.layout-flex-2 li a::after {
    z-index: 0;
  }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .about .section-3 {
    margin-top: 20px;
  }
  .about .section-3 ul.layout-flex-2 > * {
    width: 100%;
  }
  .about .section-3 ul.layout-flex-2 li ~ li {
    margin-top: 1em;
  }
  .about .section-3 ul.layout-flex-2 li {
    text-align: center;
    overflow: hidden;
    border-radius: 5px;
    max-width: 585px;
    margin: 0 auto;
  }
  .about .section-3 ul.layout-flex-2 li a {
    min-height: auto; /* 高さ設定*/
    padding: 1em 0;
  }
  .about .section-3 ul.layout-flex-2 li a span {
    position: relative;
    font-size: 1.6rem;
    color: #fff;
    padding-top: 30px;
    z-index: 3;
  }
}






/* アイコン*/

.about .section-3 ul.layout-flex-2 li a::before {
  content: "";
  display: block;
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 3;
}
.about .section-3 ul.layout-flex-2 li:nth-child(1) a::before {
  background: url("../../_images/index/column-icon.png") no-repeat;
  width: 49px;
  height: 33px;
  background-size: 49px 33px;
}
.about .section-3 ul.layout-flex-2 li:nth-child(2) a::before {
  background: url("../../_images/index/instagram-icon.png") no-repeat;
  width: 33px;
  height: 34px;
  background-size: 33px 34px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {
  /*ブラウザの幅が736px以下の時*/
  .about .section-3 ul.layout-flex-2 li a::before {
    top: 30px;
  }
  .about .section-3 ul.layout-flex-2 li:nth-child(1) a::before {
    background: url("../../_images/index/column-icon.png") no-repeat;
    width: 24px;
    height: 16px;
    background-size: 24px 16px;
  }
  .about .section-3 ul.layout-flex-2 li:nth-child(2) a::before {
    background: url("../../_images/index/instagram-icon.png") no-repeat;
    width: 16px;
    height: 17px;
    background-size: 16px 17px;
  }
}
