@charset "UTF-8";

/* 全体のリセット */
body, h1, p {
    margin: 0;
    padding: 0;
}

/* ベーススタイル */
body {
    font-family: 'Arial', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* バナーエリア */
.banner {
    display: flex;
    align-items: center; /* 縦方向の中央揃え */
    justify-content: center; /* 横方向の中央揃え */
    background-color: #6db032; /* 緑背景 */
    color: #fff;

}

/* アイコンエリア */
.icon-container {
    flex-shrink: 0;
    margin-right: 0px;
}

.icon {
    width: 190px;
    height: 190px;
    border-radius: 30%;
}

/* テキストエリア */
.text-container h1 {
    font-size: 3.0rem;
}

/* 概要テキスト */
.description {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    color: #333;
    font-size: 1.8rem;
}

.description p {
    margin: 0;
    line-height: 1.8;
}








/* コンテナ: 写真プリントと写真パネルを包含 */
.container {
    display: flex;
    flex-direction: column; /* デフォルトは縦並び */
    gap: 40px; /* セクション同士の間隔 */
    max-width: 1800px;
    margin: 0 auto; /* 中央揃え */
    padding: 20px;
}

/* 横並び表示: 画面幅が広い場合 */
@media screen and (min-width: 1800px) {
    .container {
        flex-direction: row; /* 横並び */
        justify-content: space-between; /* スペースを調整 */
    }

    .photo-print-section,
    .photo-panel-section {
        flex: 1; /* 各セクションを均等に表示 */
        max-width: 48%; /* 横幅を調整し隙間を確保 */
    }
}

/* 写真プリントセクション */
.photo-print-section {
    border: 4px solid #88c057; /* 緑枠線 */
    border-radius: 20px; /* 角を丸く */
    padding: 20px;
    background-color: #fff;
}

.photo-print-section .section-header h2 {
    font-size: 2rem;
    color: #333;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* 写真パネルセクション */
.photo-panel-section {
    border: 4px solid #88c057; /* 緑枠線 */
    border-radius: 20px; /* 角を丸く */
    padding: 20px;
    background-color: #fff;
}

/* 写真パネル共通スタイル (既存に追加) */
.photo-panel-section .section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.photo-panel-section .section-header h2 {
    font-size: 2rem;
    color: #333;
}

/* プリントオプション: 再利用 */
.print-options {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 左右2列 */
    gap: 15px; /* 項目間の間隔 */
}

.print-option {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.print-option:last-child {
    border-bottom: none;
}

.option-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.option-title {
    flex-grow: 1;
    color: #0073e6;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
}

.small {
    font-size: 1.0rem;
}

.option-title:hover {
    text-decoration: underline;
}

.arrow-icon {
    width: 20px;
    height: 20px;
}

.section-icon {
    width: 15%;
    height: 15%;
}


















  *{
   
}
outline: 2px red solid;  






/*フッター
---------------------------------------------------------------------------*/
footer * {margin: 0;padding: 0;}
footer ul {list-style: none;}

/*ブロック全体*/
footer {
	background: #222;	/*背景色*/
	color: #ccc;		/*文字色*/
	padding: 0 var(--content-space);
	width: 104%;
}

/* メディアクエリでレスポンシブ対応 */
@media (max-width: 750px) {
  .feature {
    flex-direction: column; /* スマホでは縦並びに変更 */
    text-align: center; /* テキストを中央寄せに */
  }

  .feature.reverse {
    flex-direction: column; /* 横並びを縦並びに変更 */
  }

  .feature-image,
  .feature-text {
    flex: none; /* 自動サイズ制御を解除 */
    padding: 10px;
  }
    /* テーブル全体の縮小対応 */
  .surface-list table {
    font-size: 0.9em; /* フォントサイズを少し縮小 */
  }
  .text-container h1 {
    font-size: 1.4rem;/* フォントサイズを少し縮小 */
}

.option-image {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.photo-panel-section .section-header h2 {
    font-size: 1.0rem;/* フォントサイズを少し縮小 */
}

.photo-print-section .section-header h2 {
    font-size: 0.9rem;/* フォントサイズを少し縮小 */
}

/* テキストエリア */
.text-container h1 {
    font-size: 1.4rem;/* フォントサイズを少し縮小 */
}

.option-title {
    font-size: 0.7rem;/* フォントサイズを少し縮小 */
}

.small {
    font-size: 0.5rem;/* フォントサイズを少し縮小 */
}

/* 概要テキスト */
.description {
    font-size: 0.8rem;/* フォントサイズを少し縮小 */
}

.icon {
    width: 100px;
    height: 100px;
    border-radius: 30%;
}

  .surface-list td,
  .surface-list th {
    padding: 10px; /* スペースを狭くする */
  }
}